@aws-sdk/client-appconfig 3.128.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 (80) hide show
  1. package/CHANGELOG.md +11 -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/models/models_0.js +146 -16
  16. package/dist-cjs/pagination/ListExtensionAssociationsPaginator.js +36 -0
  17. package/dist-cjs/pagination/ListExtensionsPaginator.js +36 -0
  18. package/dist-cjs/pagination/index.js +2 -0
  19. package/dist-cjs/protocols/Aws_restJson1.js +1105 -39
  20. package/dist-es/AppConfig.js +150 -0
  21. package/dist-es/commands/CreateExtensionAssociationCommand.js +39 -0
  22. package/dist-es/commands/CreateExtensionCommand.js +39 -0
  23. package/dist-es/commands/DeleteExtensionAssociationCommand.js +39 -0
  24. package/dist-es/commands/DeleteExtensionCommand.js +39 -0
  25. package/dist-es/commands/GetExtensionAssociationCommand.js +39 -0
  26. package/dist-es/commands/GetExtensionCommand.js +39 -0
  27. package/dist-es/commands/ListExtensionAssociationsCommand.js +39 -0
  28. package/dist-es/commands/ListExtensionsCommand.js +39 -0
  29. package/dist-es/commands/UpdateExtensionAssociationCommand.js +39 -0
  30. package/dist-es/commands/UpdateExtensionCommand.js +39 -0
  31. package/dist-es/commands/index.js +10 -0
  32. package/dist-es/models/models_0.js +103 -13
  33. package/dist-es/pagination/ListExtensionAssociationsPaginator.js +75 -0
  34. package/dist-es/pagination/ListExtensionsPaginator.js +75 -0
  35. package/dist-es/pagination/index.js +2 -0
  36. package/dist-es/protocols/Aws_restJson1.js +1501 -228
  37. package/dist-types/AppConfig.d.ts +159 -51
  38. package/dist-types/AppConfigClient.d.ts +36 -25
  39. package/dist-types/commands/CreateApplicationCommand.d.ts +5 -5
  40. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +5 -6
  41. package/dist-types/commands/CreateEnvironmentCommand.d.ts +1 -1
  42. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +47 -0
  43. package/dist-types/commands/CreateExtensionCommand.d.ts +43 -0
  44. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +2 -1
  45. package/dist-types/commands/DeleteExtensionAssociationCommand.d.ts +36 -0
  46. package/dist-types/commands/DeleteExtensionCommand.d.ts +36 -0
  47. package/dist-types/commands/GetConfigurationCommand.d.ts +6 -5
  48. package/dist-types/commands/GetEnvironmentCommand.d.ts +6 -5
  49. package/dist-types/commands/GetExtensionAssociationCommand.d.ts +38 -0
  50. package/dist-types/commands/GetExtensionCommand.d.ts +35 -0
  51. package/dist-types/commands/ListExtensionAssociationsCommand.d.ts +38 -0
  52. package/dist-types/commands/ListExtensionsCommand.d.ts +38 -0
  53. package/dist-types/commands/TagResourceCommand.d.ts +3 -5
  54. package/dist-types/commands/UpdateExtensionAssociationCommand.d.ts +38 -0
  55. package/dist-types/commands/UpdateExtensionCommand.d.ts +38 -0
  56. package/dist-types/commands/index.d.ts +10 -0
  57. package/dist-types/models/models_0.d.ts +678 -98
  58. package/dist-types/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  59. package/dist-types/pagination/ListExtensionsPaginator.d.ts +4 -0
  60. package/dist-types/pagination/index.d.ts +2 -0
  61. package/dist-types/protocols/Aws_restJson1.d.ts +30 -0
  62. package/dist-types/ts3.4/AppConfig.d.ts +50 -0
  63. package/dist-types/ts3.4/AppConfigClient.d.ts +12 -2
  64. package/dist-types/ts3.4/commands/CreateExtensionAssociationCommand.d.ts +17 -0
  65. package/dist-types/ts3.4/commands/CreateExtensionCommand.d.ts +17 -0
  66. package/dist-types/ts3.4/commands/DeleteExtensionAssociationCommand.d.ts +17 -0
  67. package/dist-types/ts3.4/commands/DeleteExtensionCommand.d.ts +17 -0
  68. package/dist-types/ts3.4/commands/GetExtensionAssociationCommand.d.ts +17 -0
  69. package/dist-types/ts3.4/commands/GetExtensionCommand.d.ts +17 -0
  70. package/dist-types/ts3.4/commands/ListExtensionAssociationsCommand.d.ts +17 -0
  71. package/dist-types/ts3.4/commands/ListExtensionsCommand.d.ts +17 -0
  72. package/dist-types/ts3.4/commands/UpdateExtensionAssociationCommand.d.ts +17 -0
  73. package/dist-types/ts3.4/commands/UpdateExtensionCommand.d.ts +17 -0
  74. package/dist-types/ts3.4/commands/index.d.ts +10 -0
  75. package/dist-types/ts3.4/models/models_0.d.ts +298 -9
  76. package/dist-types/ts3.4/pagination/ListExtensionAssociationsPaginator.d.ts +4 -0
  77. package/dist-types/ts3.4/pagination/ListExtensionsPaginator.d.ts +4 -0
  78. package/dist-types/ts3.4/pagination/index.d.ts +2 -0
  79. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +30 -0
  80. package/package.json +1 -1
@@ -1,5 +1,126 @@
1
1
  import { ExceptionOptionType as __ExceptionOptionType } from "@aws-sdk/smithy-client";
2
2
  import { AppConfigServiceException as __BaseException } from "./AppConfigServiceException";
