@aws-sdk/client-appconfig 3.525.0 → 3.529.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/README.md +134 -30
- package/dist-cjs/index.js +33 -73
- package/dist-es/protocols/Aws_restJson1.js +2 -41
- package/dist-types/AppConfig.d.ts +134 -30
- package/dist-types/AppConfigClient.d.ts +134 -30
- package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +2 -3
- package/dist-types/commands/CreateExtensionCommand.d.ts +4 -3
- package/dist-types/commands/GetExtensionAssociationCommand.d.ts +2 -3
- package/dist-types/commands/GetExtensionCommand.d.ts +1 -0
- package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +2 -3
- package/dist-types/commands/ListExtensionsCommand.d.ts +2 -3
- package/dist-types/commands/StartDeploymentCommand.d.ts +3 -0
- package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +2 -3
- package/dist-types/commands/UpdateExtensionCommand.d.ts +4 -3
- package/dist-types/index.d.ts +134 -30
- package/dist-types/models/models_0.d.ts +34 -19
- package/dist-types/ts3.4/models/models_0.d.ts +2 -0
- package/package.json +4 -4
|
@@ -305,50 +305,154 @@ export interface AppConfig {
|
|
|
305
305
|
}
|
|
306
306
|
/**
|
|
307
307
|
* @public
|
|
308
|
-
* <p>
|
|
309
|
-
*
|
|
310
|
-
*
|
|
311
|
-
*
|
|
312
|
-
*
|
|
313
|
-
*
|
|
314
|
-
*
|
|
315
|
-
*
|
|
316
|
-
*
|
|
317
|
-
*
|
|
318
|
-
*
|
|
319
|
-
*
|
|
320
|
-
* <p>
|
|
321
|
-
*
|
|
322
|
-
*
|
|
323
|
-
* deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error
|
|
324
|
-
* monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back
|
|
325
|
-
* to the previous version. </p>
|
|
326
|
-
* <p>AppConfig supports multiple use cases. Here are some examples:</p>
|
|
308
|
+
* <p>AppConfig feature flags and dynamic configurations help software builders
|
|
309
|
+
* quickly and securely adjust application behavior in production environments without full
|
|
310
|
+
* code deployments. AppConfig speeds up software release frequency, improves
|
|
311
|
+
* application resiliency, and helps you address emergent issues more quickly. With feature
|
|
312
|
+
* flags, you can gradually release new capabilities to users and measure the impact of those
|
|
313
|
+
* changes before fully deploying the new capabilities to all users. With operational flags
|
|
314
|
+
* and dynamic configurations, you can update block lists, allow lists, throttling limits,
|
|
315
|
+
* logging verbosity, and perform other operational tuning to quickly respond to issues in
|
|
316
|
+
* production environments.</p>
|
|
317
|
+
* <note>
|
|
318
|
+
* <p>AppConfig is a capability of Amazon Web Services Systems Manager.</p>
|
|
319
|
+
* </note>
|
|
320
|
+
* <p>Despite the fact that application configuration content can vary greatly from
|
|
321
|
+
* application to application, AppConfig supports the following use cases, which
|
|
322
|
+
* cover a broad spectrum of customer needs:</p>
|
|
327
323
|
* <ul>
|
|
328
324
|
* <li>
|
|
329
325
|
* <p>
|
|
330
|
-
* <b>Feature flags</b
|
|
331
|
-
*
|
|
332
|
-
*
|
|
326
|
+
* <b>Feature flags and toggles</b> - Safely release new
|
|
327
|
+
* capabilities to your customers in a controlled environment. Instantly roll back
|
|
328
|
+
* changes if you experience a problem.</p>
|
|
333
329
|
* </li>
|
|
334
330
|
* <li>
|
|
335
331
|
* <p>
|
|
336
|
-
* <b>Application tuning</b
|
|
337
|
-
*
|
|
338
|
-
* production
|
|
332
|
+
* <b>Application tuning</b> - Carefully introduce
|
|
333
|
+
* application changes while testing the impact of those changes with users in
|
|
334
|
+
* production environments.</p>
|
|
339
335
|
* </li>
|
|
340
336
|
* <li>
|
|
341
337
|
* <p>
|
|
342
|
-
* <b>Allow list</b
|
|
343
|
-
* premium
|
|
338
|
+
* <b>Allow list or block list</b> - Control access to
|
|
339
|
+
* premium features or instantly block specific users without deploying new code.
|
|
340
|
+
* </p>
|
|
344
341
|
* </li>
|
|
345
342
|
* <li>
|
|
346
343
|
* <p>
|
|
347
|
-
* <b>
|
|
348
|
-
*
|
|
349
|
-
*
|
|
344
|
+
* <b>Centralized configuration storage</b> - Keep your
|
|
345
|
+
* configuration data organized and consistent across all of your workloads. You can use
|
|
346
|
+
* AppConfig to deploy configuration data stored in the AppConfig
|
|
347
|
+
* hosted configuration store, Secrets Manager, Systems Manager, Parameter
|
|
348
|
+
* Store, or Amazon S3.</p>
|
|
350
349
|
* </li>
|
|
351
350
|
* </ul>
|
|
351
|
+
* <p>
|
|
352
|
+
* <b>How AppConfig works</b>
|
|
353
|
+
* </p>
|
|
354
|
+
* <p>This section provides a high-level description of how AppConfig works and how
|
|
355
|
+
* you get started.</p>
|
|
356
|
+
* <dl>
|
|
357
|
+
* <dt>1. Identify configuration values in code you want to manage in the cloud</dt>
|
|
358
|
+
* <dd>
|
|
359
|
+
* <p>Before you start creating AppConfig artifacts, we recommend you
|
|
360
|
+
* identify configuration data in your code that you want to dynamically manage using
|
|
361
|
+
* AppConfig. Good examples include feature flags or toggles, allow and
|
|
362
|
+
* block lists, logging verbosity, service limits, and throttling rules, to name a
|
|
363
|
+
* few.</p>
|
|
364
|
+
* <p>If your configuration data already exists in the cloud, you can take advantage
|
|
365
|
+
* of AppConfig validation, deployment, and extension features to further
|
|
366
|
+
* streamline configuration data management.</p>
|
|
367
|
+
* </dd>
|
|
368
|
+
* <dt>2. Create an application namespace</dt>
|
|
369
|
+
* <dd>
|
|
370
|
+
* <p>To create a namespace, you create an AppConfig artifact called an
|
|
371
|
+
* application. An application is simply an organizational construct like a
|
|
372
|
+
* folder.</p>
|
|
373
|
+
* </dd>
|
|
374
|
+
* <dt>3. Create environments</dt>
|
|
375
|
+
* <dd>
|
|
376
|
+
* <p>For each AppConfig application, you define one or more environments.
|
|
377
|
+
* An environment is a logical grouping of targets, such as applications in a
|
|
378
|
+
* <code>Beta</code> or <code>Production</code> environment, Lambda functions,
|
|
379
|
+
* or containers. You can also define environments for application subcomponents,
|
|
380
|
+
* such as the <code>Web</code>, <code>Mobile</code>, and
|
|
381
|
+
* <code>Back-end</code>.</p>
|
|
382
|
+
* <p>You can configure Amazon CloudWatch alarms for each environment. The system monitors
|
|
383
|
+
* alarms during a configuration deployment. If an alarm is triggered, the system
|
|
384
|
+
* rolls back the configuration.</p>
|
|
385
|
+
* </dd>
|
|
386
|
+
* <dt>4. Create a configuration profile</dt>
|
|
387
|
+
* <dd>
|
|
388
|
+
* <p>A configuration profile includes, among other things, a URI that enables
|
|
389
|
+
* AppConfig to locate your configuration data in its stored location
|
|
390
|
+
* and a profile type. AppConfig supports two configuration profile types:
|
|
391
|
+
* feature flags and freeform configurations. Feature flag configuration profiles
|
|
392
|
+
* store their data in the AppConfig hosted configuration store and the URI
|
|
393
|
+
* is simply <code>hosted</code>. For freeform configuration profiles, you can store
|
|
394
|
+
* your data in the AppConfig hosted configuration store or any Amazon Web Services
|
|
395
|
+
* service that integrates with AppConfig, as described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-free-form-configurations-creating.html">Creating
|
|
396
|
+
* a free form configuration profile</a> in the the <i>AppConfig User Guide</i>.</p>
|
|
397
|
+
* <p>A configuration profile can also include optional validators to ensure your
|
|
398
|
+
* configuration data is syntactically and semantically correct. AppConfig
|
|
399
|
+
* performs a check using the validators when you start a deployment. If any errors
|
|
400
|
+
* are detected, the deployment rolls back to the previous configuration data.</p>
|
|
401
|
+
* </dd>
|
|
402
|
+
* <dt>5. Deploy configuration data</dt>
|
|
403
|
+
* <dd>
|
|
404
|
+
* <p>When you create a new deployment, you specify the following:</p>
|
|
405
|
+
* <ul>
|
|
406
|
+
* <li>
|
|
407
|
+
* <p>An application ID</p>
|
|
408
|
+
* </li>
|
|
409
|
+
* <li>
|
|
410
|
+
* <p>A configuration profile ID</p>
|
|
411
|
+
* </li>
|
|
412
|
+
* <li>
|
|
413
|
+
* <p>A configuration version</p>
|
|
414
|
+
* </li>
|
|
415
|
+
* <li>
|
|
416
|
+
* <p>An environment ID where you want to deploy the configuration data</p>
|
|
417
|
+
* </li>
|
|
418
|
+
* <li>
|
|
419
|
+
* <p>A deployment strategy ID that defines how fast you want the changes to
|
|
420
|
+
* take effect</p>
|
|
421
|
+
* </li>
|
|
422
|
+
* </ul>
|
|
423
|
+
* <p>When you call the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_StartDeployment.html">StartDeployment</a> API action, AppConfig performs the following
|
|
424
|
+
* tasks:</p>
|
|
425
|
+
* <ol>
|
|
426
|
+
* <li>
|
|
427
|
+
* <p>Retrieves the configuration data from the underlying data store by using
|
|
428
|
+
* the location URI in the configuration profile.</p>
|
|
429
|
+
* </li>
|
|
430
|
+
* <li>
|
|
431
|
+
* <p>Verifies the configuration data is syntactically and semantically correct
|
|
432
|
+
* by using the validators you specified when you created your configuration
|
|
433
|
+
* profile.</p>
|
|
434
|
+
* </li>
|
|
435
|
+
* <li>
|
|
436
|
+
* <p>Caches a copy of the data so it is ready to be retrieved by your
|
|
437
|
+
* application. This cached copy is called the <i>deployed
|
|
438
|
+
* data</i>.</p>
|
|
439
|
+
* </li>
|
|
440
|
+
* </ol>
|
|
441
|
+
* </dd>
|
|
442
|
+
* <dt>6. Retrieve the configuration</dt>
|
|
443
|
+
* <dd>
|
|
444
|
+
* <p>You can configure AppConfig Agent as a local host and have the agent
|
|
445
|
+
* poll AppConfig for configuration updates. The agent calls the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html">GetLatestConfiguration</a> API actions and caches your configuration data
|
|
446
|
+
* locally. To retrieve the data, your application makes an HTTP call to the
|
|
447
|
+
* localhost server. AppConfig Agent supports several use cases, as
|
|
448
|
+
* described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-simplified-methods.html">Simplified
|
|
449
|
+
* retrieval methods</a> in the the <i>AppConfig User
|
|
450
|
+
* Guide</i>.</p>
|
|
451
|
+
* <p>If AppConfig Agent isn't supported for your use case, you can
|
|
452
|
+
* configure your application to poll AppConfig for configuration updates
|
|
453
|
+
* by directly calling the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html">GetLatestConfiguration</a> API actions. </p>
|
|
454
|
+
* </dd>
|
|
455
|
+
* </dl>
|
|
352
456
|
* <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
|
|
353
457
|
* Guide</a>.</p>
|
|
354
458
|
*/
|
|
@@ -195,50 +195,154 @@ export interface AppConfigClientResolvedConfig extends AppConfigClientResolvedCo
|
|
|
195
195
|
}
|
|
196
196
|
/**
|
|
197
197
|
* @public
|
|
198
|
-
* <p>
|
|
199
|
-
*
|
|
200
|
-
*
|
|
201
|
-
*
|
|
202
|
-
*
|
|
203
|
-
*
|
|
204
|
-
*
|
|
205
|
-
*
|
|
206
|
-
*
|
|
207
|
-
*
|
|
208
|
-
*
|
|
209
|
-
*
|
|
210
|
-
* <p>
|
|
211
|
-
*
|
|
212
|
-
*
|
|
213
|
-
* deployment criteria, including velocity, bake time, and alarms to monitor. Similar to error
|
|
214
|
-
* monitoring, if a deployment triggers an alarm, AppConfig automatically rolls back
|
|
215
|
-
* to the previous version. </p>
|
|
216
|
-
* <p>AppConfig supports multiple use cases. Here are some examples:</p>
|
|
198
|
+
* <p>AppConfig feature flags and dynamic configurations help software builders
|
|
199
|
+
* quickly and securely adjust application behavior in production environments without full
|
|
200
|
+
* code deployments. AppConfig speeds up software release frequency, improves
|
|
201
|
+
* application resiliency, and helps you address emergent issues more quickly. With feature
|
|
202
|
+
* flags, you can gradually release new capabilities to users and measure the impact of those
|
|
203
|
+
* changes before fully deploying the new capabilities to all users. With operational flags
|
|
204
|
+
* and dynamic configurations, you can update block lists, allow lists, throttling limits,
|
|
205
|
+
* logging verbosity, and perform other operational tuning to quickly respond to issues in
|
|
206
|
+
* production environments.</p>
|
|
207
|
+
* <note>
|
|
208
|
+
* <p>AppConfig is a capability of Amazon Web Services Systems Manager.</p>
|
|
209
|
+
* </note>
|
|
210
|
+
* <p>Despite the fact that application configuration content can vary greatly from
|
|
211
|
+
* application to application, AppConfig supports the following use cases, which
|
|
212
|
+
* cover a broad spectrum of customer needs:</p>
|
|
217
213
|
* <ul>
|
|
218
214
|
* <li>
|
|
219
215
|
* <p>
|
|
220
|
-
* <b>Feature flags</b
|
|
221
|
-
*
|
|
222
|
-
*
|
|
216
|
+
* <b>Feature flags and toggles</b> - Safely release new
|
|
217
|
+
* capabilities to your customers in a controlled environment. Instantly roll back
|
|
218
|
+
* changes if you experience a problem.</p>
|
|
223
219
|
* </li>
|
|
224
220
|
* <li>
|
|
225
221
|
* <p>
|
|
226
|
-
* <b>Application tuning</b
|
|
227
|
-
*
|
|
228
|
-
* production
|
|
222
|
+
* <b>Application tuning</b> - Carefully introduce
|
|
223
|
+
* application changes while testing the impact of those changes with users in
|
|
224
|
+
* production environments.</p>
|
|
229
225
|
* </li>
|
|
230
226
|
* <li>
|
|
231
227
|
* <p>
|
|
232
|
-
* <b>Allow list</b
|
|
233
|
-
* premium
|
|
228
|
+
* <b>Allow list or block list</b> - Control access to
|
|
229
|
+
* premium features or instantly block specific users without deploying new code.
|
|
230
|
+
* </p>
|
|
234
231
|
* </li>
|
|
235
232
|
* <li>
|
|
236
233
|
* <p>
|
|
237
|
-
* <b>
|
|
238
|
-
*
|
|
239
|
-
*
|
|
234
|
+
* <b>Centralized configuration storage</b> - Keep your
|
|
235
|
+
* configuration data organized and consistent across all of your workloads. You can use
|
|
236
|
+
* AppConfig to deploy configuration data stored in the AppConfig
|
|
237
|
+
* hosted configuration store, Secrets Manager, Systems Manager, Parameter
|
|
238
|
+
* Store, or Amazon S3.</p>
|
|
240
239
|
* </li>
|
|
241
240
|
* </ul>
|
|
241
|
+
* <p>
|
|
242
|
+
* <b>How AppConfig works</b>
|
|
243
|
+
* </p>
|
|
244
|
+
* <p>This section provides a high-level description of how AppConfig works and how
|
|
245
|
+
* you get started.</p>
|
|
246
|
+
* <dl>
|
|
247
|
+
* <dt>1. Identify configuration values in code you want to manage in the cloud</dt>
|
|
248
|
+
* <dd>
|
|
249
|
+
* <p>Before you start creating AppConfig artifacts, we recommend you
|
|
250
|
+
* identify configuration data in your code that you want to dynamically manage using
|
|
251
|
+
* AppConfig. Good examples include feature flags or toggles, allow and
|
|
252
|
+
* block lists, logging verbosity, service limits, and throttling rules, to name a
|
|
253
|
+
* few.</p>
|
|
254
|
+
* <p>If your configuration data already exists in the cloud, you can take advantage
|
|
255
|
+
* of AppConfig validation, deployment, and extension features to further
|
|
256
|
+
* streamline configuration data management.</p>
|
|
257
|
+
* </dd>
|
|
258
|
+
* <dt>2. Create an application namespace</dt>
|
|
259
|
+
* <dd>
|
|
260
|
+
* <p>To create a namespace, you create an AppConfig artifact called an
|
|
261
|
+
* application. An application is simply an organizational construct like a
|
|
262
|
+
* folder.</p>
|
|
263
|
+
* </dd>
|
|
264
|
+
* <dt>3. Create environments</dt>
|
|
265
|
+
* <dd>
|
|
266
|
+
* <p>For each AppConfig application, you define one or more environments.
|
|
267
|
+
* An environment is a logical grouping of targets, such as applications in a
|
|
268
|
+
* <code>Beta</code> or <code>Production</code> environment, Lambda functions,
|
|
269
|
+
* or containers. You can also define environments for application subcomponents,
|
|
270
|
+
* such as the <code>Web</code>, <code>Mobile</code>, and
|
|
271
|
+
* <code>Back-end</code>.</p>
|
|
272
|
+
* <p>You can configure Amazon CloudWatch alarms for each environment. The system monitors
|
|
273
|
+
* alarms during a configuration deployment. If an alarm is triggered, the system
|
|
274
|
+
* rolls back the configuration.</p>
|
|
275
|
+
* </dd>
|
|
276
|
+
* <dt>4. Create a configuration profile</dt>
|
|
277
|
+
* <dd>
|
|
278
|
+
* <p>A configuration profile includes, among other things, a URI that enables
|
|
279
|
+
* AppConfig to locate your configuration data in its stored location
|
|
280
|
+
* and a profile type. AppConfig supports two configuration profile types:
|
|
281
|
+
* feature flags and freeform configurations. Feature flag configuration profiles
|
|
282
|
+
* store their data in the AppConfig hosted configuration store and the URI
|
|
283
|
+
* is simply <code>hosted</code>. For freeform configuration profiles, you can store
|
|
284
|
+
* your data in the AppConfig hosted configuration store or any Amazon Web Services
|
|
285
|
+
* service that integrates with AppConfig, as described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-free-form-configurations-creating.html">Creating
|
|
286
|
+
* a free form configuration profile</a> in the the <i>AppConfig User Guide</i>.</p>
|
|
287
|
+
* <p>A configuration profile can also include optional validators to ensure your
|
|
288
|
+
* configuration data is syntactically and semantically correct. AppConfig
|
|
289
|
+
* performs a check using the validators when you start a deployment. If any errors
|
|
290
|
+
* are detected, the deployment rolls back to the previous configuration data.</p>
|
|
291
|
+
* </dd>
|
|
292
|
+
* <dt>5. Deploy configuration data</dt>
|
|
293
|
+
* <dd>
|
|
294
|
+
* <p>When you create a new deployment, you specify the following:</p>
|
|
295
|
+
* <ul>
|
|
296
|
+
* <li>
|
|
297
|
+
* <p>An application ID</p>
|
|
298
|
+
* </li>
|
|
299
|
+
* <li>
|
|
300
|
+
* <p>A configuration profile ID</p>
|
|
301
|
+
* </li>
|
|
302
|
+
* <li>
|
|
303
|
+
* <p>A configuration version</p>
|
|
304
|
+
* </li>
|
|
305
|
+
* <li>
|
|
306
|
+
* <p>An environment ID where you want to deploy the configuration data</p>
|
|
307
|
+
* </li>
|
|
308
|
+
* <li>
|
|
309
|
+
* <p>A deployment strategy ID that defines how fast you want the changes to
|
|
310
|
+
* take effect</p>
|
|
311
|
+
* </li>
|
|
312
|
+
* </ul>
|
|
313
|
+
* <p>When you call the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_StartDeployment.html">StartDeployment</a> API action, AppConfig performs the following
|
|
314
|
+
* tasks:</p>
|
|
315
|
+
* <ol>
|
|
316
|
+
* <li>
|
|
317
|
+
* <p>Retrieves the configuration data from the underlying data store by using
|
|
318
|
+
* the location URI in the configuration profile.</p>
|
|
319
|
+
* </li>
|
|
320
|
+
* <li>
|
|
321
|
+
* <p>Verifies the configuration data is syntactically and semantically correct
|
|
322
|
+
* by using the validators you specified when you created your configuration
|
|
323
|
+
* profile.</p>
|
|
324
|
+
* </li>
|
|
325
|
+
* <li>
|
|
326
|
+
* <p>Caches a copy of the data so it is ready to be retrieved by your
|
|
327
|
+
* application. This cached copy is called the <i>deployed
|
|
328
|
+
* data</i>.</p>
|
|
329
|
+
* </li>
|
|
330
|
+
* </ol>
|
|
331
|
+
* </dd>
|
|
332
|
+
* <dt>6. Retrieve the configuration</dt>
|
|
333
|
+
* <dd>
|
|
334
|
+
* <p>You can configure AppConfig Agent as a local host and have the agent
|
|
335
|
+
* poll AppConfig for configuration updates. The agent calls the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html">GetLatestConfiguration</a> API actions and caches your configuration data
|
|
336
|
+
* locally. To retrieve the data, your application makes an HTTP call to the
|
|
337
|
+
* localhost server. AppConfig Agent supports several use cases, as
|
|
338
|
+
* described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-simplified-methods.html">Simplified
|
|
339
|
+
* retrieval methods</a> in the the <i>AppConfig User
|
|
340
|
+
* Guide</i>.</p>
|
|
341
|
+
* <p>If AppConfig Agent isn't supported for your use case, you can
|
|
342
|
+
* configure your application to poll AppConfig for configuration updates
|
|
343
|
+
* by directly calling the <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_StartConfigurationSession.html">StartConfigurationSession</a> and <a href="https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/API_appconfigdata_GetLatestConfiguration.html">GetLatestConfiguration</a> API actions. </p>
|
|
344
|
+
* </dd>
|
|
345
|
+
* </dl>
|
|
242
346
|
* <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
|
|
243
347
|
* Guide</a>.</p>
|
|
244
348
|
*/
|
|
@@ -36,9 +36,8 @@ declare const CreateExtensionAssociationCommand_base: {
|
|
|
36
36
|
* <i>extension association</i>. An extension association is a specified
|
|
37
37
|
* relationship between an extension and an AppConfig resource, such as an
|
|
38
38
|
* application or a configuration profile. For more information about extensions and
|
|
39
|
-
* associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
40
|
-
*
|
|
41
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
39
|
+
* associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
40
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
42
41
|
* @example
|
|
43
42
|
* Use a bare-bones client and the command you need to make an API call.
|
|
44
43
|
* ```javascript
|
|
@@ -48,9 +48,8 @@ declare const CreateExtensionCommand_base: {
|
|
|
48
48
|
* message queue in the <code>Uri</code> field. </p>
|
|
49
49
|
* </li>
|
|
50
50
|
* </ul>
|
|
51
|
-
* <p>For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
52
|
-
*
|
|
53
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
51
|
+
* <p>For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
52
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
54
53
|
* @example
|
|
55
54
|
* Use a bare-bones client and the command you need to make an API call.
|
|
56
55
|
* ```javascript
|
|
@@ -74,6 +73,7 @@ declare const CreateExtensionCommand_base: {
|
|
|
74
73
|
* "<keys>": { // Parameter
|
|
75
74
|
* Description: "STRING_VALUE",
|
|
76
75
|
* Required: true || false,
|
|
76
|
+
* Dynamic: true || false,
|
|
77
77
|
* },
|
|
78
78
|
* },
|
|
79
79
|
* Tags: { // TagMap
|
|
@@ -103,6 +103,7 @@ declare const CreateExtensionCommand_base: {
|
|
|
103
103
|
* // "<keys>": { // Parameter
|
|
104
104
|
* // Description: "STRING_VALUE",
|
|
105
105
|
* // Required: true || false,
|
|
106
|
+
* // Dynamic: true || false,
|
|
106
107
|
* // },
|
|
107
108
|
* // },
|
|
108
109
|
* // };
|
|
@@ -27,9 +27,8 @@ declare const GetExtensionAssociationCommand_base: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Returns information about an AppConfig extension association. For more
|
|
30
|
-
* information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
31
|
-
*
|
|
32
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
30
|
+
* information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
31
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -27,9 +27,8 @@ declare const ListExtensionAssociationsCommand_base: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Lists all AppConfig extension associations in the account. For more
|
|
30
|
-
* information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
31
|
-
*
|
|
32
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
30
|
+
* information about extensions and associations, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
31
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -27,9 +27,8 @@ declare const ListExtensionsCommand_base: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Lists all custom and Amazon Web Services authored AppConfig extensions in the
|
|
30
|
-
* account. For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
31
|
-
*
|
|
32
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
30
|
+
* account. For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
31
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -44,6 +44,9 @@ declare const StartDeploymentCommand_base: {
|
|
|
44
44
|
* "<keys>": "STRING_VALUE",
|
|
45
45
|
* },
|
|
46
46
|
* KmsKeyIdentifier: "STRING_VALUE",
|
|
47
|
+
* DynamicExtensionParameters: { // DynamicParameterMap
|
|
48
|
+
* "<keys>": "STRING_VALUE",
|
|
49
|
+
* },
|
|
47
50
|
* };
|
|
48
51
|
* const command = new StartDeploymentCommand(input);
|
|
49
52
|
* const response = await client.send(command);
|
|
@@ -27,9 +27,8 @@ declare const UpdateExtensionAssociationCommand_base: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Updates an association. For more information about extensions and associations, see
|
|
30
|
-
* <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
31
|
-
*
|
|
32
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
30
|
+
* <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
31
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -27,9 +27,8 @@ declare const UpdateExtensionCommand_base: {
|
|
|
27
27
|
/**
|
|
28
28
|
* @public
|
|
29
29
|
* <p>Updates an AppConfig extension. For more information about extensions, see
|
|
30
|
-
* <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">
|
|
31
|
-
*
|
|
32
|
-
* <i>AppConfig User Guide</i>.</p>
|
|
30
|
+
* <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Extending
|
|
31
|
+
* workflows</a> in the <i>AppConfig User Guide</i>.</p>
|
|
33
32
|
* @example
|
|
34
33
|
* Use a bare-bones client and the command you need to make an API call.
|
|
35
34
|
* ```javascript
|
|
@@ -53,6 +52,7 @@ declare const UpdateExtensionCommand_base: {
|
|
|
53
52
|
* "<keys>": { // Parameter
|
|
54
53
|
* Description: "STRING_VALUE",
|
|
55
54
|
* Required: true || false,
|
|
55
|
+
* Dynamic: true || false,
|
|
56
56
|
* },
|
|
57
57
|
* },
|
|
58
58
|
* VersionNumber: Number("int"),
|
|
@@ -79,6 +79,7 @@ declare const UpdateExtensionCommand_base: {
|
|
|
79
79
|
* // "<keys>": { // Parameter
|
|
80
80
|
* // Description: "STRING_VALUE",
|
|
81
81
|
* // Required: true || false,
|
|
82
|
+
* // Dynamic: true || false,
|
|
82
83
|
* // },
|
|
83
84
|
* // },
|
|
84
85
|
* // };
|