@aws-sdk/client-appconfig 3.121.0 → 3.129.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 (82) hide show
  1. package/CHANGELOG.md +30 -0
  2. package/README.md +24 -23
  3. package/dist-cjs/AppConfig.js +150 -0
  4. package/dist-cjs/commands/CreateExtensionAssociationCommand.js +36 -0
  5. package/dist-cjs/commands/CreateExtensionCommand.js +36 -0
  6. package/dist-cjs/commands/DeleteExtensionAssociationCommand.js +36 -0
  7. package/dist-cjs/commands/DeleteExtensionCommand.js +36 -0
  8. package/dist-cjs/commands/GetExtensionAssociationCommand.js +36 -0
  9. package/dist-cjs/commands/GetExtensionCommand.js +36 -0
  10. package/dist-cjs/commands/ListExtensionAssociationsCommand.js +36 -0
  11. package/dist-cjs/commands/ListExtensionsCommand.js +36 -0
  12. package/dist-cjs/commands/UpdateExtensionAssociationCommand.js +36 -0
  13. package/dist-cjs/commands/UpdateExtensionCommand.js +36 -0
  14. package/dist-cjs/commands/index.js +10 -0
  15. package/dist-cjs/endpoints.js +19 -2
  16. package/dist-cjs/models/models_0.js +146 -16
  17. package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +36 -0
  18. package/dist-cjs/pagination/ListExtensionsPaginator.js +36 -0
  19. package/dist-cjs/pagination/index.js +2 -0
  20. package/dist-cjs/protocols/Aws_restJson1.js +1162 -115
  21. package/dist-es/AppConfig.js +150 -0
  22. package/dist-es/commands/CreateExtensionAssociationCommand.js +39 -0
  23. package/dist-es/commands/CreateExtensionCommand.js +39 -0
  24. package/dist-es/commands/DeleteExtensionAssociationCommand.js +39 -0
  25. package/dist-es/commands/DeleteExtensionCommand.js +39 -0
  26. package/dist-es/commands/GetExtensionAssociationCommand.js +39 -0
  27. package/dist-es/commands/GetExtensionCommand.js +39 -0
  28. package/dist-es/commands/ListExtensionAssociationsCommand.js +39 -0
  29. package/dist-es/commands/ListExtensionsCommand.js +39 -0
  30. package/dist-es/commands/UpdateExtensionAssociationCommand.js +39 -0
  31. package/dist-es/commands/UpdateExtensionCommand.js +39 -0
  32. package/dist-es/commands/index.js +10 -0
  33. package/dist-es/endpoints.js +19 -2
  34. package/dist-es/models/models_0.js +103 -13
  35. package/dist-es/pagination/ListExtensionAssociationsPaginator.js +75 -0
  36. package/dist-es/pagination/ListExtensionsPaginator.js +75 -0
  37. package/dist-es/pagination/index.js +2 -0
  38. package/dist-es/protocols/Aws_restJson1.js +1507 -253
  39. package/dist-types/AppConfig.d.ts +159 -51
  40. package/dist-types/AppConfigClient.d.ts +36 -25
  41. package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
  42. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +5 -6
  43. package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
  44. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +47 -0
  45. package/dist-types/commands/CreateExtensionCommand.d.ts +43 -0
  46. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -1
  47. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +36 -0
  48. package/dist-types/commands/DeleteExtensionCommand.d.ts +36 -0
  49. package/dist-types/commands/GetConfigurationCommand.d.ts +6 -5
  50. package/dist-types/commands/GetEnvironmentCommand.d.ts +6 -5
  51. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +38 -0
  52. package/dist-types/commands/GetExtensionCommand.d.ts +35 -0
  53. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +38 -0
  54. package/dist-types/commands/ListExtensionsCommand.d.ts +38 -0
  55. package/dist-types/commands/TagResourceCommand.d.ts +3 -5
  56. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +38 -0
  57. package/dist-types/commands/UpdateExtensionCommand.d.ts +38 -0
  58. package/dist-types/commands/index.d.ts +10 -0
  59. package/dist-types/models/models_0.d.ts +678 -98
  60. package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  61. package/dist-types/pagination/ListExtensionsPaginator.d.ts +4 -0
  62. package/dist-types/pagination/index.d.ts +2 -0
  63. package/dist-types/protocols/Aws_restJson1.d.ts +30 -0
  64. package/dist-types/ts3.4/AppConfig.d.ts +50 -0
  65. package/dist-types/ts3.4/AppConfigClient.d.ts +12 -2
  66. package/dist-types/ts3.4/commands/CreateExtensionAssociationCommand.d.ts +17 -0
  67. package/dist-types/ts3.4/commands/CreateExtensionCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/DeleteExtensionAssociationCommand.d.ts +17 -0
  69. package/dist-types/ts3.4/commands/DeleteExtensionCommand.d.ts +17 -0
  70. package/dist-types/ts3.4/commands/GetExtensionAssociationCommand.d.ts +17 -0
  71. package/dist-types/ts3.4/commands/GetExtensionCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/ListExtensionAssociationsCommand.d.ts +17 -0
  73. package/dist-types/ts3.4/commands/ListExtensionsCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/UpdateExtensionAssociationCommand.d.ts +17 -0
  75. package/dist-types/ts3.4/commands/UpdateExtensionCommand.d.ts +17 -0
  76. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  77. package/dist-types/ts3.4/models/models_0.d.ts +298 -9
  78. package/dist-types/ts3.4/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  79. package/dist-types/ts3.4/pagination/ListExtensionsPaginator.d.ts +4 -0
  80. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  81. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +30 -0
  82. package/package.json +26 -26
@@ -4,11 +4,15 @@ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from ".
4
4
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
5
5
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
6
6
  import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
