@aws-sdk/client-appconfig 3.289.0 → 3.290.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (44) hide show
  1. package/dist-types/commands/CreateApplicationCommand.d.ts +7 -0
  2. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +10 -0
  3. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +7 -0
  4. package/dist-types/commands/CreateEnvironmentCommand.d.ts +10 -0
  5. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +13 -0
  6. package/dist-types/commands/CreateExtensionCommand.d.ts +14 -0
  7. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +20 -0
  8. package/dist-types/commands/DeleteApplicationCommand.d.ts +10 -0
  9. package/dist-types/commands/DeleteConfigurationProfileCommand.d.ts +14 -0
  10. package/dist-types/commands/DeleteDeploymentStrategyCommand.d.ts +10 -0
  11. package/dist-types/commands/DeleteEnvironmentCommand.d.ts +14 -0
  12. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +10 -0
  13. package/dist-types/commands/DeleteExtensionCommand.d.ts +10 -0
  14. package/dist-types/commands/DeleteHostedConfigurationVersionCommand.d.ts +10 -0
  15. package/dist-types/commands/GetApplicationCommand.d.ts +10 -0
  16. package/dist-types/commands/GetConfigurationCommand.d.ts +10 -0
  17. package/dist-types/commands/GetConfigurationProfileCommand.d.ts +10 -0
  18. package/dist-types/commands/GetDeploymentCommand.d.ts +10 -0
  19. package/dist-types/commands/GetDeploymentStrategyCommand.d.ts +10 -0
  20. package/dist-types/commands/GetEnvironmentCommand.d.ts +10 -0
  21. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +10 -0
  22. package/dist-types/commands/GetExtensionCommand.d.ts +10 -0
  23. package/dist-types/commands/GetHostedConfigurationVersionCommand.d.ts +10 -0
  24. package/dist-types/commands/ListApplicationsCommand.d.ts +7 -0
  25. package/dist-types/commands/ListConfigurationProfilesCommand.d.ts +10 -0
  26. package/dist-types/commands/ListDeploymentStrategiesCommand.d.ts +7 -0
  27. package/dist-types/commands/ListDeploymentsCommand.d.ts +10 -0
  28. package/dist-types/commands/ListEnvironmentsCommand.d.ts +10 -0
  29. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +7 -0
  30. package/dist-types/commands/ListExtensionsCommand.d.ts +7 -0
  31. package/dist-types/commands/ListHostedConfigurationVersionsCommand.d.ts +10 -0
  32. package/dist-types/commands/ListTagsForResourceCommand.d.ts +10 -0
  33. package/dist-types/commands/StartDeploymentCommand.d.ts +14 -0
  34. package/dist-types/commands/StopDeploymentCommand.d.ts +10 -0
  35. package/dist-types/commands/TagResourceCommand.d.ts +10 -0
  36. package/dist-types/commands/UntagResourceCommand.d.ts +10 -0
  37. package/dist-types/commands/UpdateApplicationCommand.d.ts +10 -0
  38. package/dist-types/commands/UpdateConfigurationProfileCommand.d.ts +10 -0
  39. package/dist-types/commands/UpdateDeploymentStrategyCommand.d.ts +10 -0
  40. package/dist-types/commands/UpdateEnvironmentCommand.d.ts +10 -0
  41. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +10 -0
  42. package/dist-types/commands/UpdateExtensionCommand.d.ts +14 -0
  43. package/dist-types/commands/ValidateConfigurationCommand.d.ts +10 -0
  44. package/package.json +29 -29
@@ -33,6 +33,13 @@ export interface CreateApplicationCommandOutput extends Application, __MetadataB
33
33
  * @see {@link CreateApplicationCommandOutput} for command's `response` shape.
34
34
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
35
35
  *
36
+ * @throws {@link BadRequestException} (client fault)
37
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
38
+ *
39
+ * @throws {@link InternalServerException} (server fault)
40
+ * <p>There was an internal failure in the AppConfig service.</p>
41
+ *
42
+ *
36
43
  * @example To create an application
