diff --git a/clients/client-amplify/src/models/models_0.ts b/clients/client-amplify/src/models/models_0.ts index d362ca554a4b..e47ccf60a4ad 100644 --- a/clients/client-amplify/src/models/models_0.ts +++ b/clients/client-amplify/src/models/models_0.ts @@ -43,7 +43,7 @@ export interface AutoBranchCreationConfig { environmentVariables?: { [key: string]: string }; /** - *

The basic authorization credentials for the autocreated branch.

+ *

The basic authorization credentials for the autocreated branch. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; @@ -211,7 +211,7 @@ export interface CreateAppRequest { enableBasicAuth?: boolean; /** - *

The credentials for basic authorization for an Amplify app.

+ *

The credentials for basic authorization for an Amplify app. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; @@ -383,7 +383,7 @@ export interface App { enableBasicAuth: boolean | undefined; /** - *

The basic authorization credentials for branches for the Amplify app.

+ *

The basic authorization credentials for branches for the Amplify app. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; @@ -645,7 +645,7 @@ export interface CreateBranchRequest { environmentVariables?: { [key: string]: string }; /** - *

The basic authorization credentials for the branch.

+ *

The basic authorization credentials for the branch. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; @@ -803,7 +803,7 @@ export interface Branch { thumbnailUrl?: string; /** - *

The basic authorization credentials for a branch of an Amplify app.

+ *

The basic authorization credentials for a branch of an Amplify app. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; @@ -2794,7 +2794,7 @@ export interface UpdateAppRequest { enableBasicAuth?: boolean; /** - *

The basic authorization credentials for an Amplify app.

+ *

The basic authorization credentials for an Amplify app. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; @@ -2928,7 +2928,7 @@ export interface UpdateBranchRequest { environmentVariables?: { [key: string]: string }; /** - *

The basic authorization credentials for the branch.

+ *

The basic authorization credentials for the branch. You must base64-encode the authorization credentials and provide them in the format user:password.

*/ basicAuthCredentials?: string; diff --git a/clients/client-appconfig/README.md b/clients/client-appconfig/README.md index 0ca78ba07d2c..8223607b5cea 100644 --- a/clients/client-appconfig/README.md +++ b/clients/client-appconfig/README.md @@ -16,8 +16,8 @@ devices.

systems where a simple typo could cause an unexpected outage, AppConfig includes validators. A validator provides a syntactic or semantic check to ensure that the configuration you want to deploy works as intended. To validate your application -configuration data, you provide a schema or a Lambda function that runs against the -configuration. The configuration deployment or update can only proceed when the +configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against +the configuration. The configuration deployment or update can only proceed when the configuration data is valid.

During a configuration deployment, AppConfig monitors the application to ensure that the deployment is successful. If the system encounters an error, AppConfig rolls back the @@ -29,15 +29,15 @@ triggers an alarm, AppConfig automatically rolls back to the previous version. <