3
+ /**
4
+ * <p>An action defines the tasks the extension performs during the AppConfig
5
+ * workflow. Each action includes an action point such as
6
+ * <code>ON_CREATE_HOSTED_CONFIGURATION</code>, <code>PRE_DEPLOYMENT</code>, or
7
+ * <code>ON_DEPLOYMENT</code>. Each action also includes a name, a URI to an Lambda function, and an Amazon Resource Name (ARN) for an Identity and Access Management
8
+ * assume role. You specify the name, URI, and ARN for each <i>action point</i>
9
+ * defined in the extension. You can specify the following actions for an extension:</p>
10
+ * <ul>
11
+ * <li>
12
+ * <p>
13
+ * <code>PRE_CREATE_HOSTED_CONFIGURATION_VERSION</code>
14
+ * </p>
15
+ * </li>
16
+ * <li>
17
+ * <p>
18
+ * <code>PRE_START_DEPLOYMENT</code>
19
+ * </p>
20
+ * </li>
21
+ * <li>
22
+ * <p>
23
+ * <code>ON_DEPLOYMENT_START</code>
24
+ * </p>
25
+ * </li>
26
+ * <li>
27
+ * <p>
28
+ * <code>ON_DEPLOYMENT_STEP</code>
29
+ * </p>
30
+ * </li>
31
+ * <li>
32
+ * <p>
33
+ * <code>ON_DEPLOYMENT_BAKING</code>
34
+ * </p>
35
+ * </li>
36
+ * <li>
37
+ * <p>
38
+ * <code>ON_DEPLOYMENT_COMPLETE</code>
39
+ * </p>
40
+ * </li>
41
+ * <li>
42
+ * <p>
43
+ * <code>ON_DEPLOYMENT_ROLLED_BACK</code>
44
+ * </p>
45
+ * </li>
46
+ * </ul>
47
+ */
48
+ export interface Action {
49
+ /**
50
+ * <p>The action name.</p>
51
+ */
52
+ Name?: string;
53
+ /**
54
+ * <p>Information about the action.</p>
55
+ */
56
+ Description?: string;
57
+ /**
58
+ * <p>The extension URI associated to the action point in the extension definition. The URI
59
+ * can be an Amazon Resource Name (ARN) for one of the following: an Lambda
60
+ * function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.</p>
61
+ */
62
+ Uri?: string;
63
+ /**
64
+ * <p>An Amazon Resource Name (ARN) for an Identity and Access Management assume role.</p>
65
+ */
66
+ RoleArn?: string;
67
+ }
68
+ export declare namespace Action {
69
+ /**
70
+ * @internal
71
+ */
72
+ const filterSensitiveLog: (obj: Action) => any;
73
+ }
74
+ /**
75
+ * <p>An extension that was invoked as part of a deployment event.</p>
76
+ */
77
+ export interface ActionInvocation {
78
+ /**
79
+ * <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
80
+ */
81
+ ExtensionIdentifier?: string;
82
+ /**
83
+ * <p>The name of the action.</p>
84
+ */
85
+ ActionName?: string;
86
+ /**
87
+ * <p>The extension URI associated to the action point in the extension definition. The URI
88
+ * can be an Amazon Resource Name (ARN) for one of the following: an Lambda
89
+ * function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.</p>
90
+ */
91
+ Uri?: string;
92
+ /**
93
+ * <p>An Amazon Resource Name (ARN) for an Identity and Access Management assume role.</p>
94
+ */
95
+ RoleArn?: string;
96
+ /**
97
+ * <p>The error message when an extension invocation fails.</p>
98
+ */
99
+ ErrorMessage?: string;
100
+ /**
101
+ * <p>The error code when an extension invocation fails.</p>
102
+ */
103
+ ErrorCode?: string;
104
+ /**
105
+ * <p>A system-generated ID for this invocation.</p>
106
+ */
107
+ InvocationId?: string;
108
+ }
109
+ export declare namespace ActionInvocation {
110
+ /**
111
+ * @internal
112
+ */
113
+ const filterSensitiveLog: (obj: ActionInvocation) => any;
114
+ }
115
+ export declare enum ActionPoint {
116
+ ON_DEPLOYMENT_BAKING = "ON_DEPLOYMENT_BAKING",
117
+ ON_DEPLOYMENT_COMPLETE = "ON_DEPLOYMENT_COMPLETE",
118
+ ON_DEPLOYMENT_ROLLED_BACK = "ON_DEPLOYMENT_ROLLED_BACK",
119
+ ON_DEPLOYMENT_START = "ON_DEPLOYMENT_START",
120
+ ON_DEPLOYMENT_STEP = "ON_DEPLOYMENT_STEP",
121
+ PRE_CREATE_HOSTED_CONFIGURATION_VERSION = "PRE_CREATE_HOSTED_CONFIGURATION_VERSION",
122
+ PRE_START_DEPLOYMENT = "PRE_START_DEPLOYMENT"
123
+ }
3
124
  export interface Application {
4
125
  /**
5
126
  * <p>The application ID.</p>
@@ -43,6 +164,11 @@ export interface InvalidConfigurationDetail {
43
164
  * <p>The type of error for an invalid configuration.</p>
44
165
  */
45
166
  Type?: string;
167
+ /**
168
+ * <p>Details about an error with Lambda when a synchronous extension
169
+ * experiences an error during an invocation.</p>
170
+ */
171
+ Value?: string;
46
172
  }
47
173
  export declare namespace InvalidConfigurationDetail {
48
174
  /**
@@ -109,9 +235,8 @@ export interface CreateApplicationRequest {
109
235
  */
110
236
  Description?: string;
111
237
  /**
112
- * <p>Metadata to assign to the application. Tags help organize and categorize your AppConfig
113
- * resources. Each tag consists of a key and an optional value, both of which you
114
- * define.</p>
238
+ * <p>Metadata to assign to the application. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which
239
+ * you define.</p>
115
240
  */
116
241
  Tags?: Record<string, string>;
117
242
  }