37
44
  * ```javascript
38
45
  * // The following create-application example creates an application in AWS AppConfig.
@@ -68,6 +68,16 @@ export interface CreateConfigurationProfileCommandOutput extends ConfigurationPr
68
68
  * @see {@link CreateConfigurationProfileCommandOutput} for command's `response` shape.
69
69
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
70
70
  *
71
+ * @throws {@link BadRequestException} (client fault)
72
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
73
+ *
74
+ * @throws {@link InternalServerException} (server fault)
75
+ * <p>There was an internal failure in the AppConfig service.</p>
76
+ *
77
+ * @throws {@link ResourceNotFoundException} (client fault)
78
+ * <p>The requested resource could not be found.</p>
79
+ *
80
+ *
71
81
  * @example To create a configuration profile
72
82
  * ```javascript
73
83
  * // The following create-configuration-profile example creates a configuration profile using a configuration stored in Parameter Store, a capability of Systems Manager.
@@ -32,6 +32,13 @@ export interface CreateDeploymentStrategyCommandOutput extends DeploymentStrateg
32
32
  * @see {@link CreateDeploymentStrategyCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>There was an internal failure in the AppConfig service.</p>
40
+ *
41
+ *
35
42
  * @example To create a deployment strategy
36
43
  * ```javascript
37
44
  * // The following create-deployment-strategy example creates a deployment strategy called Example-Deployment that takes 15 minutes and deploys the configuration to 25% of the application at a time. The strategy is also copied to an SSM Document.
@@ -36,6 +36,16 @@ export interface CreateEnvironmentCommandOutput extends Environment, __MetadataB
36
36
  * @see {@link CreateEnvironmentCommandOutput} for command's `response` shape.
37
37
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
38
38
  *
39
+ * @throws {@link BadRequestException} (client fault)
40
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p>There was an internal failure in the AppConfig service.</p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p>The requested resource could not be found.</p>
47
+ *
48
+ *
39
49
  * @example To create an environment
40
50
  * ```javascript
41
51
  * // The following create-environment example creates an AWS AppConfig environment named Example-Environment using the application you created using create-application
@@ -41,6 +41,19 @@ export interface CreateExtensionAssociationCommandOutput extends ExtensionAssoci
41
41
  * @see {@link CreateExtensionAssociationCommandOutput} for command's `response` shape.
42
42
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
43
43
  *
44
+ * @throws {@link BadRequestException} (client fault)
45
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
46
+ *
47
+ * @throws {@link InternalServerException} (server fault)
48
+ * <p>There was an internal failure in the AppConfig service.</p>
49
+ *
50
+ * @throws {@link ResourceNotFoundException} (client fault)
51
+ * <p>The requested resource could not be found.</p>
52
+ *
53
+ * @throws {@link ServiceQuotaExceededException} (client fault)
54
+ * <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted configuration store. Delete one or more versions and try again.</p>
55
+ *
56
+ *
44
57
  */
45
58
  export declare class CreateExtensionAssociationCommand extends $Command<CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
46
59
  readonly input: CreateExtensionAssociationCommandInput;
@@ -37,6 +37,20 @@ export interface CreateExtensionCommandOutput extends Extension, __MetadataBeare
37
37
  * @see {@link CreateExtensionCommandOutput} for command's `response` shape.
38
38
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
39
39
  *
40
+ * @throws {@link BadRequestException} (client fault)
41
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
42
+ *
43
+ * @throws {@link ConflictException} (client fault)
44
+ * <p>The request could not be processed because of conflict in the current state of the
45
+ * resource.</p>
46
+ *
47
+ * @throws {@link InternalServerException} (server fault)
48
+ * <p>There was an internal failure in the AppConfig service.</p>
49
+ *
50
+ * @throws {@link ServiceQuotaExceededException} (client fault)
51
+ * <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted configuration store. Delete one or more versions and try again.</p>
52
+ *
53
+ *
40
54
  */
41
55
  export declare class CreateExtensionCommand extends $Command<CreateExtensionCommandInput, CreateExtensionCommandOutput, AppConfigClientResolvedConfig> {
42
56
  readonly input: CreateExtensionCommandInput;
@@ -30,6 +30,26 @@ export interface CreateHostedConfigurationVersionCommandOutput extends HostedCon
30
30
  * @see {@link CreateHostedConfigurationVersionCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>The request could not be processed because of conflict in the current state of the
38
+ * resource.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>There was an internal failure in the AppConfig service.</p>
42
+ *
43
+ * @throws {@link PayloadTooLargeException} (client fault)
44
+ * <p>The configuration size is too large.</p>
45
+ *
46
+ * @throws {@link ResourceNotFoundException} (client fault)
47
+ * <p>The requested resource could not be found.</p>
48
+ *
49
+ * @throws {@link ServiceQuotaExceededException} (client fault)
50
+ * <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted configuration store. Delete one or more versions and try again.</p>
51
+ *
52
+ *
33
53
  * @example To create a hosted configuration version
34
54
  * ```javascript
35
55
  * // The following create-hosted-configuration-version example creates a new configuration in the AWS AppConfig configuration store.
@@ -30,6 +30,16 @@ export interface DeleteApplicationCommandOutput extends __MetadataBearer {
30
30
  * @see {@link DeleteApplicationCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>There was an internal failure in the AppConfig service.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The requested resource could not be found.</p>
41
+ *
42
+ *
33
43
  * @example To delete an application
34
44
  * ```javascript
35
45
  * // The following delete-application example deletes the specified application.
@@ -30,6 +30,20 @@ export interface DeleteConfigurationProfileCommandOutput extends __MetadataBeare
30
30
  * @see {@link DeleteConfigurationProfileCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>The request could not be processed because of conflict in the current state of the
38
+ * resource.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>There was an internal failure in the AppConfig service.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>The requested resource could not be found.</p>
45
+ *
46
+ *
33
47
  * @example To delete a configuration profile
34
48
  * ```javascript
35
49
  * // The following delete-configuration-profile example deletes the specified configuration profile.
@@ -30,6 +30,16 @@ export interface DeleteDeploymentStrategyCommandOutput extends __MetadataBearer
30
30
  * @see {@link DeleteDeploymentStrategyCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>There was an internal failure in the AppConfig service.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The requested resource could not be found.</p>
41
+ *
42
+ *
33
43
  * @example To delete a deployment strategy
34
44
  * ```javascript
35
45
  * // The following delete-deployment-strategy example deletes the specified deployment strategy.
@@ -30,6 +30,20 @@ export interface DeleteEnvironmentCommandOutput extends __MetadataBearer {
30
30
  * @see {@link DeleteEnvironmentCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link ConflictException} (client fault)
37
+ * <p>The request could not be processed because of conflict in the current state of the
38
+ * resource.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>There was an internal failure in the AppConfig service.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>The requested resource could not be found.</p>
45
+ *
46
+ *
33
47
  * @example To delete an environment
34
48
  * ```javascript
35
49
  * // The following delete-environment example deletes the specified application environment.
@@ -30,6 +30,16 @@ export interface DeleteExtensionAssociationCommandOutput extends __MetadataBeare
30
30
  * @see {@link DeleteExtensionAssociationCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>There was an internal failure in the AppConfig service.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The requested resource could not be found.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class DeleteExtensionAssociationCommand extends $Command<DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
35
45
  readonly input: DeleteExtensionAssociationCommandInput;
@@ -30,6 +30,16 @@ export interface DeleteExtensionCommandOutput extends __MetadataBearer {
30
30
  * @see {@link DeleteExtensionCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>There was an internal failure in the AppConfig service.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The requested resource could not be found.</p>
41
+ *
42
+ *
33
43
  */
34
44
  export declare class DeleteExtensionCommand extends $Command<DeleteExtensionCommandInput, DeleteExtensionCommandOutput, AppConfigClientResolvedConfig> {
35
45
  readonly input: DeleteExtensionCommandInput;
@@ -30,6 +30,16 @@ export interface DeleteHostedConfigurationVersionCommandOutput extends __Metadat
30
30
  * @see {@link DeleteHostedConfigurationVersionCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>There was an internal failure in the AppConfig service.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The requested resource could not be found.</p>
41
+ *
42
+ *
33
43
  * @example To delete a hosted configuration version
34
44
  * ```javascript
35
45
  * // The following delete-hosted-configuration-version example deletes a configuration version hosted in the AWS AppConfig configuration store.
@@ -29,6 +29,16 @@ export interface GetApplicationCommandOutput extends Application, __MetadataBear
29
29
  * @see {@link GetApplicationCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To list details of an application
33
43
  * ```javascript
34
44
  * // The following get-application example lists the details of the specified application.
@@ -45,6 +45,16 @@ export interface GetConfigurationCommandOutput extends Configuration, __Metadata
45
45
  * @see {@link GetConfigurationCommandOutput} for command's `response` shape.
46
46
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
47
47
  *
48
+ * @throws {@link BadRequestException} (client fault)
49
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
50
+ *
51
+ * @throws {@link InternalServerException} (server fault)
52
+ * <p>There was an internal failure in the AppConfig service.</p>
53
+ *
54
+ * @throws {@link ResourceNotFoundException} (client fault)
55
+ * <p>The requested resource could not be found.</p>
56
+ *
57
+ *
48
58
  * @example To retrieve configuration details
49
59
  * ```javascript
50
60
  * // The following get-configuration example returns the configuration details of the example application. On subsequent calls to get-configuration, use the client-configuration-version parameter to only update the configuration of your application if the version has changed. Only updating the configuration when the version has changed avoids excess charges incurred by calling get-configuration.
@@ -29,6 +29,16 @@ export interface GetConfigurationProfileCommandOutput extends ConfigurationProfi
29
29
  * @see {@link GetConfigurationProfileCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To retrieve configuration profile details
33
43
  * ```javascript
34
44
  * // The following get-configuration-profile example returns the details of the specified configuration profile.
@@ -29,6 +29,16 @@ export interface GetDeploymentCommandOutput extends Deployment, __MetadataBearer
29
29
  * @see {@link GetDeploymentCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To retrieve deployment details
33
43
  * ```javascript
34
44
  * // The following get-deployment example lists details of the deployment to the application in the specified environment and deployment.
@@ -33,6 +33,16 @@ export interface GetDeploymentStrategyCommandOutput extends DeploymentStrategy,
33
33
  * @see {@link GetDeploymentStrategyCommandOutput} for command's `response` shape.
34
34
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
35
35
  *
36
+ * @throws {@link BadRequestException} (client fault)
37
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
38
+ *
39
+ * @throws {@link InternalServerException} (server fault)
40
+ * <p>There was an internal failure in the AppConfig service.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>The requested resource could not be found.</p>
44
+ *
45
+ *
36
46
  * @example To retrieve details of a deployment strategy
37
47
  * ```javascript
38
48
  * // The following get-deployment-strategy example lists the details of the specified deployment strategy.
@@ -34,6 +34,16 @@ export interface GetEnvironmentCommandOutput extends Environment, __MetadataBear
34
34
  * @see {@link GetEnvironmentCommandOutput} for command's `response` shape.
35
35
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
36
36
  *
37
+ * @throws {@link BadRequestException} (client fault)
38
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
39
+ *
40
+ * @throws {@link InternalServerException} (server fault)
41
+ * <p>There was an internal failure in the AppConfig service.</p>
42
+ *
43
+ * @throws {@link ResourceNotFoundException} (client fault)
44
+ * <p>The requested resource could not be found.</p>
45
+ *
46
+ *
37
47
  * @example To retrieve environment details
38
48
  * ```javascript
39
49
  * // The following get-environment example returns the details and state of the specified environment.
@@ -32,6 +32,16 @@ export interface GetExtensionAssociationCommandOutput extends ExtensionAssociati
32
32
  * @see {@link GetExtensionAssociationCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>There was an internal failure in the AppConfig service.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>The requested resource could not be found.</p>
43
+ *
44
+ *
35
45
  */
36
46
  export declare class GetExtensionAssociationCommand extends $Command<GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
37
47
  readonly input: GetExtensionAssociationCommandInput;
@@ -29,6 +29,16 @@ export interface GetExtensionCommandOutput extends Extension, __MetadataBearer {
29
29
  * @see {@link GetExtensionCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  */
33
43
  export declare class GetExtensionCommand extends $Command<GetExtensionCommandInput, GetExtensionCommandOutput, AppConfigClientResolvedConfig> {
34
44
  readonly input: GetExtensionCommandInput;
@@ -29,6 +29,16 @@ export interface GetHostedConfigurationVersionCommandOutput extends HostedConfig
29
29
  * @see {@link GetHostedConfigurationVersionCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To retrieve hosted configuration details
33
43
  * ```javascript
34
44
  * // The following get-hosted-configuration-version example retrieves the configuration details of the AWS AppConfig hosted configuration.
@@ -29,6 +29,13 @@ export interface ListApplicationsCommandOutput extends Applications, __MetadataB
29
29
  * @see {@link ListApplicationsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ *
32
39
  * @example To list the available applications
33
40
  * ```javascript
34
41
  * // The following list-applications example lists the available applications in your AWS account.
@@ -29,6 +29,16 @@ export interface ListConfigurationProfilesCommandOutput extends ConfigurationPro
29
29
  * @see {@link ListConfigurationProfilesCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To list the available configuration profiles
33
43
  * ```javascript
34
44
  * // The following list-configuration-profiles example lists the available configuration profiles for the specified application.
@@ -29,6 +29,13 @@ export interface ListDeploymentStrategiesCommandOutput extends DeploymentStrateg
29
29
  * @see {@link ListDeploymentStrategiesCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ *
32
39
  * @example To list the available deployment strategies
33
40
  * ```javascript
34
41
  * // The following list-deployment-strategies example lists the available deployment strategies in your AWS account.
@@ -29,6 +29,16 @@ export interface ListDeploymentsCommandOutput extends Deployments, __MetadataBea
29
29
  * @see {@link ListDeploymentsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To list the available deployments
33
43
  * ```javascript
34
44
  * // The following list-deployments example lists the available deployments in your AWS account for the specified application and environment.
@@ -29,6 +29,16 @@ export interface ListEnvironmentsCommandOutput extends Environments, __MetadataB
29
29
  * @see {@link ListEnvironmentsCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To list the available environments
33
43
  * ```javascript
34
44
  * // The following list-environments example lists the available environments in your AWS account for the specified application.
@@ -32,6 +32,13 @@ export interface ListExtensionAssociationsCommandOutput extends ExtensionAssocia
32
32
  * @see {@link ListExtensionAssociationsCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>There was an internal failure in the AppConfig service.</p>
40
+ *
41
+ *
35
42
  */
36
43
  export declare class ListExtensionAssociationsCommand extends $Command<ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput, AppConfigClientResolvedConfig> {
37
44
  readonly input: ListExtensionAssociationsCommandInput;
@@ -32,6 +32,13 @@ export interface ListExtensionsCommandOutput extends Extensions, __MetadataBeare
32
32
  * @see {@link ListExtensionsCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>There was an internal failure in the AppConfig service.</p>
40
+ *
41
+ *
35
42
  */
36
43
  export declare class ListExtensionsCommand extends $Command<ListExtensionsCommandInput, ListExtensionsCommandOutput, AppConfigClientResolvedConfig> {
37
44
  readonly input: ListExtensionsCommandInput;
@@ -30,6 +30,16 @@ export interface ListHostedConfigurationVersionsCommandOutput extends HostedConf
30
30
  * @see {@link ListHostedConfigurationVersionsCommandOutput} for command's `response` shape.
31
31
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
32
32
  *
33
+ * @throws {@link BadRequestException} (client fault)
34
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
35
+ *
36
+ * @throws {@link InternalServerException} (server fault)
37
+ * <p>There was an internal failure in the AppConfig service.</p>
38
+ *
39
+ * @throws {@link ResourceNotFoundException} (client fault)
40
+ * <p>The requested resource could not be found.</p>
41
+ *
42
+ *
33
43
  * @example To list the available hosted configuration versions
34
44
  * ```javascript
35
45
  * // The following list-hosted-configuration-versions example lists the configurations versions hosted in the AWS AppConfig hosted configuration store for the specified application and configuration profile.
@@ -29,6 +29,16 @@ export interface ListTagsForResourceCommandOutput extends ResourceTags, __Metada
29
29
  * @see {@link ListTagsForResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To list the tags of an application
33
43
  * ```javascript
34
44
  * // The following list-tags-for-resource example lists the tags of a specified application.
@@ -29,6 +29,20 @@ export interface StartDeploymentCommandOutput extends Deployment, __MetadataBear
29
29
  * @see {@link StartDeploymentCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link ConflictException} (client fault)
36
+ * <p>The request could not be processed because of conflict in the current state of the
37
+ * resource.</p>
38
+ *
39
+ * @throws {@link InternalServerException} (server fault)
40
+ * <p>There was an internal failure in the AppConfig service.</p>
41
+ *
42
+ * @throws {@link ResourceNotFoundException} (client fault)
43
+ * <p>The requested resource could not be found.</p>
44
+ *
45
+ *
32
46
  * @example To start a configuration deployment
33
47
  * ```javascript
34
48
  * // The following start-deployment example starts a deployment to the application using the specified environment, deployment strategy, and configuration profile.
@@ -31,6 +31,16 @@ export interface StopDeploymentCommandOutput extends Deployment, __MetadataBeare
31
31
  * @see {@link StopDeploymentCommandOutput} for command's `response` shape.
32
32
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
33
33
  *
34
+ * @throws {@link BadRequestException} (client fault)
35
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>There was an internal failure in the AppConfig service.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>The requested resource could not be found.</p>
42
+ *
43
+ *
34
44
  * @example To stop configuration deployment
35
45
  * ```javascript
36
46
  * // The following stop-deployment example stops the deployment of an application configuration to the specified environment.
@@ -31,6 +31,16 @@ export interface TagResourceCommandOutput extends __MetadataBearer {
31
31
  * @see {@link TagResourceCommandOutput} for command's `response` shape.
32
32
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
33
33
  *
34
+ * @throws {@link BadRequestException} (client fault)
35
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
36
+ *
37
+ * @throws {@link InternalServerException} (server fault)
38
+ * <p>There was an internal failure in the AppConfig service.</p>
39
+ *
40
+ * @throws {@link ResourceNotFoundException} (client fault)
41
+ * <p>The requested resource could not be found.</p>
42
+ *
43
+ *
34
44
  * @example To tag an application
35
45
  * ```javascript
36
46
  * // The following tag-resource example tags an application resource.
@@ -29,6 +29,16 @@ export interface UntagResourceCommandOutput extends __MetadataBearer {
29
29
  * @see {@link UntagResourceCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To remove a tag from an application
33
43
  * ```javascript
34
44
  * // The following untag-resource example removes the group1 tag from the specified application.
@@ -29,6 +29,16 @@ export interface UpdateApplicationCommandOutput extends Application, __MetadataB
29
29
  * @see {@link UpdateApplicationCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To update an application
33
43
  * ```javascript
34
44
  * // The following update-application example updates the name of the specified application.
@@ -29,6 +29,16 @@ export interface UpdateConfigurationProfileCommandOutput extends ConfigurationPr
29
29
  * @see {@link UpdateConfigurationProfileCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To update a configuration profile
33
43
  * ```javascript
34
44
  * // The following update-configuration-profile example updates the description of the specified configuration profile.
@@ -29,6 +29,16 @@ export interface UpdateDeploymentStrategyCommandOutput extends DeploymentStrateg
29
29
  * @see {@link UpdateDeploymentStrategyCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To update a deployment strategy
33
43
  * ```javascript
34
44
  * // The following update-deployment-strategy example updates final bake time to 20 minutes in the specified deployment strategy. ::
@@ -29,6 +29,16 @@ export interface UpdateEnvironmentCommandOutput extends Environment, __MetadataB
29
29
  * @see {@link UpdateEnvironmentCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To update an environment
33
43
  * ```javascript
34
44
  * // The following update-environment example updates an environment's description.
@@ -32,6 +32,16 @@ export interface UpdateExtensionAssociationCommandOutput extends ExtensionAssoci
32
32
  * @see {@link UpdateExtensionAssociationCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
37
+ *
38
+ * @throws {@link InternalServerException} (server fault)
39
+ * <p>There was an internal failure in the AppConfig service.</p>
40
+ *
41
+ * @throws {@link ResourceNotFoundException} (client fault)
42
+ * <p>The requested resource could not be found.</p>
43
+ *
44
+ *
35
45
  */
36
46
  export declare class UpdateExtensionAssociationCommand extends $Command<UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
37
47
  readonly input: UpdateExtensionAssociationCommandInput;
@@ -32,6 +32,20 @@ export interface UpdateExtensionCommandOutput extends Extension, __MetadataBeare
32
32
  * @see {@link UpdateExtensionCommandOutput} for command's `response` shape.
33
33
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
34
34
  *
35
+ * @throws {@link BadRequestException} (client fault)
36
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
37
+ *
38
+ * @throws {@link ConflictException} (client fault)
39
+ * <p>The request could not be processed because of conflict in the current state of the
40
+ * resource.</p>
41
+ *
42
+ * @throws {@link InternalServerException} (server fault)
43
+ * <p>There was an internal failure in the AppConfig service.</p>
44
+ *
45
+ * @throws {@link ResourceNotFoundException} (client fault)
46
+ * <p>The requested resource could not be found.</p>
47
+ *
48
+ *
35
49
  */
36
50
  export declare class UpdateExtensionCommand extends $Command<UpdateExtensionCommandInput, UpdateExtensionCommandOutput, AppConfigClientResolvedConfig> {
37
51
  readonly input: UpdateExtensionCommandInput;
@@ -29,6 +29,16 @@ export interface ValidateConfigurationCommandOutput extends __MetadataBearer {
29
29
  * @see {@link ValidateConfigurationCommandOutput} for command's `response` shape.
30
30
  * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
31
31
  *
32
+ * @throws {@link BadRequestException} (client fault)
33
+ * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
34
+ *
35
+ * @throws {@link InternalServerException} (server fault)
36
+ * <p>There was an internal failure in the AppConfig service.</p>
37
+ *
38
+ * @throws {@link ResourceNotFoundException} (client fault)
39
+ * <p>The requested resource could not be found.</p>
40
+ *
41
+ *
32
42
  * @example To validate a configuration
33
43
  * ```javascript
34
44
  * // The following validate-configuration example uses the validators in a configuration profile to validate a configuration.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appconfig",
3
3
  "description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
4
- "version": "3.289.0",
4
+ "version": "3.290.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "tsc -p tsconfig.cjs.json",
@@ -20,37 +20,37 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "3.0.0",
22
22
  "@aws-crypto/sha256-js": "3.0.0",
23
- "@aws-sdk/client-sts": "3.289.0",
24
- "@aws-sdk/config-resolver": "3.289.0",
25
- "@aws-sdk/credential-provider-node": "3.289.0",
26
- "@aws-sdk/fetch-http-handler": "3.289.0",
27
- "@aws-sdk/hash-node": "3.289.0",
28
- "@aws-sdk/invalid-dependency": "3.289.0",
29
- "@aws-sdk/middleware-content-length": "3.289.0",
30
- "@aws-sdk/middleware-endpoint": "3.289.0",
31
- "@aws-sdk/middleware-host-header": "3.289.0",
32
- "@aws-sdk/middleware-logger": "3.289.0",
33
- "@aws-sdk/middleware-recursion-detection": "3.289.0",
34
- "@aws-sdk/middleware-retry": "3.289.0",
35
- "@aws-sdk/middleware-serde": "3.289.0",
36
- "@aws-sdk/middleware-signing": "3.289.0",
37
- "@aws-sdk/middleware-stack": "3.289.0",
38
- "@aws-sdk/middleware-user-agent": "3.289.0",
39
- "@aws-sdk/node-config-provider": "3.289.0",
40
- "@aws-sdk/node-http-handler": "3.289.0",
41
- "@aws-sdk/protocol-http": "3.289.0",
42
- "@aws-sdk/smithy-client": "3.289.0",
43
- "@aws-sdk/types": "3.289.0",
44
- "@aws-sdk/url-parser": "3.289.0",
23
+ "@aws-sdk/client-sts": "3.290.0",
24
+ "@aws-sdk/config-resolver": "3.290.0",
25
+ "@aws-sdk/credential-provider-node": "3.290.0",
26
+ "@aws-sdk/fetch-http-handler": "3.290.0",
27
+ "@aws-sdk/hash-node": "3.290.0",
28
+ "@aws-sdk/invalid-dependency": "3.290.0",
29
+ "@aws-sdk/middleware-content-length": "3.290.0",
30
+ "@aws-sdk/middleware-endpoint": "3.290.0",
31
+ "@aws-sdk/middleware-host-header": "3.290.0",
32
+ "@aws-sdk/middleware-logger": "3.290.0",
33
+ "@aws-sdk/middleware-recursion-detection": "3.290.0",
34
+ "@aws-sdk/middleware-retry": "3.290.0",
35
+ "@aws-sdk/middleware-serde": "3.290.0",
36
+ "@aws-sdk/middleware-signing": "3.290.0",
37
+ "@aws-sdk/middleware-stack": "3.290.0",
38
+ "@aws-sdk/middleware-user-agent": "3.290.0",
39
+ "@aws-sdk/node-config-provider": "3.290.0",
40
+ "@aws-sdk/node-http-handler": "3.290.0",
41
+ "@aws-sdk/protocol-http": "3.290.0",
42
+ "@aws-sdk/smithy-client": "3.290.0",
43
+ "@aws-sdk/types": "3.290.0",
44
+ "@aws-sdk/url-parser": "3.290.0",
45
45
  "@aws-sdk/util-base64": "3.208.0",
46
46
  "@aws-sdk/util-body-length-browser": "3.188.0",
47
47
  "@aws-sdk/util-body-length-node": "3.208.0",
48
- "@aws-sdk/util-defaults-mode-browser": "3.289.0",
49
- "@aws-sdk/util-defaults-mode-node": "3.289.0",
50
- "@aws-sdk/util-endpoints": "3.289.0",
51
- "@aws-sdk/util-retry": "3.289.0",
52
- "@aws-sdk/util-user-agent-browser": "3.289.0",
53
- "@aws-sdk/util-user-agent-node": "3.289.0",
48
+ "@aws-sdk/util-defaults-mode-browser": "3.290.0",
49
+ "@aws-sdk/util-defaults-mode-node": "3.290.0",
50
+ "@aws-sdk/util-endpoints": "3.290.0",
51
+ "@aws-sdk/util-retry": "3.290.0",
52
+ "@aws-sdk/util-user-agent-browser": "3.290.0",
53
+ "@aws-sdk/util-user-agent-node": "3.290.0",
54
54
  "@aws-sdk/util-utf8": "3.254.0",
55
55
  "tslib": "^2.3.1"
56
56
  },