Skip to content

Commit

Permalink
feat: update clients as of 12/09/2020 (#1755)
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Dec 9, 2020
1 parent dc63e37 commit de1a24d
Show file tree
Hide file tree
Showing 518 changed files with 122,164 additions and 18,324 deletions.
14 changes: 7 additions & 7 deletions clients/client-amplifybackend/AmplifyBackend.ts
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Generates a one time challenge code to authenticate a user into your Amplify Admin UI.</p>
* <p>Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.</p>
*/
public createToken(args: CreateTokenCommandInput, options?: __HttpHandlerOptions): Promise<CreateTokenCommandOutput>;
public createToken(args: CreateTokenCommandInput, cb: (err: any, data?: CreateTokenCommandOutput) => void): void;
Expand All @@ -293,7 +293,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Removes an existing environment from your Ampify project.</p>
* <p>Removes an existing environment from your Amplify project.</p>
*/
public deleteBackend(
args: DeleteBackendCommandInput,
Expand Down Expand Up @@ -447,7 +447,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Provides project level details for your Amplify UI project.</p>
* <p>Provides project-level details for your Amplify UI project.</p>
*/
public getBackend(args: GetBackendCommandInput, options?: __HttpHandlerOptions): Promise<GetBackendCommandOutput>;
public getBackend(args: GetBackendCommandInput, cb: (err: any, data?: GetBackendCommandOutput) => void): void;
Expand All @@ -473,7 +473,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Gets the details for a backend api.</p>
* <p>Gets the details for a backend API.</p>
*/
public getBackendAPI(
args: GetBackendAPICommandInput,
Expand Down Expand Up @@ -537,7 +537,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Gets a backend auth details.</p>
* <p>Gets backend auth details.</p>
*/
public getBackendAuth(
args: GetBackendAuthCommandInput,
Expand Down Expand Up @@ -691,7 +691,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Removes the AWS resources required to access the Amplify Admin UI.</p>
* <p>Removes the AWS resources that are required to access the Amplify Admin UI.</p>
*/
public removeBackendConfig(
args: RemoveBackendConfigCommandInput,
Expand Down Expand Up @@ -787,7 +787,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
}

/**
* <p>Updates the AWS resources required to access the Amplify Admin UI.</p>
* <p>Updates the AWS resources that are required to access the Amplify Admin UI.</p>
*/
public updateBackendConfig(
args: UpdateBackendConfigCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type CreateTokenCommandInput = CreateTokenRequest;
export type CreateTokenCommandOutput = CreateTokenResponse & __MetadataBearer;

/**
* <p>Generates a one time challenge code to authenticate a user into your Amplify Admin UI.</p>
* <p>Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.</p>
*/
export class CreateTokenCommand extends $Command<
CreateTokenCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type DeleteBackendCommandInput = DeleteBackendRequest;
export type DeleteBackendCommandOutput = DeleteBackendResponse & __MetadataBearer;

/**
* <p>Removes an existing environment from your Ampify project.</p>
* <p>Removes an existing environment from your Amplify project.</p>
*/
export class DeleteBackendCommand extends $Command<
DeleteBackendCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type GetBackendAPICommandInput = GetBackendAPIRequest;
export type GetBackendAPICommandOutput = GetBackendAPIResponse & __MetadataBearer;

/**
* <p>Gets the details for a backend api.</p>
* <p>Gets the details for a backend API.</p>
*/
export class GetBackendAPICommand extends $Command<
GetBackendAPICommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type GetBackendAuthCommandInput = GetBackendAuthRequest;
export type GetBackendAuthCommandOutput = GetBackendAuthResponse & __MetadataBearer;

/**
* <p>Gets a backend auth details.</p>
* <p>Gets backend auth details.</p>
*/
export class GetBackendAuthCommand extends $Command<
GetBackendAuthCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type GetBackendCommandInput = GetBackendRequest;
export type GetBackendCommandOutput = GetBackendResponse & __MetadataBearer;

/**
* <p>Provides project level details for your Amplify UI project.</p>
* <p>Provides project-level details for your Amplify UI project.</p>
*/
export class GetBackendCommand extends $Command<
GetBackendCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type RemoveBackendConfigCommandInput = RemoveBackendConfigRequest;
export type RemoveBackendConfigCommandOutput = RemoveBackendConfigResponse & __MetadataBearer;

/**
* <p>Removes the AWS resources required to access the Amplify Admin UI.</p>
* <p>Removes the AWS resources that are required to access the Amplify Admin UI.</p>
*/
export class RemoveBackendConfigCommand extends $Command<
RemoveBackendConfigCommandInput,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export type UpdateBackendConfigCommandInput = UpdateBackendConfigRequest;
export type UpdateBackendConfigCommandOutput = UpdateBackendConfigResponse & __MetadataBearer;

/**
* <p>Updates the AWS resources required to access the Amplify Admin UI.</p>
* <p>Updates the AWS resources that are required to access the Amplify Admin UI.</p>
*/
export class UpdateBackendConfigCommand extends $Command<
UpdateBackendConfigCommandInput,
Expand Down
Loading

0 comments on commit de1a24d

Please sign in to comment.