@@ -147,7 +272,7 @@ export declare enum ValidatorType {
147
272
  export interface Validator {
148
273
  /**
149
274
  * <p>AppConfig supports validators of type <code>JSON_SCHEMA</code> and
150
- * <code>LAMBDA</code>
275
+ * <code>LAMBDA</code>
151
276
  * </p>
152
277
  */
153
278
  Type: ValidatorType | string | undefined;
@@ -194,11 +319,11 @@ export interface ConfigurationProfile {
194
319
  */
195
320
  Validators?: Validator[];
196
321
  /**
197
- * <p>The type of configurations contained in the profile. AppConfig supports <code>feature
198
- * flags</code> and <code>freeform</code> configurations. We recommend you create feature
199
- * flag configurations to enable or disable new features and freeform configurations to
200
- * distribute configurations to an application. When calling this API, enter one of the
201
- * following values for <code>Type</code>:</p>
322
+ * <p>The type of configurations contained in the profile. AppConfig supports
323
+ * <code>feature flags</code> and <code>freeform</code> configurations. We recommend you
324
+ * create feature flag configurations to enable or disable new features and freeform
325
+ * configurations to distribute configurations to an application. When calling this API, enter
326
+ * one of the following values for <code>Type</code>:</p>
202
327
  * <p>
203
328
  * <code>AWS.AppConfig.FeatureFlags</code>
204
329
  * </p>
@@ -228,10 +353,10 @@ export interface CreateConfigurationProfileRequest {
228
353
  */
229
354
  Description?: string;
230
355
  /**
231
- * <p>A URI to locate the configuration. You can specify the AppConfig hosted configuration
232
- * store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3 object. For the
233
- * hosted configuration store and for feature flags, specify <code>hosted</code>. For an SSM
234
- * document, specify either the document name in the format
356
+ * <p>A URI to locate the configuration. You can specify the AppConfig hosted
357
+ * configuration store, Systems Manager (SSM) document, an SSM Parameter Store parameter, or an Amazon S3
358
+ * object. For the hosted configuration store and for feature flags, specify
359
+ * <code>hosted</code>. For an SSM document, specify either the document name in the format
235
360
  * <code>ssm-document://<Document_name></code> or the Amazon Resource Name (ARN). For
236
361
  * a parameter, specify either the parameter name in the format
237
362
  * <code>ssm-parameter://<Parameter_name></code> or the ARN. For an Amazon S3 object,
@@ -245,9 +370,8 @@ export interface CreateConfigurationProfileRequest {
245
370
  * <p>The ARN of an IAM role with permission to access the configuration at the specified
246
371
  * <code>LocationUri</code>.</p>
247
372
  * <important>
248
- * <p>A retrieval role ARN is not required for configurations stored in the AppConfig
249
- * hosted configuration store. It is required for all other sources that store your
250
- * configuration. </p>
373
+ * <p>A retrieval role ARN is not required for configurations stored in the AppConfig hosted configuration store. It is required for all other sources that
374
+ * store your configuration. </p>
251
375
  * </important>
252
376
  */
253
377
  RetrievalRoleArn?: string;
@@ -257,16 +381,16 @@ export interface CreateConfigurationProfileRequest {
257
381
  Validators?: Validator[];
258
382
  /**
259
383
  * <p>Metadata to assign to the configuration profile. Tags help organize and categorize your
260
- * AppConfig resources. Each tag consists of a key and an optional value, both of which you
261
- * define.</p>
384
+ * AppConfig resources. Each tag consists of a key and an optional value, both of
385
+ * which you define.</p>
262
386
  */
263
387
  Tags?: Record<string, string>;
264
388
  /**
265
- * <p>The type of configurations contained in the profile. AppConfig supports <code>feature
266
- * flags</code> and <code>freeform</code> configurations. We recommend you create feature
267
- * flag configurations to enable or disable new features and freeform configurations to
268
- * distribute configurations to an application. When calling this API, enter one of the
269
- * following values for <code>Type</code>:</p>
389
+ * <p>The type of configurations contained in the profile. AppConfig supports
390
+ * <code>feature flags</code> and <code>freeform</code> configurations. We recommend you
391
+ * create feature flag configurations to enable or disable new features and freeform
392
+ * configurations to distribute configurations to an application. When calling this API, enter
393
+ * one of the following values for <code>Type</code>:</p>
270
394
  * <p>
271
395
  * <code>AWS.AppConfig.FeatureFlags</code>
272
396
  * </p>
@@ -317,8 +441,12 @@ export interface CreateDeploymentStrategyRequest {
317
441
  */
318
442
  DeploymentDurationInMinutes: number | undefined;
319
443
  /**
320
- * <p>The amount of time AppConfig monitors for alarms before considering the deployment to be
321
- * complete and no longer eligible for automatic roll back.</p>
444
+ * <p>Specifies the amount of time AppConfig monitors for Amazon CloudWatch alarms after the
445
+ * configuration has been deployed to 100% of its targets, before considering the deployment
446
+ * to be complete. If an alarm is triggered during this time, AppConfig rolls back
447
+ * the deployment. You must configure permissions for AppConfig to roll back based
448
+ * on CloudWatch alarms. For more information, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/getting-started-with-appconfig-cloudwatch-alarms-permissions.html">Configuring permissions for rollback based on Amazon CloudWatch alarms</a> in the
449
+ * <i>AppConfig User Guide</i>.</p>
322
450
  */
323
451
  FinalBakeTimeInMinutes?: number;
324
452
  /**
@@ -327,24 +455,24 @@ export interface CreateDeploymentStrategyRequest {
327
455
  */
328
456
  GrowthFactor: number | undefined;
329
457
  /**
330
- * <p>The algorithm used to define how percentage grows over time. AppConfig supports the
331
- * following growth types:</p>
458
+ * <p>The algorithm used to define how percentage grows over time. AppConfig
459
+ * supports the following growth types:</p>
332
460
  * <p>
333
- * <b>Linear</b>: For this type, AppConfig processes the
334
- * deployment by dividing the total number of targets by the value specified for <code>Step
335
- * percentage</code>. For example, a linear deployment that uses a <code>Step
461
+ * <b>Linear</b>: For this type, AppConfig processes
462
+ * the deployment by dividing the total number of targets by the value specified for
463
+ * <code>Step percentage</code>. For example, a linear deployment that uses a <code>Step
336
464
  * percentage</code> of 10 deploys the configuration to 10 percent of the hosts. After
337
465
  * those deployments are complete, the system deploys the configuration to the next 10
338
466
  * percent. This continues until 100% of the targets have successfully received the
339
467
  * configuration.</p>
340
468
  *
341
469
  * <p>
342
- * <b>Exponential</b>: For this type, AppConfig processes the
343
- * deployment exponentially using the following formula: <code>G*(2^N)</code>. In this
344
- * formula, <code>G</code> is the growth factor specified by the user and <code>N</code> is
345
- * the number of steps until the configuration is deployed to all targets. For example, if you
346
- * specify a growth factor of 2, then the system rolls out the configuration as
347
- * follows:</p>
470
+ * <b>Exponential</b>: For this type, AppConfig
471
+ * processes the deployment exponentially using the following formula: <code>G*(2^N)</code>.
472
+ * In this formula, <code>G</code> is the growth factor specified by the user and
473
+ * <code>N</code> is the number of steps until the configuration is deployed to all
474
+ * targets. For example, if you specify a growth factor of 2, then the system rolls out the
475
+ * configuration as follows:</p>
348
476
  * <p>
349
477
  * <code>2*(2^0)</code>
350
478
  * </p>
@@ -362,11 +490,11 @@ export interface CreateDeploymentStrategyRequest {
362
490
  /**
363
491
  * <p>Save the deployment strategy to a Systems Manager (SSM) document.</p>
364
492
  */
365
- ReplicateTo: ReplicateTo | string | undefined;
493
+ ReplicateTo?: ReplicateTo | string;
366
494
  /**
367
495
  * <p>Metadata to assign to the deployment strategy. Tags help organize and categorize your
368
- * AppConfig resources. Each tag consists of a key and an optional value, both of which you
369
- * define.</p>
496
+ * AppConfig resources. Each tag consists of a key and an optional value, both of
497
+ * which you define.</p>
370
498
  */
371
499
  Tags?: Record<string, string>;
372
500
  }
@@ -403,8 +531,8 @@ export interface DeploymentStrategy {
403
531
  */
404
532
  GrowthFactor?: number;
405
533
  /**
406
- * <p>The amount of time that AppConfig monitored for alarms before considering the deployment
407
- * to be complete and no longer eligible for automatic rollback.</p>
534
+ * <p>The amount of time that AppConfig monitored for alarms before considering the
535
+ * deployment to be complete and no longer eligible for automatic rollback.</p>
408
536
  */
409
537
  FinalBakeTimeInMinutes?: number;
410
538
  /**
@@ -427,7 +555,8 @@ export interface Monitor {
427
555
  */
428
556
  AlarmArn: string | undefined;
429
557
  /**
430
- * <p>ARN of an Identity and Access Management (IAM) role for AppConfig to monitor <code>AlarmArn</code>.</p>
558
+ * <p>ARN of an Identity and Access Management (IAM) role for AppConfig to monitor
559
+ * <code>AlarmArn</code>.</p>
431
560
  */
432
561
  AlarmRoleArn?: string;
433
562
  }
@@ -455,9 +584,8 @@ export interface CreateEnvironmentRequest {
455
584
  */
456
585
  Monitors?: Monitor[];
457
586
  /**
458
- * <p>Metadata to assign to the environment. Tags help organize and categorize your AppConfig
459
- * resources. Each tag consists of a key and an optional value, both of which you
460
- * define.</p>
587
+ * <p>Metadata to assign to the environment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which
588
+ * you define.</p>
461
589
  */
462
590
  Tags?: Record<string, string>;
463
591
  }
@@ -521,6 +649,186 @@ export declare class ConflictException extends __BaseException {
521
649
  */
522
650
  constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
523
651
  }
652
+ /**
653
+ * <p>A value such as an Amazon Resource Name (ARN) or an Amazon Simple Notification Service topic entered
654
+ * in an extension when invoked. Parameter values are specified in an extension association.
655
+ * For more information about extensions, see <a href="https://docs.aws.amazon.com/appconfig/latest/userguide/working-with-appconfig-extensions.html">Working with
656
+ * AppConfig extensions</a> in the
657
+ * <i>AppConfig User Guide</i>.</p>
658
+ */
659
+ export interface Parameter {
660
+ /**
661
+ * <p>Information about the parameter.</p>
662
+ */
663
+ Description?: string;
664
+ /**
665
+ * <p>A parameter value must be specified in the extension association.</p>
666
+ */
667
+ Required?: boolean;
668
+ }
669
+ export declare namespace Parameter {
670
+ /**
671
+ * @internal
672
+ */
673
+ const filterSensitiveLog: (obj: Parameter) => any;
674
+ }
675
+ export interface CreateExtensionRequest {
676
+ /**
677
+ * <p>A name for the extension. Each extension name in your account must be unique. Extension
678
+ * versions use the same name.</p>
679
+ */
680
+ Name: string | undefined;
681
+ /**
682
+ * <p>Information about the extension.</p>
683
+ */
684
+ Description?: string;
685
+ /**
686
+ * <p>The actions defined in the extension.</p>
687
+ */
688
+ Actions: Record<string, Action[]> | undefined;
689
+ /**
690
+ * <p>The parameters accepted by the extension. You specify parameter values when you
691
+ * associate the extension to an AppConfig resource by using the
692
+ * <code>CreateExtensionAssociation</code> API action. For Lambda extension
693
+ * actions, these parameters are included in the Lambda request object.</p>
694
+ */
695
+ Parameters?: Record<string, Parameter>;
696
+ /**
697
+ * <p>Adds one or more tags for the specified extension. Tags are metadata that help you
698
+ * categorize resources in different ways, for example, by purpose, owner, or environment.
699
+ * Each tag consists of a key and an optional value, both of which you define. </p>
700
+ */
701
+ Tags?: Record<string, string>;
702
+ /**
703
+ * <p>You can omit this field when you create an extension. When you create a new version,
704
+ * specify the most recent current version number. For example, you create version 3, enter 2
705
+ * for this field.</p>
706
+ */
707
+ LatestVersionNumber?: number;
708
+ }
709
+ export declare namespace CreateExtensionRequest {
710
+ /**
711
+ * @internal
712
+ */
713
+ const filterSensitiveLog: (obj: CreateExtensionRequest) => any;
714
+ }
715
+ export interface Extension {
716
+ /**
717
+ * <p>The system-generated ID of the extension.</p>
718
+ */
719
+ Id?: string;
720
+ /**
721
+ * <p>The extension name.</p>
722
+ */
723
+ Name?: string;
724
+ /**
725
+ * <p>The extension version number.</p>
726
+ */
727
+ VersionNumber?: number;
728
+ /**
729
+ * <p>The system-generated Amazon Resource Name (ARN) for the extension.</p>
730
+ */
731
+ Arn?: string;
732
+ /**
733
+ * <p>Information about the extension.</p>
734
+ */
735
+ Description?: string;
736
+ /**
737
+ * <p>The actions defined in the extension.</p>
738
+ */
739
+ Actions?: Record<string, Action[]>;
740
+ /**
741
+ * <p>The parameters accepted by the extension. You specify parameter values when you
742
+ * associate the extension to an AppConfig resource by using the
743
+ * <code>CreateExtensionAssociation</code> API action. For Lambda extension
744
+ * actions, these parameters are included in the Lambda request object.</p>
745
+ */
746
+ Parameters?: Record<string, Parameter>;
747
+ }
748
+ export declare namespace Extension {
749
+ /**
750
+ * @internal
751
+ */
752
+ const filterSensitiveLog: (obj: Extension) => any;
753
+ }
754
+ /**
755
+ * <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted configuration store. Delete one or more versions and try again.</p>
756
+ */
757
+ export declare class ServiceQuotaExceededException extends __BaseException {
758
+ readonly name: "ServiceQuotaExceededException";
759
+ readonly $fault: "client";
760
+ Message?: string;
761
+ /**
762
+ * @internal
763
+ */
764
+ constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
765
+ }
766
+ export interface CreateExtensionAssociationRequest {
767
+ /**
768
+ * <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
769
+ */
770
+ ExtensionIdentifier: string | undefined;
771
+ /**
772
+ * <p>The version number of the extension. If not specified, AppConfig uses the
773
+ * maximum version of the extension.</p>
774
+ */
775
+ ExtensionVersionNumber?: number;
776
+ /**
777
+ * <p>The ARN of an application, configuration profile, or environment.</p>
778
+ */
779
+ ResourceIdentifier: string | undefined;
780
+ /**
781
+ * <p>The parameter names and values defined in the extensions. Extension parameters marked
782
+ * <code>Required</code> must be entered for this field.</p>
783
+ */
784
+ Parameters?: Record<string, string>;
785
+ /**
786
+ * <p>Adds one or more tags for the specified extension association. Tags are metadata that
787
+ * help you categorize resources in different ways, for example, by purpose, owner, or
788
+ * environment. Each tag consists of a key and an optional value, both of which you define.
789
+ * </p>
790
+ */
791
+ Tags?: Record<string, string>;
792
+ }
793
+ export declare namespace CreateExtensionAssociationRequest {
794
+ /**
795
+ * @internal
796
+ */
797
+ const filterSensitiveLog: (obj: CreateExtensionAssociationRequest) => any;
798
+ }
799
+ export interface ExtensionAssociation {
800
+ /**
801
+ * <p>The system-generated ID for the association.</p>
802
+ */
803
+ Id?: string;
804
+ /**
805
+ * <p>The ARN of the extension defined in the association.</p>
806
+ */
807
+ ExtensionArn?: string;
808
+ /**
809
+ * <p>The ARNs of applications, configuration profiles, or environments defined in the
810
+ * association.</p>
811
+ */
812
+ ResourceArn?: string;
813
+ /**
814
+ * <p>The system-generated Amazon Resource Name (ARN) for the extension.</p>
815
+ */
816
+ Arn?: string;
817
+ /**
818
+ * <p>The parameter names and values defined in the association.</p>
819
+ */
820
+ Parameters?: Record<string, string>;
821
+ /**
822
+ * <p>The version number for the extension defined in the association.</p>
823
+ */
824
+ ExtensionVersionNumber?: number;
825
+ }
826
+ export declare namespace ExtensionAssociation {
827
+ /**
828
+ * @internal
829
+ */
830
+ const filterSensitiveLog: (obj: ExtensionAssociation) => any;
831
+ }
524
832
  export interface CreateHostedConfigurationVersionRequest {
525
833
  /**
526
834
  * <p>The application ID.</p>
@@ -608,19 +916,6 @@ export declare class PayloadTooLargeException extends __BaseException {
608
916
  */
609
917
  constructor(opts: __ExceptionOptionType<PayloadTooLargeException, __BaseException>);
610
918
  }
611
- /**
612
- * <p>The number of hosted configuration versions exceeds the limit for the AppConfig hosted
613
- * configuration store. Delete one or more versions and try again.</p>
614
- */
615
- export declare class ServiceQuotaExceededException extends __BaseException {
616
- readonly name: "ServiceQuotaExceededException";
617
- readonly $fault: "client";
618
- Message?: string;
619
- /**
620
- * @internal
621
- */
622
- constructor(opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>);
623
- }
624
919
  export interface DeleteApplicationRequest {
625
920
  /**
626
921
  * <p>The ID of the application to delete.</p>
@@ -677,6 +972,35 @@ export declare namespace DeleteEnvironmentRequest {
677
972
  */
678
973
  const filterSensitiveLog: (obj: DeleteEnvironmentRequest) => any;
679
974
  }
975
+ export interface DeleteExtensionRequest {
976
+ /**
977
+ * <p>The name, ID, or Amazon Resource Name (ARN) of the extension you want to delete.</p>
978
+ */
979
+ ExtensionIdentifier: string | undefined;
980
+ /**
981
+ * <p>A specific version of an extension to delete. If omitted, the highest version is
982
+ * deleted.</p>
983
+ */
984
+ VersionNumber?: number;
985
+ }
986
+ export declare namespace DeleteExtensionRequest {
987
+ /**
988
+ * @internal
989
+ */
990
+ const filterSensitiveLog: (obj: DeleteExtensionRequest) => any;
991
+ }
992
+ export interface DeleteExtensionAssociationRequest {
993
+ /**
994
+ * <p>The ID of the extension association to delete.</p>
995
+ */
996
+ ExtensionAssociationId: string | undefined;
997
+ }
998
+ export declare namespace DeleteExtensionAssociationRequest {
999
+ /**
1000
+ * @internal
1001
+ */
1002
+ const filterSensitiveLog: (obj: DeleteExtensionAssociationRequest) => any;
1003
+ }
680
1004
  export interface DeleteHostedConfigurationVersionRequest {
681
1005
  /**
682
1006
  * <p>The application ID.</p>
@@ -716,8 +1040,8 @@ export interface Configuration {
716
1040
  * <p>The <code>Content</code> attribute only contains data if the system finds new or
717
1041
  * updated configuration data. If there is no new or updated data and
718
1042
  * <code>ClientConfigurationVersion</code> matches the version of the current
719
- * configuration, AppConfig returns a <code>204 No Content</code> HTTP response code and
720
- * the <code>Content</code> value will be empty.</p>
1043
+ * configuration, AppConfig returns a <code>204 No Content</code> HTTP response
1044
+ * code and the <code>Content</code> value will be empty.</p>
721
1045
  * </important>
722
1046
  */
723
1047
  Content?: Uint8Array;
@@ -755,16 +1079,16 @@ export interface GetConfigurationRequest {
755
1079
  Configuration: string | undefined;
756
1080
  /**
757
1081
  * <p>The clientId parameter in the following command is a unique, user-specified ID to
758
- * identify the client for the configuration. This ID enables AppConfig to deploy the
759
- * configuration in intervals, as defined in the deployment strategy. </p>
1082
+ * identify the client for the configuration. This ID enables AppConfig to deploy
1083
+ * the configuration in intervals, as defined in the deployment strategy. </p>
760
1084
  */
761
1085
  ClientId: string | undefined;
762
1086
  /**
763
1087
  * <p>The configuration version returned in the most recent <code>GetConfiguration</code>
764
1088
  * response.</p>
765
1089
  * <important>
766
- * <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code> parameter to
767
- * identify the configuration version on your clients. If you don’t send
1090
+ * <p>AppConfig uses the value of the <code>ClientConfigurationVersion</code>
1091
+ * parameter to identify the configuration version on your clients. If you don’t send
768
1092
  * <code>ClientConfigurationVersion</code> with each call to
769
1093
  * <code>GetConfiguration</code>, your clients receive the current configuration. You
770
1094
  * are charged each time your clients receive a configuration.</p>
@@ -802,6 +1126,33 @@ export declare namespace GetConfigurationProfileRequest {
802
1126
  */
803
1127
  const filterSensitiveLog: (obj: GetConfigurationProfileRequest) => any;
804
1128
  }
1129
+ /**
1130
+ * <p>An extension that was invoked during a deployment.</p>
1131
+ */
1132
+ export interface AppliedExtension {
1133
+ /**
1134
+ * <p>The system-generated ID of the extension.</p>
1135
+ */
1136
+ ExtensionId?: string;
1137
+ /**
1138
+ * <p>The system-generated ID for the association.</p>
1139
+ */
1140
+ ExtensionAssociationId?: string;
1141
+ /**
1142
+ * <p>The extension version number.</p>
1143
+ */
1144
+ VersionNumber?: number;
1145
+ /**
1146
+ * <p>One or more parameters for the actions called by the extension.</p>
1147
+ */
1148
+ Parameters?: Record<string, string>;
1149
+ }
1150
+ export declare namespace AppliedExtension {
1151
+ /**
1152
+ * @internal
1153
+ */
1154
+ const filterSensitiveLog: (obj: AppliedExtension) => any;
1155
+ }
805
1156
  export declare enum DeploymentEventType {
806
1157
  BAKE_TIME_STARTED = "BAKE_TIME_STARTED",
807
1158
  DEPLOYMENT_COMPLETED = "DEPLOYMENT_COMPLETED",
@@ -828,7 +1179,7 @@ export interface DeploymentEvent {
828
1179
  EventType?: DeploymentEventType | string;
829
1180
  /**
830
1181
  * <p>The entity that triggered the deployment event. Events can be triggered by a user,
831
- * AppConfig, an Amazon CloudWatch alarm, or an internal error.</p>
1182
+ * AppConfig, an Amazon CloudWatch alarm, or an internal error.</p>
832
1183
  */
833
1184
  TriggeredBy?: TriggeredBy | string;
834
1185
  /**
@@ -838,6 +1189,10 @@ export interface DeploymentEvent {
838
1189
  * attempt a new deployment.</p>
839
1190
  */
840
1191
  Description?: string;
1192
+ /**
1193
+ * <p>The list of extensions that were invoked as part of the deployment.</p>
1194
+ */
1195
+ ActionInvocations?: ActionInvocation[];
841
1196
  /**
842
1197
  * <p>The date and time the event occurred.</p>
843
1198
  */
@@ -908,8 +1263,8 @@ export interface Deployment {
908
1263
  */
909
1264
  GrowthFactor?: number;
910
1265
  /**
911
- * <p>The amount of time that AppConfig monitored for alarms before considering the deployment
912
- * to be complete and no longer eligible for automatic rollback.</p>
1266
+ * <p>The amount of time that AppConfig monitored for alarms before considering the
1267
+ * deployment to be complete and no longer eligible for automatic rollback.</p>
913
1268
  */
914
1269
  FinalBakeTimeInMinutes?: number;
915
1270
  /**
@@ -933,6 +1288,12 @@ export interface Deployment {
933
1288
  * <p>The time the deployment completed. </p>
934
1289
  */
935
1290
  CompletedAt?: Date;
1291
+ /**
1292
+ * <p>A list of extensions that were processed as part of the deployment. The extensions that
1293
+ * were previously associated to the configuration profile, environment, or the application
1294
+ * when <code>StartDeployment</code> was called.</p>
1295
+ */
1296
+ AppliedExtensions?: AppliedExtension[];
936
1297
  }
937
1298
  export declare namespace Deployment {
938
1299
  /**
@@ -988,6 +1349,35 @@ export declare namespace GetEnvironmentRequest {
988
1349
  */
989
1350
  const filterSensitiveLog: (obj: GetEnvironmentRequest) => any;
990
1351
  }
1352
+ export interface GetExtensionRequest {
1353
+ /**
1354
+ * <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
1355
+ */
1356
+ ExtensionIdentifier: string | undefined;
1357
+ /**
1358
+ * <p>The extension version number. If no version number was defined, AppConfig uses
1359
+ * the highest version.</p>
1360
+ */
1361
+ VersionNumber?: number;
1362
+ }
1363
+ export declare namespace GetExtensionRequest {
1364
+ /**
1365
+ * @internal
1366
+ */
1367
+ const filterSensitiveLog: (obj: GetExtensionRequest) => any;
1368
+ }
1369
+ export interface GetExtensionAssociationRequest {
1370
+ /**
1371
+ * <p>The extension association ID to get.</p>
1372
+ */
1373
+ ExtensionAssociationId: string | undefined;
1374
+ }
1375
+ export declare namespace GetExtensionAssociationRequest {
1376
+ /**
1377
+ * @internal
1378
+ */
1379
+ const filterSensitiveLog: (obj: GetExtensionAssociationRequest) => any;
1380
+ }
991
1381
  export interface GetHostedConfigurationVersionRequest {
992
1382
  /**
993
1383
  * <p>The application ID.</p>
@@ -1032,11 +1422,10 @@ export interface ListApplicationsRequest {
1032
1422
  */
1033
1423
  MaxResults?: number;
1034
1424
  /**
1035
- * <p>A token to start the list. Next token is a pagination token generated by AppConfig to
1036
- * describe what page the previous List call ended on. For the first List request, the
1037
- * nextToken should not be set. On subsequent calls, the nextToken parameter should be set to
1038
- * the previous responses nextToken value. Use this token to get the next set of results.
1039
- * </p>
1425
+ * <p>A token to start the list. Next token is a pagination token generated by AppConfig to describe what page the previous List call ended on. For the first List
1426
+ * request, the nextToken should not be set. On subsequent calls, the nextToken parameter
1427
+ * should be set to the previous responses nextToken value. Use this token to get the next set
1428
+ * of results. </p>
1040
1429
  */
1041
1430
  NextToken?: string;
1042
1431
  }
@@ -1071,11 +1460,11 @@ export interface ConfigurationProfileSummary {
1071
1460
  */
1072
1461
  ValidatorTypes?: (ValidatorType | string)[];
1073
1462
  /**
1074
- * <p>The type of configurations contained in the profile. AppConfig supports <code>feature
1075
- * flags</code> and <code>freeform</code> configurations. We recommend you create feature
1076
- * flag configurations to enable or disable new features and freeform configurations to
1077
- * distribute configurations to an application. When calling this API, enter one of the
1078
- * following values for <code>Type</code>:</p>
1463
+ * <p>The type of configurations contained in the profile. AppConfig supports
1464
+ * <code>feature flags</code> and <code>freeform</code> configurations. We recommend you
1465
+ * create feature flag configurations to enable or disable new features and freeform
1466
+ * configurations to distribute configurations to an application. When calling this API, enter
1467
+ * one of the following values for <code>Type</code>:</p>
1079
1468
  * <p>
1080
1469
  * <code>AWS.AppConfig.FeatureFlags</code>
1081
1470
  * </p>
@@ -1164,8 +1553,8 @@ export interface DeploymentSummary {
1164
1553
  */
1165
1554
  GrowthFactor?: number;
1166
1555
  /**
1167
- * <p>The amount of time that AppConfig monitors for alarms before considering the deployment
1168
- * to be complete and no longer eligible for automatic rollback.</p>
1556
+ * <p>The amount of time that AppConfig monitors for alarms before considering the
1557
+ * deployment to be complete and no longer eligible for automatic rollback.</p>
1169
1558
  */
1170
1559
  FinalBakeTimeInMinutes?: number;
1171
1560
  /**
@@ -1308,6 +1697,154 @@ export declare namespace ListEnvironmentsRequest {
1308
1697
  */
1309
1698
  const filterSensitiveLog: (obj: ListEnvironmentsRequest) => any;
1310
1699
  }
1700
+ /**
1701
+ * <p>Information about an association between an extension and an AppConfig
1702
+ * resource such as an application, environment, or configuration profile. Call
1703
+ * <code>GetExtensionAssociation</code> to get more information about an
1704
+ * association.</p>
1705
+ */
1706
+ export interface ExtensionAssociationSummary {
1707
+ /**
1708
+ * <p>The extension association ID. This ID is used to call other
1709
+ * <code>ExtensionAssociation</code> API actions such as
1710
+ * <code>GetExtensionAssociation</code> or <code>DeleteExtensionAssociation</code>.</p>
1711
+ */
1712
+ Id?: string;
1713
+ /**
1714
+ * <p>The system-generated Amazon Resource Name (ARN) for the extension.</p>
1715
+ */
1716
+ ExtensionArn?: string;
1717
+ /**
1718
+ * <p>The ARNs of applications, configuration profiles, or environments defined in the
1719
+ * association.</p>
1720
+ */
1721
+ ResourceArn?: string;
1722
+ }
1723
+ export declare namespace ExtensionAssociationSummary {
1724
+ /**
1725
+ * @internal
1726
+ */
1727
+ const filterSensitiveLog: (obj: ExtensionAssociationSummary) => any;
1728
+ }
1729
+ export interface ExtensionAssociations {
1730
+ /**
1731
+ * <p>The list of extension associations. Each item represents an extension association to an
1732
+ * application, environment, or configuration profile. </p>
1733
+ */
1734
+ Items?: ExtensionAssociationSummary[];
1735
+ /**
1736
+ * <p>The token for the next set of items to return. Use this token to get the next set of
1737
+ * results.</p>
1738
+ */
1739
+ NextToken?: string;
1740
+ }
1741
+ export declare namespace ExtensionAssociations {
1742
+ /**
1743
+ * @internal
1744
+ */
1745
+ const filterSensitiveLog: (obj: ExtensionAssociations) => any;
1746
+ }
1747
+ export interface ListExtensionAssociationsRequest {
1748
+ /**
1749
+ * <p>The ARN of an application, configuration profile, or environment.</p>
1750
+ */
1751
+ ResourceIdentifier?: string;
1752
+ /**
1753
+ * <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
1754
+ */
1755
+ ExtensionIdentifier?: string;
1756
+ /**
1757
+ * <p>The version number for the extension defined in the association.</p>
1758
+ */
1759
+ ExtensionVersionNumber?: number;
1760
+ /**
1761
+ * <p>The maximum number of items to return for this call. The call also returns a token that
1762
+ * you can specify in a subsequent call to get the next set of results.</p>
1763
+ */
1764
+ MaxResults?: number;
1765
+ /**
1766
+ * <p>A token to start the list. Use this token to get the next set of results or pass null to
1767
+ * get the first set of results. </p>
1768
+ */
1769
+ NextToken?: string;
1770
+ }
1771
+ export declare namespace ListExtensionAssociationsRequest {
1772
+ /**
1773
+ * @internal
1774
+ */
1775
+ const filterSensitiveLog: (obj: ListExtensionAssociationsRequest) => any;
1776
+ }
1777
+ /**
1778
+ * <p>Information about an extension. Call <code>GetExtension</code> to get more information
1779
+ * about an extension.</p>
1780
+ */
1781
+ export interface ExtensionSummary {
1782
+ /**
1783
+ * <p>The system-generated ID of the extension.</p>
1784
+ */
1785
+ Id?: string;
1786
+ /**
1787
+ * <p>The extension name.</p>
1788
+ */
1789
+ Name?: string;
1790
+ /**
1791
+ * <p>The extension version number.</p>
1792
+ */
1793
+ VersionNumber?: number;
1794
+ /**
1795
+ * <p>The system-generated Amazon Resource Name (ARN) for the extension.</p>
1796
+ */
1797
+ Arn?: string;
1798
+ /**
1799
+ * <p>Information about the extension.</p>
1800
+ */
1801
+ Description?: string;
1802
+ }
1803
+ export declare namespace ExtensionSummary {
1804
+ /**
1805
+ * @internal
1806
+ */
1807
+ const filterSensitiveLog: (obj: ExtensionSummary) => any;
1808
+ }
1809
+ export interface Extensions {
1810
+ /**
1811
+ * <p>The list of available extensions. The list includes Amazon Web Services-authored and
1812
+ * user-created extensions.</p>
1813
+ */
1814
+ Items?: ExtensionSummary[];
1815
+ /**
1816
+ * <p>The token for the next set of items to return. Use this token to get the next set of
1817
+ * results.</p>
1818
+ */
1819
+ NextToken?: string;
1820
+ }
1821
+ export declare namespace Extensions {
1822
+ /**
1823
+ * @internal
1824
+ */
1825
+ const filterSensitiveLog: (obj: Extensions) => any;
1826
+ }
1827
+ export interface ListExtensionsRequest {
1828
+ /**
1829
+ * <p>The maximum number of items to return for this call. The call also returns a token that
1830
+ * you can specify in a subsequent call to get the next set of results.</p>
1831
+ */
1832
+ MaxResults?: number;
1833
+ /**
1834
+ * <p>A token to start the list. Use this token to get the next set of results. </p>
1835
+ */
1836
+ NextToken?: string;
1837
+ /**
1838
+ * <p>The extension name.</p>
1839
+ */
1840
+ Name?: string;
1841
+ }
1842
+ export declare namespace ListExtensionsRequest {
1843
+ /**
1844
+ * @internal
1845
+ */
1846
+ const filterSensitiveLog: (obj: ListExtensionsRequest) => any;
1847
+ }
1311
1848
  /**
1312
1849
  * <p>Information about the configuration.</p>
1313
1850
  */
@@ -1396,9 +1933,9 @@ export declare namespace ListTagsForResourceRequest {
1396
1933
  }
1397
1934
  export interface ResourceTags {
1398
1935
  /**
1399
- * <p>Metadata to assign to AppConfig resources. Tags help organize and categorize your
1400
- * AppConfig resources. Each tag consists of a key and an optional value, both of which you
1401
- * define.</p>
1936
+ * <p>Metadata to assign to AppConfig resources. Tags help organize and categorize
1937
+ * your AppConfig resources. Each tag consists of a key and an optional value, both
1938
+ * of which you define.</p>
1402
1939
  */
1403
1940
  Tags?: Record<string, string>;
1404
1941
  }
@@ -1434,9 +1971,8 @@ export interface StartDeploymentRequest {
1434
1971
  */
1435
1972
  Description?: string;
1436
1973
  /**
1437
- * <p>Metadata to assign to the deployment. Tags help organize and categorize your AppConfig
1438
- * resources. Each tag consists of a key and an optional value, both of which you
1439
- * define.</p>
1974
+ * <p>Metadata to assign to the deployment. Tags help organize and categorize your AppConfig resources. Each tag consists of a key and an optional value, both of which
1975
+ * you define.</p>
1440
1976
  */
1441
1977
  Tags?: Record<string, string>;
1442
1978
  }
@@ -1567,8 +2103,8 @@ export interface UpdateDeploymentStrategyRequest {
1567
2103
  */
1568
2104
  DeploymentDurationInMinutes?: number;
1569
2105
  /**
1570
- * <p>The amount of time that AppConfig monitors for alarms before considering the deployment
1571
- * to be complete and no longer eligible for automatic rollback.</p>
2106
+ * <p>The amount of time that AppConfig monitors for alarms before considering the
2107
+ * deployment to be complete and no longer eligible for automatic rollback.</p>
1572
2108
  */
1573
2109
  FinalBakeTimeInMinutes?: number;
1574
2110
  /**
@@ -1577,23 +2113,23 @@ export interface UpdateDeploymentStrategyRequest {
1577
2113
  */
1578
2114
  GrowthFactor?: number;
1579
2115
  /**
1580
- * <p>The algorithm used to define how percentage grows over time. AppConfig supports the
1581
- * following growth types:</p>
2116
+ * <p>The algorithm used to define how percentage grows over time. AppConfig
2117
+ * supports the following growth types:</p>
1582
2118
  * <p>
1583
- * <b>Linear</b>: For this type, AppConfig processes the
1584
- * deployment by increments of the growth factor evenly distributed over the deployment time.
1585
- * For example, a linear deployment that uses a growth factor of 20 initially makes the
2119
+ * <b>Linear</b>: For this type, AppConfig processes
2120
+ * the deployment by increments of the growth factor evenly distributed over the deployment
2121
+ * time. For example, a linear deployment that uses a growth factor of 20 initially makes the
1586
2122
  * configuration available to 20 percent of the targets. After 1/5th of the deployment time
1587
2123
  * has passed, the system updates the percentage to 40 percent. This continues until 100% of
1588
2124
  * the targets are set to receive the deployed configuration.</p>
1589
2125
  *
1590
2126
  * <p>
1591
- * <b>Exponential</b>: For this type, AppConfig processes the
1592
- * deployment exponentially using the following formula: <code>G*(2^N)</code>. In this
1593
- * formula, <code>G</code> is the growth factor specified by the user and <code>N</code> is
1594
- * the number of steps until the configuration is deployed to all targets. For example, if you
1595
- * specify a growth factor of 2, then the system rolls out the configuration as
1596
- * follows:</p>
2127
+ * <b>Exponential</b>: For this type, AppConfig
2128
+ * processes the deployment exponentially using the following formula: <code>G*(2^N)</code>.
2129
+ * In this formula, <code>G</code> is the growth factor specified by the user and
2130
+ * <code>N</code> is the number of steps until the configuration is deployed to all
2131
+ * targets. For example, if you specify a growth factor of 2, then the system rolls out the
2132
+ * configuration as follows:</p>
1597
2133
  * <p>
1598
2134
  * <code>2*(2^0)</code>
1599
2135
  * </p>
@@ -1643,6 +2179,50 @@ export declare namespace UpdateEnvironmentRequest {
1643
2179
  */
1644
2180
  const filterSensitiveLog: (obj: UpdateEnvironmentRequest) => any;
1645
2181
  }
2182
+ export interface UpdateExtensionRequest {
2183
+ /**
2184
+ * <p>The name, the ID, or the Amazon Resource Name (ARN) of the extension.</p>
2185
+ */
2186
+ ExtensionIdentifier: string | undefined;
2187
+ /**
2188
+ * <p>Information about the extension.</p>
2189
+ */
2190
+ Description?: string;
2191
+ /**
2192
+ * <p>The actions defined in the extension.</p>
2193
+ */
2194
+ Actions?: Record<string, Action[]>;
2195
+ /**
2196
+ * <p>One or more parameters for the actions called by the extension.</p>
2197
+ */
2198
+ Parameters?: Record<string, Parameter>;
2199
+ /**
2200
+ * <p>The extension version number.</p>
2201
+ */
2202
+ VersionNumber?: number;
2203
+ }
2204
+ export declare namespace UpdateExtensionRequest {
2205
+ /**
2206
+ * @internal
2207
+ */
2208
+ const filterSensitiveLog: (obj: UpdateExtensionRequest) => any;
2209
+ }
2210
+ export interface UpdateExtensionAssociationRequest {
2211
+ /**
2212
+ * <p>The system-generated ID for the association.</p>
2213
+ */
2214
+ ExtensionAssociationId: string | undefined;
2215
+ /**
2216
+ * <p>The parameter names and values defined in the extension.</p>
2217
+ */
2218
+ Parameters?: Record<string, string>;
2219
+ }
2220
+ export declare namespace UpdateExtensionAssociationRequest {
2221
+ /**
2222
+ * @internal
2223
+ */
2224
+ const filterSensitiveLog: (obj: UpdateExtensionAssociationRequest) => any;
2225
+ }
1646
2226
  export interface ValidateConfigurationRequest {
1647
2227
  /**
1648
2228
  * <p>The application ID.</p>