Skip to content

Commit de1a24d

Browse files
authored
feat: update clients as of 12/09/2020 (#1755)
1 parent dc63e37 commit de1a24d

File tree

518 files changed

+122164
-18324
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

518 files changed

+122164
-18324
lines changed

Diff for: clients/client-amplifybackend/AmplifyBackend.ts

+7-7
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
267267
}
268268

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

295295
/**
296-
* <p>Removes an existing environment from your Ampify project.</p>
296+
* <p>Removes an existing environment from your Amplify project.</p>
297297
*/
298298
public deleteBackend(
299299
args: DeleteBackendCommandInput,
@@ -447,7 +447,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
447447
}
448448

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

475475
/**
476-
* <p>Gets the details for a backend api.</p>
476+
* <p>Gets the details for a backend API.</p>
477477
*/
478478
public getBackendAPI(
479479
args: GetBackendAPICommandInput,
@@ -537,7 +537,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
537537
}
538538

539539
/**
540-
* <p>Gets a backend auth details.</p>
540+
* <p>Gets backend auth details.</p>
541541
*/
542542
public getBackendAuth(
543543
args: GetBackendAuthCommandInput,
@@ -691,7 +691,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
691691
}
692692

693693
/**
694-
* <p>Removes the AWS resources required to access the Amplify Admin UI.</p>
694+
* <p>Removes the AWS resources that are required to access the Amplify Admin UI.</p>
695695
*/
696696
public removeBackendConfig(
697697
args: RemoveBackendConfigCommandInput,
@@ -787,7 +787,7 @@ export class AmplifyBackend extends AmplifyBackendClient {
787787
}
788788

789789
/**
790-
* <p>Updates the AWS resources required to access the Amplify Admin UI.</p>
790+
* <p>Updates the AWS resources that are required to access the Amplify Admin UI.</p>
791791
*/
792792
public updateBackendConfig(
793793
args: UpdateBackendConfigCommandInput,

Diff for: clients/client-amplifybackend/commands/CreateTokenCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type CreateTokenCommandInput = CreateTokenRequest;
2121
export type CreateTokenCommandOutput = CreateTokenResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Generates a one time challenge code to authenticate a user into your Amplify Admin UI.</p>
24+
* <p>Generates a one-time challenge code to authenticate a user into your Amplify Admin UI.</p>
2525
*/
2626
export class CreateTokenCommand extends $Command<
2727
CreateTokenCommandInput,

Diff for: clients/client-amplifybackend/commands/DeleteBackendCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type DeleteBackendCommandInput = DeleteBackendRequest;
2121
export type DeleteBackendCommandOutput = DeleteBackendResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Removes an existing environment from your Ampify project.</p>
24+
* <p>Removes an existing environment from your Amplify project.</p>
2525
*/
2626
export class DeleteBackendCommand extends $Command<
2727
DeleteBackendCommandInput,

Diff for: clients/client-amplifybackend/commands/GetBackendAPICommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type GetBackendAPICommandInput = GetBackendAPIRequest;
2121
export type GetBackendAPICommandOutput = GetBackendAPIResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Gets the details for a backend api.</p>
24+
* <p>Gets the details for a backend API.</p>
2525
*/
2626
export class GetBackendAPICommand extends $Command<
2727
GetBackendAPICommandInput,

Diff for: clients/client-amplifybackend/commands/GetBackendAuthCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type GetBackendAuthCommandInput = GetBackendAuthRequest;
2121
export type GetBackendAuthCommandOutput = GetBackendAuthResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Gets a backend auth details.</p>
24+
* <p>Gets backend auth details.</p>
2525
*/
2626
export class GetBackendAuthCommand extends $Command<
2727
GetBackendAuthCommandInput,

Diff for: clients/client-amplifybackend/commands/GetBackendCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type GetBackendCommandInput = GetBackendRequest;
2121
export type GetBackendCommandOutput = GetBackendResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Provides project level details for your Amplify UI project.</p>
24+
* <p>Provides project-level details for your Amplify UI project.</p>
2525
*/
2626
export class GetBackendCommand extends $Command<
2727
GetBackendCommandInput,

Diff for: clients/client-amplifybackend/commands/RemoveBackendConfigCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type RemoveBackendConfigCommandInput = RemoveBackendConfigRequest;
2121
export type RemoveBackendConfigCommandOutput = RemoveBackendConfigResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Removes the AWS resources required to access the Amplify Admin UI.</p>
24+
* <p>Removes the AWS resources that are required to access the Amplify Admin UI.</p>
2525
*/
2626
export class RemoveBackendConfigCommand extends $Command<
2727
RemoveBackendConfigCommandInput,

Diff for: clients/client-amplifybackend/commands/UpdateBackendConfigCommand.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export type UpdateBackendConfigCommandInput = UpdateBackendConfigRequest;
2121
export type UpdateBackendConfigCommandOutput = UpdateBackendConfigResponse & __MetadataBearer;
2222

2323
/**
24-
* <p>Updates the AWS resources required to access the Amplify Admin UI.</p>
24+
* <p>Updates the AWS resources that are required to access the Amplify Admin UI.</p>
2525
*/
2626
export class UpdateBackendConfigCommand extends $Command<
2727
UpdateBackendConfigCommandInput,

0 commit comments

Comments
 (0)