@aws-sdk/client-appconfig 3.128.0 → 3.131.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.
- package/CHANGELOG.md +30 -0
- package/README.md +24 -23
- package/dist-cjs/AppConfig.js +150 -0
- package/dist-cjs/commands/CreateExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/CreateExtensionCommand.js +36 -0
- package/dist-cjs/commands/DeleteExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/DeleteExtensionCommand.js +36 -0
- package/dist-cjs/commands/GetExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/GetExtensionCommand.js +36 -0
- package/dist-cjs/commands/ListExtensionAssociationsCommand.js +36 -0
- package/dist-cjs/commands/ListExtensionsCommand.js +36 -0
- package/dist-cjs/commands/UpdateExtensionAssociationCommand.js +36 -0
- package/dist-cjs/commands/UpdateExtensionCommand.js +36 -0
- package/dist-cjs/commands/index.js +10 -0
- package/dist-cjs/models/models_0.js +146 -16
- package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +36 -0
- package/dist-cjs/pagination/ListExtensionsPaginator.js +36 -0
- package/dist-cjs/pagination/index.js +2 -0
- package/dist-cjs/protocols/Aws_restJson1.js +1107 -38
- package/dist-es/AppConfig.js +150 -0
- package/dist-es/commands/CreateExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/CreateExtensionCommand.js +39 -0
- package/dist-es/commands/DeleteExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/DeleteExtensionCommand.js +39 -0
- package/dist-es/commands/GetExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/GetExtensionCommand.js +39 -0
- package/dist-es/commands/ListExtensionAssociationsCommand.js +39 -0
- package/dist-es/commands/ListExtensionsCommand.js +39 -0
- package/dist-es/commands/UpdateExtensionAssociationCommand.js +39 -0
- package/dist-es/commands/UpdateExtensionCommand.js +39 -0
- package/dist-es/commands/index.js +10 -0
- package/dist-es/models/models_0.js +103 -13
- package/dist-es/pagination/ListExtensionAssociationsPaginator.js +75 -0
- package/dist-es/pagination/ListExtensionsPaginator.js +75 -0
- package/dist-es/pagination/index.js +2 -0
- package/dist-es/protocols/Aws_restJson1.js +1504 -228
- package/dist-types/AppConfig.d.ts +159 -51
- package/dist-types/AppConfigClient.d.ts +36 -25
- package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
- package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +5 -6
- package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +47 -0
- package/dist-types/commands/CreateExtensionCommand.d.ts +43 -0
- package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -1
- package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +36 -0
- package/dist-types/commands/DeleteExtensionCommand.d.ts +36 -0
- package/dist-types/commands/GetConfigurationCommand.d.ts +6 -5
- package/dist-types/commands/GetEnvironmentCommand.d.ts +6 -5
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +38 -0
- package/dist-types/commands/GetExtensionCommand.d.ts +35 -0
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +38 -0
- package/dist-types/commands/ListExtensionsCommand.d.ts +38 -0
- package/dist-types/commands/TagResourceCommand.d.ts +3 -5
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +38 -0
- package/dist-types/commands/UpdateExtensionCommand.d.ts +38 -0
- package/dist-types/commands/index.d.ts +10 -0
- package/dist-types/models/models_0.d.ts +678 -98
- package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
- package/dist-types/pagination/ListExtensionsPaginator.d.ts +4 -0
- package/dist-types/pagination/index.d.ts +2 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +30 -0
- package/dist-types/ts3.4/AppConfig.d.ts +50 -0
- package/dist-types/ts3.4/AppConfigClient.d.ts +12 -2
- package/dist-types/ts3.4/commands/CreateExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/CreateExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/DeleteExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/GetExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExtensionAssociationsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/ListExtensionsCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateExtensionAssociationCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/UpdateExtensionCommand.d.ts +17 -0
- package/dist-types/ts3.4/commands/index.d.ts +10 -0
- package/dist-types/ts3.4/models/models_0.d.ts +298 -9
- package/dist-types/ts3.4/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/ListExtensionsPaginator.d.ts +4 -0
- package/dist-types/ts3.4/pagination/index.d.ts +2 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +30 -0
- package/package.json +7 -7
|
@@ -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
|
|
38
|
-
* application configurations. AppConfig supports controlled deployments to
|
|
39
|
-
* any size and includes built-in validation checks and monitoring. You can
|
|
40
|
-
* applications hosted on Amazon EC2 instances, Lambda, containers,
|
|
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
|
|
50
|
-
* deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
51
|
-
*
|
|
52
|
-
*
|
|
53
|
-
*
|
|
54
|
-
*
|
|
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
|
|
60
|
-
* features that require a timely deployment, such as a product launch or
|
|
61
|
-
*
|
|
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
|
|
66
|
-
* introduce changes to your application that can only be tested with
|
|
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
|
|
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
|
|
77
|
-
* stress on your application when a dependency or other external factor impacts
|
|
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
|
|
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.
|
|
86
|
-
*
|
|
87
|
-
*
|
|
88
|
-
*
|
|
89
|
-
*
|
|
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
|
|
96
|
-
* the configuration source. Valid configuration sources include the AppConfig hosted
|
|
97
|
-
*
|
|
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
|
|
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
|
|
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
|
|
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
|
|
209
|
-
*
|
|
210
|
-
*
|
|
211
|
-
*
|
|
212
|
-
* You are charged each time your clients receive a
|
|
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
|
|
253
|
-
*
|
|
254
|
-
* in an <code>EU_Region</code> environment. Each configuration deployment
|
|
255
|
-
* environment. You can enable one or more Amazon CloudWatch alarms for an environment. If
|
|
256
|
-
* triggered during a deployment, AppConfig roles back the
|
|
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
|
-
*
|
|
327
|
-
*
|
|
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
|
|
163
|
-
* application configurations. AppConfig supports controlled deployments to
|
|
164
|
-
* any size and includes built-in validation checks and monitoring. You can
|
|
165
|
-
* applications hosted on Amazon EC2 instances, Lambda, containers,
|
|
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
|
|
175
|
-
* deployment is successful. If the system encounters an error, AppConfig rolls back the
|
|
176
|
-
*
|
|
177
|
-
*
|
|
178
|
-
*
|
|
179
|
-
*
|
|
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
|
|
185
|
-
* features that require a timely deployment, such as a product launch or
|
|
186
|
-
*
|
|
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
|
|
191
|
-
* introduce changes to your application that can only be tested with
|
|
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
|
|
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
|
|
202
|
-
* stress on your application when a dependency or other external factor impacts
|
|
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
|
|
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.
|
|
11
|
-
*
|
|
12
|
-
*
|
|
13
|
-
*
|
|
14
|
-
*
|
|
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
|
|
11
|
-
* the configuration source. Valid configuration sources include the AppConfig hosted
|
|
12
|
-
*
|
|
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
|
|
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
|
|
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
|
+
}
|