7
+ import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
8
+ import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
7
9
  import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
8
10
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
9
11
  import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
10
12
  import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
11
13
  import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
14
+ import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
15
+ import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
12
16
  import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
13
17
  import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
14
18
  import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
@@ -16,12 +20,16 @@ import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutp
16
20
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
17
21
  import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
18
22
  import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
23
+ import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
24
+ import { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
19
25
  import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
20
26
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
21
27
  import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
22
28
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
23
29
  import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
24
30
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
31
+ import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
32
+ import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
25
33
  import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
26
34
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
27
35
  import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
@@ -32,13 +40,15 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
32
40
  import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
33
41
  import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
34
42
  import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
43
+ import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
44
+ import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
35
45
  import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
36
46
  /**
37
- * <p>Use AppConfig, a capability of Amazon Web Services Systems Manager, to create, manage, and quickly deploy
38
- * application configurations. AppConfig supports controlled deployments to applications of
39
- * any size and includes built-in validation checks and monitoring. You can use AppConfig with
40
- * applications hosted on Amazon EC2 instances, Lambda, containers, mobile applications, or IoT
41
- * devices.</p>
47
+ * <p>Use AppConfig, a capability of Amazon Web Services Systems Manager, to create, manage, and quickly
48
+ * deploy application configurations. AppConfig supports controlled deployments to
49
+ * applications of any size and includes built-in validation checks and monitoring. You can
50
+ * use AppConfig with applications hosted on Amazon EC2 instances, Lambda, containers,
51
+ * mobile applications, or IoT devices.</p>
42
52
  * <p>To prevent errors when deploying application configurations, especially for production
43
53
  * systems where a simple typo could cause an unexpected outage, AppConfig includes
44
54
  * validators. A validator provides a syntactic or semantic check to ensure that the
@@ -46,56 +56,56 @@ import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput }
46
56
  * configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against
47
57
  * the configuration. The configuration deployment or update can only proceed when the
48
58
  * configuration data is valid.</p>
49
- * <p>During a configuration deployment, AppConfig monitors the application to ensure that the
50
- * deployment is successful. If the system encounters an error, AppConfig rolls back the
51
- * change to minimize impact for your application users. You can configure a deployment
52
- * strategy for each application or environment that includes deployment criteria, including
53
- * velocity, bake time, and alarms to monitor. Similar to error monitoring, if a deployment
54
- * triggers an alarm, AppConfig automatically rolls back to the previous version. </p>
59
+ * <p>During a configuration deployment, AppConfig monitors the application to
60
+ * ensure that the deployment is successful. If the system encounters an error, AppConfig rolls back the change to minimize impact for your application users. You can
61
+ * configure a deployment strategy for each application or environment that includes
62
+ * deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error
63
+ * monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back
64
+ * to the previous version. </p>
55
65
  * <p>AppConfig supports multiple use cases. Here are some examples:</p>
56
66
  * <ul>
57
67
  * <li>
58
68
  * <p>
59
- * <b>Feature flags</b>: Use AppConfig to turn on new
60
- * features that require a timely deployment, such as a product launch or announcement.
61
- * </p>
69
+ * <b>Feature flags</b>: Use AppConfig to turn on
70
+ * new features that require a timely deployment, such as a product launch or
71
+ * announcement. </p>
62
72
  * </li>
63
73
  * <li>
64
74
  * <p>
65
- * <b>Application tuning</b>: Use AppConfig to carefully
66
- * introduce changes to your application that can only be tested with production
67
- * traffic.</p>
75
+ * <b>Application tuning</b>: Use AppConfig to
76
+ * carefully introduce changes to your application that can only be tested with
77
+ * production traffic.</p>
68
78
  * </li>
69
79
  * <li>
70
80
  * <p>
71
- * <b>Allow list</b>: Use AppConfig to allow premium
72
- * subscribers to access paid content. </p>
81
+ * <b>Allow list</b>: Use AppConfig to allow
82
+ * premium subscribers to access paid content. </p>
73
83
  * </li>
74
84
  * <li>
75
85
  * <p>
76
- * <b>Operational issues</b>: Use AppConfig to reduce
77
- * stress on your application when a dependency or other external factor impacts the
78
- * system.</p>
86
+ * <b>Operational issues</b>: Use AppConfig to
87
+ * reduce stress on your application when a dependency or other external factor impacts
88
+ * the system.</p>
79
89
  * </li>
80
90
  * </ul>
81
- * <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html">AppConfig User Guide</a>.</p>
91
+ * <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html">AppConfig User
92
+ * Guide</a>.</p>
82
93
  */
83
94
  export declare class AppConfig extends AppConfigClient {
84
95
  /**
85
- * <p>Creates an application. An application in AppConfig is a logical unit of code that
86
- * provides capabilities for your customers. For example, an application can be a microservice
87
- * that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless
88
- * application using Amazon API Gateway and Lambda, or any system you run on behalf of
89
- * others.</p>
96
+ * <p>Creates an application. In AppConfig, an application is simply an
97
+ * organizational construct like a folder. This organizational construct has a relationship
98
+ * with some unit of executable code. For example, you could create an application called
99
+ * MyMobileApp to organize and manage configuration data for a mobile application installed by
100
+ * your users.</p>
90
101
  */
91
102
  createApplication(args: CreateApplicationCommandInput, options?: __HttpHandlerOptions): Promise<CreateApplicationCommandOutput>;
92
103
  createApplication(args: CreateApplicationCommandInput, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
93
104
  createApplication(args: CreateApplicationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateApplicationCommandOutput) => void): void;
94
105
  /**
95
- * <p>Creates a configuration profile, which is information that enables AppConfig to access
96
- * the configuration source. Valid configuration sources include the AppConfig hosted
97
- * configuration store, Amazon Web Services Systems Manager (SSM) documents, SSM Parameter Store parameters, Amazon S3
98
- * objects, or any <a href="http://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source">integration source
106
+ * <p>Creates a configuration profile, which is information that enables AppConfig
107
+ * to access the configuration source. Valid configuration sources include the AppConfig hosted configuration store, Amazon Web Services Systems Manager (SSM) documents, SSM Parameter Store
108
+ * parameters, Amazon S3 objects, or any <a href="http://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source">integration source
99
109
  * action</a> supported by CodePipeline. A configuration profile includes the following
100
110
  * information:</p>
101
111
  *
@@ -112,8 +122,8 @@ export declare class AppConfig extends AppConfigClient {
112
122
  * </li>
113
123
  * </ul>
114
124
  * <p>For more information, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html">Create a
115
- * Configuration and a Configuration Profile</a> in the <i>AppConfig User
116
- * Guide</i>.</p>
125
+ * Configuration and a Configuration Profile</a> in the <i>AppConfig
126
+ * User Guide</i>.</p>
117
127
  */
118
128
  createConfigurationProfile(args: CreateConfigurationProfileCommandInput, options?: __HttpHandlerOptions): Promise<CreateConfigurationProfileCommandOutput>;
119
129
  createConfigurationProfile(args: CreateConfigurationProfileCommandInput, cb: (err: any, data?: CreateConfigurationProfileCommandOutput) => void): void;
@@ -129,7 +139,7 @@ export declare class AppConfig extends AppConfigClient {
129
139
  createDeploymentStrategy(args: CreateDeploymentStrategyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateDeploymentStrategyCommandOutput) => void): void;
130
140
  /**
131
141
  * <p>Creates an environment. For each application, you define one or more environments. An
132
- * environment is a logical deployment group of AppConfig targets, such as applications in a
142
+ * environment is a deployment group of AppConfig targets, such as applications in a
133
143
  * <code>Beta</code> or <code>Production</code> environment. You can also define
134
144
  * environments for application subcomponents such as the <code>Web</code>,
135
145
  * <code>Mobile</code> and <code>Back-end</code> components for your application. You can
@@ -141,7 +151,40 @@ export declare class AppConfig extends AppConfigClient {
141
151
  createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
142
152
  createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
143
153
  /**
144
- * <p>Creates a new configuration in the AppConfig hosted configuration store.</p>
154
+ * <p>Creates an AppConfig extension. An extension augments your ability to inject
155
+ * logic or behavior at different points during the AppConfig workflow of creating
156
+ * or deploying a configuration.</p>
157
+ * <p>You can create your own extensions or use the Amazon Web Services-authored extensions provided by
158
+ * AppConfig. For most use-cases, to create your own extension, you must create
159
+ * an Lambda function to perform any computation and processing defined in the
160
+ * extension. For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
161
+ * AppConfig extensions</a> in the
162
+ * <i>AppConfig User Guide</i>.</p>
163
+ */
164
+ createExtension(args: CreateExtensionCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtensionCommandOutput>;
165
+ createExtension(args: CreateExtensionCommandInput, cb: (err: any, data?: CreateExtensionCommandOutput) => void): void;
166
+ createExtension(args: CreateExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtensionCommandOutput) => void): void;
167
+ /**
168
+ * <p>When you create an extension or configure an Amazon Web Services-authored extension, you
169
+ * associate the extension with an AppConfig application, environment, or
170
+ * configuration profile. For example, you can choose to run the <code>AppConfig
171
+ * deployment events to Amazon SNS</code>
172
+ * Amazon Web Services-authored extension and receive notifications on an Amazon SNS
173
+ * topic anytime a configuration deployment is started for a specific application. Defining
174
+ * which extension to associate with an AppConfig resource is called an
175
+ * <i>extension association</i>. An extension association is a specified
176
+ * relationship between an extension and an AppConfig resource, such as an
177
+ * application or a configuration profile. For more information about extensions and
178
+ * associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
179
+ * AppConfig extensions</a> in the
180
+ * <i>AppConfig User Guide</i>.</p>
181
+ */
182
+ createExtensionAssociation(args: CreateExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<CreateExtensionAssociationCommandOutput>;
183
+ createExtensionAssociation(args: CreateExtensionAssociationCommandInput, cb: (err: any, data?: CreateExtensionAssociationCommandOutput) => void): void;
184
+ createExtensionAssociation(args: CreateExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExtensionAssociationCommandOutput) => void): void;
185
+ /**
186
+ * <p>Creates a new configuration in the AppConfig hosted configuration
187
+ * store.</p>
145
188
  */
146
189
  createHostedConfigurationVersion(args: CreateHostedConfigurationVersionCommandInput, options?: __HttpHandlerOptions): Promise<CreateHostedConfigurationVersionCommandOutput>;
147
190
  createHostedConfigurationVersion(args: CreateHostedConfigurationVersionCommandInput, cb: (err: any, data?: CreateHostedConfigurationVersionCommandOutput) => void): void;
@@ -174,6 +217,20 @@ export declare class AppConfig extends AppConfigClient {
174
217
  deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
175
218
  deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
176
219
  deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
220
+ /**
221
+ * <p>Deletes an AppConfig extension. You must delete all associations to an
222
+ * extension before you delete the extension.</p>
223
+ */
224
+ deleteExtension(args: DeleteExtensionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExtensionCommandOutput>;
225
+ deleteExtension(args: DeleteExtensionCommandInput, cb: (err: any, data?: DeleteExtensionCommandOutput) => void): void;
226
+ deleteExtension(args: DeleteExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExtensionCommandOutput) => void): void;
227
+ /**
228
+ * <p>Deletes an extension association. This action doesn't delete extensions defined in the
229
+ * association.</p>
230
+ */
231
+ deleteExtensionAssociation(args: DeleteExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExtensionAssociationCommandOutput>;
232
+ deleteExtensionAssociation(args: DeleteExtensionAssociationCommandInput, cb: (err: any, data?: DeleteExtensionAssociationCommandOutput) => void): void;
233
+ deleteExtensionAssociation(args: DeleteExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExtensionAssociationCommandOutput) => void): void;
177
234
  /**
178
235
  * <p>Deletes a version of a configuration from the AppConfig hosted configuration
179
236
  * store.</p>
@@ -205,11 +262,12 @@ export declare class AppConfig extends AppConfigClient {
205
262
  * <a href="https://aws.amazon.com/systems-manager/pricing/">Pricing</a>.</p>
206
263
  * </li>
207
264
  * <li>
208
- * <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code>
209
- * parameter to identify the configuration version on your clients. If you don’t send
210
- * <code>ClientConfigurationVersion</code> with each call to
211
- * <code>GetConfiguration</code>, your clients receive the current configuration.
212
- * You are charged each time your clients receive a configuration.</p>
265
+ * <p>AppConfig uses the value of the
266
+ * <code>ClientConfigurationVersion</code> parameter to identify the configuration
267
+ * version on your clients. If you don’t send <code>ClientConfigurationVersion</code>
268
+ * with each call to <code>GetConfiguration</code>, your clients receive the current
269
+ * configuration. You are charged each time your clients receive a
270
+ * configuration.</p>
213
271
  * <p>To avoid excess charges, we recommend you use the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/GetLatestConfiguration.html">GetLatestConfiguration</a> APIs, which track the client configuration
214
272
  * version on your behalf. If you choose to continue using
215
273
  * <code>GetConfiguration</code>, we recommend that you include the
@@ -249,15 +307,31 @@ export declare class AppConfig extends AppConfigClient {
249
307
  getDeploymentStrategy(args: GetDeploymentStrategyCommandInput, cb: (err: any, data?: GetDeploymentStrategyCommandOutput) => void): void;
250
308
  getDeploymentStrategy(args: GetDeploymentStrategyCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetDeploymentStrategyCommandOutput) => void): void;
251
309
  /**
252
- * <p>Retrieves information about an environment. An environment is a logical deployment group
253
- * of AppConfig applications, such as applications in a <code>Production</code> environment or
254
- * in an <code>EU_Region</code> environment. Each configuration deployment targets an
255
- * environment. You can enable one or more Amazon CloudWatch alarms for an environment. If an alarm is
256
- * triggered during a deployment, AppConfig roles back the configuration.</p>
310
+ * <p>Retrieves information about an environment. An environment is a deployment group of
311
+ * AppConfig applications, such as applications in a <code>Production</code>
312
+ * environment or in an <code>EU_Region</code> environment. Each configuration deployment
313
+ * targets an environment. You can enable one or more Amazon CloudWatch alarms for an environment. If
314
+ * an alarm is triggered during a deployment, AppConfig roles back the
315
+ * configuration.</p>
257
316
  */
258
317
  getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
259
318
  getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
260
319
  getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
320
+ /**
321
+ * <p>Returns information about an AppConfig extension.</p>
322
+ */
323
+ getExtension(args: GetExtensionCommandInput, options?: __HttpHandlerOptions): Promise<GetExtensionCommandOutput>;
324
+ getExtension(args: GetExtensionCommandInput, cb: (err: any, data?: GetExtensionCommandOutput) => void): void;
325
+ getExtension(args: GetExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExtensionCommandOutput) => void): void;
326
+ /**
327
+ * <p>Returns information about an AppConfig extension association. For more
328
+ * information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
329
+ * AppConfig extensions</a> in the
330
+ * <i>AppConfig User Guide</i>.</p>
331
+ */
332
+ getExtensionAssociation(args: GetExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<GetExtensionAssociationCommandOutput>;
333
+ getExtensionAssociation(args: GetExtensionAssociationCommandInput, cb: (err: any, data?: GetExtensionAssociationCommandOutput) => void): void;
334
+ getExtensionAssociation(args: GetExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExtensionAssociationCommandOutput) => void): void;
261
335
  /**
262
336
  * <p>Retrieves information about a specific configuration version.</p>
263
337
  */
@@ -294,6 +368,24 @@ export declare class AppConfig extends AppConfigClient {
294
368
  listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
295
369
  listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
296
370
  listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
371
+ /**
372
+ * <p>Lists all AppConfig extension associations in the account. For more
373
+ * information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
374
+ * AppConfig extensions</a> in the
375
+ * <i>AppConfig User Guide</i>.</p>
376
+ */
377
+ listExtensionAssociations(args: ListExtensionAssociationsCommandInput, options?: __HttpHandlerOptions): Promise<ListExtensionAssociationsCommandOutput>;
378
+ listExtensionAssociations(args: ListExtensionAssociationsCommandInput, cb: (err: any, data?: ListExtensionAssociationsCommandOutput) => void): void;
379
+ listExtensionAssociations(args: ListExtensionAssociationsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensionAssociationsCommandOutput) => void): void;
380
+ /**
381
+ * <p>Lists all custom and Amazon Web Services-authored AppConfig extensions in the
382
+ * account. For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
383
+ * AppConfig extensions</a> in the
384
+ * <i>AppConfig User Guide</i>.</p>
385
+ */
386
+ listExtensions(args: ListExtensionsCommandInput, options?: __HttpHandlerOptions): Promise<ListExtensionsCommandOutput>;
387
+ listExtensions(args: ListExtensionsCommandInput, cb: (err: any, data?: ListExtensionsCommandOutput) => void): void;
388
+ listExtensions(args: ListExtensionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExtensionsCommandOutput) => void): void;
297
389
  /**
298
390
  * <p>Lists configurations stored in the AppConfig hosted configuration store by
299
391
  * version.</p>
@@ -322,11 +414,9 @@ export declare class AppConfig extends AppConfigClient {
322
414
  stopDeployment(args: StopDeploymentCommandInput, cb: (err: any, data?: StopDeploymentCommandOutput) => void): void;
323
415
  stopDeployment(args: StopDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDeploymentCommandOutput) => void): void;
324
416
  /**
325
- * <p>Assigns
326
- * metadata
327
- * to an AppConfig resource. Tags help organize and categorize your AppConfig resources. Each
328
- * tag consists of a key and an optional value, both of which you define. You can specify a
329
- * maximum of 50 tags for a resource.</p>
417
+ * <p>Assigns metadata to an AppConfig resource. Tags help organize and categorize
418
+ * your AppConfig resources. Each tag consists of a key and an optional value, both
419
+ * of which you define. You can specify a maximum of 50 tags for a resource.</p>
330
420
  */
331
421
  tagResource(args: TagResourceCommandInput, options?: __HttpHandlerOptions): Promise<TagResourceCommandOutput>;
332
422
  tagResource(args: TagResourceCommandInput, cb: (err: any, data?: TagResourceCommandOutput) => void): void;
@@ -361,6 +451,24 @@ export declare class AppConfig extends AppConfigClient {
361
451
  updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
362
452
  updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
363
453
  updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
454
+ /**
455
+ * <p>Updates an AppConfig extension. For more information about extensions, see
456
+ * <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
457
+ * AppConfig extensions</a> in the
458
+ * <i>AppConfig User Guide</i>.</p>
459
+ */
460
+ updateExtension(args: UpdateExtensionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExtensionCommandOutput>;
461
+ updateExtension(args: UpdateExtensionCommandInput, cb: (err: any, data?: UpdateExtensionCommandOutput) => void): void;
462
+ updateExtension(args: UpdateExtensionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExtensionCommandOutput) => void): void;
463
+ /**
464
+ * <p>Updates an association. For more information about extensions and associations, see
465
+ * <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
466
+ * AppConfig extensions</a> in the
467
+ * <i>AppConfig User Guide</i>.</p>
468
+ */
469
+ updateExtensionAssociation(args: UpdateExtensionAssociationCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExtensionAssociationCommandOutput>;
470
+ updateExtensionAssociation(args: UpdateExtensionAssociationCommandInput, cb: (err: any, data?: UpdateExtensionAssociationCommandOutput) => void): void;
471
+ updateExtensionAssociation(args: UpdateExtensionAssociationCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExtensionAssociationCommandOutput) => void): void;
364
472
  /**
365
473
  * <p>Uses the validators in a configuration profile to validate a configuration.</p>
366
474
  */
@@ -10,11 +10,15 @@ import { CreateApplicationCommandInput, CreateApplicationCommandOutput } from ".
10
10
  import { CreateConfigurationProfileCommandInput, CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
11
11
  import { CreateDeploymentStrategyCommandInput, CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
12
12
  import { CreateEnvironmentCommandInput, CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
13
+ import { CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
14
+ import { CreateExtensionCommandInput, CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
13
15
  import { CreateHostedConfigurationVersionCommandInput, CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
14
16
  import { DeleteApplicationCommandInput, DeleteApplicationCommandOutput } from "./commands/DeleteApplicationCommand";
15
17
  import { DeleteConfigurationProfileCommandInput, DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
16
18
  import { DeleteDeploymentStrategyCommandInput, DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
17
19
  import { DeleteEnvironmentCommandInput, DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
20
+ import { DeleteExtensionAssociationCommandInput, DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
21
+ import { DeleteExtensionCommandInput, DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
18
22
  import { DeleteHostedConfigurationVersionCommandInput, DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
19
23
  import { GetApplicationCommandInput, GetApplicationCommandOutput } from "./commands/GetApplicationCommand";
20
24
  import { GetConfigurationCommandInput, GetConfigurationCommandOutput } from "./commands/GetConfigurationCommand";
@@ -22,12 +26,16 @@ import { GetConfigurationProfileCommandInput, GetConfigurationProfileCommandOutp
22
26
  import { GetDeploymentCommandInput, GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
23
27
  import { GetDeploymentStrategyCommandInput, GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
24
28
  import { GetEnvironmentCommandInput, GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
29
+ import { GetExtensionAssociationCommandInput, GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
30
+ import { GetExtensionCommandInput, GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
25
31
  import { GetHostedConfigurationVersionCommandInput, GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
26
32
  import { ListApplicationsCommandInput, ListApplicationsCommandOutput } from "./commands/ListApplicationsCommand";
27
33
  import { ListConfigurationProfilesCommandInput, ListConfigurationProfilesCommandOutput } from "./commands/ListConfigurationProfilesCommand";
28
34
  import { ListDeploymentsCommandInput, ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
29
35
  import { ListDeploymentStrategiesCommandInput, ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
30
36
  import { ListEnvironmentsCommandInput, ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
37
+ import { ListExtensionAssociationsCommandInput, ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
38
+ import { ListExtensionsCommandInput, ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
31
39
  import { ListHostedConfigurationVersionsCommandInput, ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
32
40
  import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
33
41
  import { StartDeploymentCommandInput, StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
@@ -38,9 +46,11 @@ import { UpdateApplicationCommandInput, UpdateApplicationCommandOutput } from ".
38
46
  import { UpdateConfigurationProfileCommandInput, UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
39
47
  import { UpdateDeploymentStrategyCommandInput, UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
40
48
  import { UpdateEnvironmentCommandInput, UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
49
+ import { UpdateExtensionAssociationCommandInput, UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
50
+ import { UpdateExtensionCommandInput, UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
41
51
  import { ValidateConfigurationCommandInput, ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
42
- export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateConfigurationProfileCommandInput | CreateDeploymentStrategyCommandInput | CreateEnvironmentCommandInput | CreateHostedConfigurationVersionCommandInput | DeleteApplicationCommandInput | DeleteConfigurationProfileCommandInput | DeleteDeploymentStrategyCommandInput | DeleteEnvironmentCommandInput | DeleteHostedConfigurationVersionCommandInput | GetApplicationCommandInput | GetConfigurationCommandInput | GetConfigurationProfileCommandInput | GetDeploymentCommandInput | GetDeploymentStrategyCommandInput | GetEnvironmentCommandInput | GetHostedConfigurationVersionCommandInput | ListApplicationsCommandInput | ListConfigurationProfilesCommandInput | ListDeploymentStrategiesCommandInput | ListDeploymentsCommandInput | ListEnvironmentsCommandInput | ListHostedConfigurationVersionsCommandInput | ListTagsForResourceCommandInput | StartDeploymentCommandInput | StopDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateConfigurationProfileCommandInput | UpdateDeploymentStrategyCommandInput | UpdateEnvironmentCommandInput | ValidateConfigurationCommandInput;
43
- export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateConfigurationProfileCommandOutput | CreateDeploymentStrategyCommandOutput | CreateEnvironmentCommandOutput | CreateHostedConfigurationVersionCommandOutput | DeleteApplicationCommandOutput | DeleteConfigurationProfileCommandOutput | DeleteDeploymentStrategyCommandOutput | DeleteEnvironmentCommandOutput | DeleteHostedConfigurationVersionCommandOutput | GetApplicationCommandOutput | GetConfigurationCommandOutput | GetConfigurationProfileCommandOutput | GetDeploymentCommandOutput | GetDeploymentStrategyCommandOutput | GetEnvironmentCommandOutput | GetHostedConfigurationVersionCommandOutput | ListApplicationsCommandOutput | ListConfigurationProfilesCommandOutput | ListDeploymentStrategiesCommandOutput | ListDeploymentsCommandOutput | ListEnvironmentsCommandOutput | ListHostedConfigurationVersionsCommandOutput | ListTagsForResourceCommandOutput | StartDeploymentCommandOutput | StopDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateConfigurationProfileCommandOutput | UpdateDeploymentStrategyCommandOutput | UpdateEnvironmentCommandOutput | ValidateConfigurationCommandOutput;
52
+ export declare type ServiceInputTypes = CreateApplicationCommandInput | CreateConfigurationProfileCommandInput | CreateDeploymentStrategyCommandInput | CreateEnvironmentCommandInput | CreateExtensionAssociationCommandInput | CreateExtensionCommandInput | CreateHostedConfigurationVersionCommandInput | DeleteApplicationCommandInput | DeleteConfigurationProfileCommandInput | DeleteDeploymentStrategyCommandInput | DeleteEnvironmentCommandInput | DeleteExtensionAssociationCommandInput | DeleteExtensionCommandInput | DeleteHostedConfigurationVersionCommandInput | GetApplicationCommandInput | GetConfigurationCommandInput | GetConfigurationProfileCommandInput | GetDeploymentCommandInput | GetDeploymentStrategyCommandInput | GetEnvironmentCommandInput | GetExtensionAssociationCommandInput | GetExtensionCommandInput | GetHostedConfigurationVersionCommandInput | ListApplicationsCommandInput | ListConfigurationProfilesCommandInput | ListDeploymentStrategiesCommandInput | ListDeploymentsCommandInput | ListEnvironmentsCommandInput | ListExtensionAssociationsCommandInput | ListExtensionsCommandInput | ListHostedConfigurationVersionsCommandInput | ListTagsForResourceCommandInput | StartDeploymentCommandInput | StopDeploymentCommandInput | TagResourceCommandInput | UntagResourceCommandInput | UpdateApplicationCommandInput | UpdateConfigurationProfileCommandInput | UpdateDeploymentStrategyCommandInput | UpdateEnvironmentCommandInput | UpdateExtensionAssociationCommandInput | UpdateExtensionCommandInput | ValidateConfigurationCommandInput;
53
+ export declare type ServiceOutputTypes = CreateApplicationCommandOutput | CreateConfigurationProfileCommandOutput | CreateDeploymentStrategyCommandOutput | CreateEnvironmentCommandOutput | CreateExtensionAssociationCommandOutput | CreateExtensionCommandOutput | CreateHostedConfigurationVersionCommandOutput | DeleteApplicationCommandOutput | DeleteConfigurationProfileCommandOutput | DeleteDeploymentStrategyCommandOutput | DeleteEnvironmentCommandOutput | DeleteExtensionAssociationCommandOutput | DeleteExtensionCommandOutput | DeleteHostedConfigurationVersionCommandOutput | GetApplicationCommandOutput | GetConfigurationCommandOutput | GetConfigurationProfileCommandOutput | GetDeploymentCommandOutput | GetDeploymentStrategyCommandOutput | GetEnvironmentCommandOutput | GetExtensionAssociationCommandOutput | GetExtensionCommandOutput | GetHostedConfigurationVersionCommandOutput | ListApplicationsCommandOutput | ListConfigurationProfilesCommandOutput | ListDeploymentStrategiesCommandOutput | ListDeploymentsCommandOutput | ListEnvironmentsCommandOutput | ListExtensionAssociationsCommandOutput | ListExtensionsCommandOutput | ListHostedConfigurationVersionsCommandOutput | ListTagsForResourceCommandOutput | StartDeploymentCommandOutput | StopDeploymentCommandOutput | TagResourceCommandOutput | UntagResourceCommandOutput | UpdateApplicationCommandOutput | UpdateConfigurationProfileCommandOutput | UpdateDeploymentStrategyCommandOutput | UpdateEnvironmentCommandOutput | UpdateExtensionAssociationCommandOutput | UpdateExtensionCommandOutput | ValidateConfigurationCommandOutput;
44
54
  export interface ClientDefaults extends Partial<__SmithyResolvedConfiguration<__HttpHandlerOptions>> {
45
55
  /**
46
56
  * The HTTP handler to use. Fetch in browser and Https in Nodejs.
@@ -159,11 +169,11 @@ declare type AppConfigClientResolvedConfigType = __SmithyResolvedConfiguration<_
159
169
  export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedConfigType {
160
170
  }
161
171
  /**
162
- * <p>Use AppConfig, a capability of Amazon Web Services Systems Manager, to create, manage, and quickly deploy
163
- * application configurations. AppConfig supports controlled deployments to applications of
164
- * any size and includes built-in validation checks and monitoring. You can use AppConfig with
165
- * applications hosted on Amazon EC2 instances, Lambda, containers, mobile applications, or IoT
166
- * devices.</p>
172
+ * <p>Use AppConfig, a capability of Amazon Web Services Systems Manager, to create, manage, and quickly
173
+ * deploy application configurations. AppConfig supports controlled deployments to
174
+ * applications of any size and includes built-in validation checks and monitoring. You can
175
+ * use AppConfig with applications hosted on Amazon EC2 instances, Lambda, containers,
176
+ * mobile applications, or IoT devices.</p>
167
177
  * <p>To prevent errors when deploying application configurations, especially for production
168
178
  * systems where a simple typo could cause an unexpected outage, AppConfig includes
169
179
  * validators. A validator provides a syntactic or semantic check to ensure that the
@@ -171,39 +181,40 @@ export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedCo
171
181
  * configuration data, you provide a schema or an Amazon Web Services Lambda function that runs against
172
182
  * the configuration. The configuration deployment or update can only proceed when the
173
183
  * configuration data is valid.</p>
174
- * <p>During a configuration deployment, AppConfig monitors the application to ensure that the
175
- * deployment is successful. If the system encounters an error, AppConfig rolls back the
176
- * change to minimize impact for your application users. You can configure a deployment
177
- * strategy for each application or environment that includes deployment criteria, including
178
- * velocity, bake time, and alarms to monitor. Similar to error monitoring, if a deployment
179
- * triggers an alarm, AppConfig automatically rolls back to the previous version. </p>
184
+ * <p>During a configuration deployment, AppConfig monitors the application to
185
+ * ensure that the deployment is successful. If the system encounters an error, AppConfig rolls back the change to minimize impact for your application users. You can
186
+ * configure a deployment strategy for each application or environment that includes
187
+ * deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error
188
+ * monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back
189
+ * to the previous version. </p>
180
190
  * <p>AppConfig supports multiple use cases. Here are some examples:</p>
181
191
  * <ul>
182
192
  * <li>
183
193
  * <p>
184
- * <b>Feature flags</b>: Use AppConfig to turn on new
185
- * features that require a timely deployment, such as a product launch or announcement.
186
- * </p>
194
+ * <b>Feature flags</b>: Use AppConfig to turn on
195
+ * new features that require a timely deployment, such as a product launch or
196
+ * announcement. </p>
187
197
  * </li>
188
198
  * <li>
189
199
  * <p>
190
- * <b>Application tuning</b>: Use AppConfig to carefully
191
- * introduce changes to your application that can only be tested with production
192
- * traffic.</p>
200
+ * <b>Application tuning</b>: Use AppConfig to
201
+ * carefully introduce changes to your application that can only be tested with
202
+ * production traffic.</p>
193
203
  * </li>
194
204
  * <li>
195
205
  * <p>
196
- * <b>Allow list</b>: Use AppConfig to allow premium
197
- * subscribers to access paid content. </p>
206
+ * <b>Allow list</b>: Use AppConfig to allow
207
+ * premium subscribers to access paid content. </p>
198
208
  * </li>
199
209
  * <li>
200
210
  * <p>
201
- * <b>Operational issues</b>: Use AppConfig to reduce
202
- * stress on your application when a dependency or other external factor impacts the
203
- * system.</p>
211
+ * <b>Operational issues</b>: Use AppConfig to
212
+ * reduce stress on your application when a dependency or other external factor impacts
213
+ * the system.</p>
204
214
  * </li>
205
215
  * </ul>
206
- * <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html">AppConfig User Guide</a>.</p>
216
+ * <p>This reference is intended to be used with the <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/what-is-appconfig.html">AppConfig User
217
+ * Guide</a>.</p>
207
218
  */
208
219
  export declare class AppConfigClient extends __Client<__HttpHandlerOptions, ServiceInputTypes, ServiceOutputTypes, AppConfigClientResolvedConfig> {
209
220
  /**
@@ -7,11 +7,11 @@ export interface CreateApplicationCommandInput extends CreateApplicationRequest
7
7
  export interface CreateApplicationCommandOutput extends Application, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates an application. An application in AppConfig is a logical unit of code that
11
- * provides capabilities for your customers. For example, an application can be a microservice
12
- * that runs on Amazon EC2 instances, a mobile application installed by your users, a serverless
13
- * application using Amazon API Gateway and Lambda, or any system you run on behalf of
14
- * others.</p>
10
+ * <p>Creates an application. In AppConfig, an application is simply an
11
+ * organizational construct like a folder. This organizational construct has a relationship
12
+ * with some unit of executable code. For example, you could create an application called
13
+ * MyMobileApp to organize and manage configuration data for a mobile application installed by
14
+ * your users.</p>
15
15
  * @example
16
16
  * Use a bare-bones client and the command you need to make an API call.
17
17
  * ```javascript
@@ -7,10 +7,9 @@ export interface CreateConfigurationProfileCommandInput extends CreateConfigurat
7
7
  export interface CreateConfigurationProfileCommandOutput extends ConfigurationProfile, __MetadataBearer {
8
8
  }
9
9
  /**
10
- * <p>Creates a configuration profile, which is information that enables AppConfig to access
11
- * the configuration source. Valid configuration sources include the AppConfig hosted
12
- * configuration store, Amazon Web Services Systems Manager (SSM) documents, SSM Parameter Store parameters, Amazon S3
13
- * objects, or any <a href="http://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source">integration source
10
+ * <p>Creates a configuration profile, which is information that enables AppConfig
11
+ * to access the configuration source. Valid configuration sources include the AppConfig hosted configuration store, Amazon Web Services Systems Manager (SSM) documents, SSM Parameter Store
12
+ * parameters, Amazon S3 objects, or any <a href="http://docs.aws.amazon.com/codepipeline/latest/userguide/integrations-action-type.html#integrations-source">integration source
14
13
  * action</a> supported by CodePipeline. A configuration profile includes the following
15
14
  * information:</p>
16
15
  *
@@ -27,8 +26,8 @@ export interface CreateConfigurationProfileCommandOutput extends ConfigurationPr
27
26
  * </li>
28
27
  * </ul>
29
28
  * <p>For more information, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-and-profile.html">Create a
30
- * Configuration and a Configuration Profile</a> in the <i>AppConfig User
31
- * Guide</i>.</p>
29
+ * Configuration and a Configuration Profile</a> in the <i>AppConfig
30
+ * User Guide</i>.</p>
32
31
  * @example
33
32
  * Use a bare-bones client and the command you need to make an API call.
34
33
  * ```javascript
@@ -8,7 +8,7 @@ export interface CreateEnvironmentCommandOutput extends Environment, __MetadataB
8
8
  }
9
9
  /**
10
10
  * <p>Creates an environment. For each application, you define one or more environments. An
11
- * environment is a logical deployment group of AppConfig targets, such as applications in a
11
+ * environment is a deployment group of AppConfig targets, such as applications in a
12
12
  * <code>Beta</code> or <code>Production</code> environment. You can also define
13
13
  * environments for application subcomponents such as the <code>Web</code>,
14
14
  * <code>Mobile</code> and <code>Back-end</code> components for your application. You can
@@ -0,0 +1,47 @@
1
+ import { Command as $Command } from "@aws-sdk/smithy-client";
2
+ import { Handler, HttpHandlerOptions as __HttpHandlerOptions, MetadataBearer as __MetadataBearer, MiddlewareStack } from "@aws-sdk/types";
3
+ import { AppConfigClientResolvedConfig, ServiceInputTypes, ServiceOutputTypes } from "../AppConfigClient";
4
+ import { CreateExtensionAssociationRequest, ExtensionAssociation } from "../models/models_0";
5
+ export interface CreateExtensionAssociationCommandInput extends CreateExtensionAssociationRequest {
6
+ }
7
+ export interface CreateExtensionAssociationCommandOutput extends ExtensionAssociation, __MetadataBearer {
8
+ }
9
+ /**
10
+ * <p>When you create an extension or configure an Amazon Web Services-authored extension, you
11
+ * associate the extension with an AppConfig application, environment, or
12
+ * configuration profile. For example, you can choose to run the <code>AppConfig
13
+ * deployment events to Amazon SNS</code>
14
+ * Amazon Web Services-authored extension and receive notifications on an Amazon SNS
15
+ * topic anytime a configuration deployment is started for a specific application. Defining
16
+ * which extension to associate with an AppConfig resource is called an
17
+ * <i>extension association</i>. An extension association is a specified
18
+ * relationship between an extension and an AppConfig resource, such as an
19
+ * application or a configuration profile. For more information about extensions and
20
+ * associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
21
+ * AppConfig extensions</a> in the
22
+ * <i>AppConfig User Guide</i>.</p>
23
+ * @example
24
+ * Use a bare-bones client and the command you need to make an API call.
25
+ * ```javascript
26
+ * import { AppConfigClient, CreateExtensionAssociationCommand } from "@aws-sdk/client-appconfig"; // ES Modules import
27
+ * // const { AppConfigClient, CreateExtensionAssociationCommand } = require("@aws-sdk/client-appconfig"); // CommonJS import
28
+ * const client = new AppConfigClient(config);
29
+ * const command = new CreateExtensionAssociationCommand(input);
30
+ * const response = await client.send(command);
31
+ * ```
32
+ *
33
+ * @see {@link CreateExtensionAssociationCommandInput} for command's `input` shape.
34
+ * @see {@link CreateExtensionAssociationCommandOutput} for command's `response` shape.
35
+ * @see {@link AppConfigClientResolvedConfig | config} for AppConfigClient's `config` shape.
36
+ *
37
+ */
38
+ export declare class CreateExtensionAssociationCommand extends $Command<CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput, AppConfigClientResolvedConfig> {
39
+ readonly input: CreateExtensionAssociationCommandInput;
40
+ constructor(input: CreateExtensionAssociationCommandInput);
41
+ /**
42
+ * @internal
43
+ */
44
+ resolveMiddleware(clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>, configuration: AppConfigClientResolvedConfig, options?: __HttpHandlerOptions): Handler<CreateExtensionAssociationCommandInput, CreateExtensionAssociationCommandOutput>;
45
+ private serialize;
46
+ private deserialize;
47
+ }