@aws-sdk/client-appconfig 3.1075.0 → 3.1077.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 (99) hide show
  1. package/README.md +108 -107
  2. package/dist-cjs/index.js +1826 -15
  3. package/dist-es/AppConfig.js +28 -0
  4. package/dist-es/commands/CreateExperimentDefinitionCommand.js +16 -0
  5. package/dist-es/commands/DeleteExperimentDefinitionCommand.js +16 -0
  6. package/dist-es/commands/GetExperimentDefinitionCommand.js +16 -0
  7. package/dist-es/commands/GetExperimentRunCommand.js +16 -0
  8. package/dist-es/commands/ListExperimentDefinitionsCommand.js +16 -0
  9. package/dist-es/commands/ListExperimentRunEventsCommand.js +16 -0
  10. package/dist-es/commands/ListExperimentRunsCommand.js +16 -0
  11. package/dist-es/commands/StartExperimentRunCommand.js +16 -0
  12. package/dist-es/commands/StopExperimentRunCommand.js +16 -0
  13. package/dist-es/commands/UpdateExperimentDefinitionCommand.js +16 -0
  14. package/dist-es/commands/UpdateExperimentRunCommand.js +16 -0
  15. package/dist-es/commands/index.js +11 -0
  16. package/dist-es/models/enums.js +23 -0
  17. package/dist-es/pagination/ListExperimentDefinitionsPaginator.js +4 -0
  18. package/dist-es/pagination/ListExperimentRunEventsPaginator.js +4 -0
  19. package/dist-es/pagination/ListExperimentRunsPaginator.js +4 -0
  20. package/dist-es/pagination/index.js +3 -0
  21. package/dist-es/runtimeConfig.browser.js +0 -2
  22. package/dist-es/runtimeConfig.js +1 -2
  23. package/dist-es/runtimeConfig.native.js +0 -2
  24. package/dist-es/runtimeConfig.shared.js +2 -0
  25. package/dist-es/schemas/schemas_0.js +328 -49
  26. package/dist-types/AppConfig.d.ts +130 -107
  27. package/dist-types/AppConfigClient.d.ts +44 -109
  28. package/dist-types/commands/CreateApplicationCommand.d.ts +0 -3
  29. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +0 -3
  30. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +0 -3
  31. package/dist-types/commands/CreateEnvironmentCommand.d.ts +0 -3
  32. package/dist-types/commands/CreateExperimentDefinitionCommand.d.ts +266 -0
  33. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +0 -3
  34. package/dist-types/commands/CreateExtensionCommand.d.ts +0 -3
  35. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -4
  36. package/dist-types/commands/DeleteExperimentDefinitionCommand.d.ts +103 -0
  37. package/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -0
  38. package/dist-types/commands/GetExperimentDefinitionCommand.d.ts +184 -0
  39. package/dist-types/commands/GetExperimentRunCommand.d.ts +209 -0
  40. package/dist-types/commands/ListDeploymentsCommand.d.ts +2 -0
  41. package/dist-types/commands/ListExperimentDefinitionsCommand.d.ts +131 -0
  42. package/dist-types/commands/ListExperimentRunEventsCommand.d.ts +136 -0
  43. package/dist-types/commands/ListExperimentRunsCommand.d.ts +125 -0
  44. package/dist-types/commands/StartDeploymentCommand.d.ts +5 -0
  45. package/dist-types/commands/StartExperimentRunCommand.d.ts +230 -0
  46. package/dist-types/commands/StopExperimentRunCommand.d.ts +231 -0
  47. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +6 -0
  48. package/dist-types/commands/UpdateExperimentDefinitionCommand.d.ts +237 -0
  49. package/dist-types/commands/UpdateExperimentRunCommand.d.ts +229 -0
  50. package/dist-types/commands/index.d.ts +11 -0
  51. package/dist-types/index.d.ts +31 -107
  52. package/dist-types/models/enums.d.ts +63 -0
  53. package/dist-types/models/errors.d.ts +0 -3
  54. package/dist-types/models/models_0.d.ts +1080 -37
  55. package/dist-types/pagination/ListExperimentDefinitionsPaginator.d.ts +7 -0
  56. package/dist-types/pagination/ListExperimentRunEventsPaginator.d.ts +7 -0
  57. package/dist-types/pagination/ListExperimentRunsPaginator.d.ts +7 -0
  58. package/dist-types/pagination/index.d.ts +3 -0
  59. package/dist-types/runtimeConfig.browser.d.ts +2 -2
  60. package/dist-types/runtimeConfig.d.ts +2 -2
  61. package/dist-types/runtimeConfig.native.d.ts +2 -2
  62. package/dist-types/runtimeConfig.shared.d.ts +1 -0
  63. package/dist-types/schemas/schemas_0.d.ts +39 -0
  64. package/dist-types/ts3.4/AppConfig.d.ts +209 -0
  65. package/dist-types/ts3.4/AppConfigClient.d.ts +66 -0
  66. package/dist-types/ts3.4/commands/CreateExperimentDefinitionCommand.d.ts +53 -0
  67. package/dist-types/ts3.4/commands/DeleteExperimentDefinitionCommand.d.ts +49 -0
  68. package/dist-types/ts3.4/commands/GetExperimentDefinitionCommand.d.ts +53 -0
  69. package/dist-types/ts3.4/commands/GetExperimentRunCommand.d.ts +49 -0
  70. package/dist-types/ts3.4/commands/ListExperimentDefinitionsCommand.d.ts +53 -0
  71. package/dist-types/ts3.4/commands/ListExperimentRunEventsCommand.d.ts +53 -0
  72. package/dist-types/ts3.4/commands/ListExperimentRunsCommand.d.ts +50 -0
  73. package/dist-types/ts3.4/commands/StartExperimentRunCommand.d.ts +50 -0
  74. package/dist-types/ts3.4/commands/StopExperimentRunCommand.d.ts +50 -0
  75. package/dist-types/ts3.4/commands/UpdateExperimentDefinitionCommand.d.ts +53 -0
  76. package/dist-types/ts3.4/commands/UpdateExperimentRunCommand.d.ts +50 -0
  77. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  78. package/dist-types/ts3.4/models/enums.d.ts +32 -0
  79. package/dist-types/ts3.4/models/models_0.d.ts +292 -0
  80. package/dist-types/ts3.4/pagination/ListExperimentDefinitionsPaginator.d.ts +11 -0
  81. package/dist-types/ts3.4/pagination/ListExperimentRunEventsPaginator.d.ts +11 -0
  82. package/dist-types/ts3.4/pagination/ListExperimentRunsPaginator.d.ts +11 -0
  83. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  84. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +8 -2
  85. package/dist-types/ts3.4/runtimeConfig.d.ts +8 -2
  86. package/dist-types/ts3.4/runtimeConfig.native.d.ts +8 -2
  87. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +1 -0
  88. package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -0
  89. package/package.json +8 -10
  90. package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  91. package/dist-cjs/endpoint/bdd.js +0 -52
  92. package/dist-cjs/endpoint/endpointResolver.js +0 -14
  93. package/dist-cjs/models/AppConfigServiceException.js +0 -8
  94. package/dist-cjs/models/errors.js +0 -97
  95. package/dist-cjs/runtimeConfig.browser.js +0 -32
  96. package/dist-cjs/runtimeConfig.js +0 -45
  97. package/dist-cjs/runtimeConfig.native.js +0 -12
  98. package/dist-cjs/runtimeConfig.shared.js +0 -38
  99. package/dist-cjs/schemas/schemas_0.js +0 -980
package/README.md CHANGED
@@ -6,47 +6,24 @@
6
6
 
7
7
  AWS SDK for JavaScript AppConfig Client for Node.js, Browser and React Native.
8
8
 
9
- <p>AppConfig feature flags and dynamic configurations help software builders
10
- quickly and securely adjust application behavior in production environments without full
11
- code deployments. AppConfig speeds up software release frequency, improves
12
- application resiliency, and helps you address emergent issues more quickly. With feature
13
- flags, you can gradually release new capabilities to users and measure the impact of those
14
- changes before fully deploying the new capabilities to all users. With operational flags
15
- and dynamic configurations, you can update block lists, allow lists, throttling limits,
16
- logging verbosity, and perform other operational tuning to quickly respond to issues in
17
- production environments.</p>
18
- <note>
19
- <p>AppConfig is a tool in Amazon Web Services Systems Manager.</p>
20
- </note>
21
- <p>Despite the fact that application configuration content can vary greatly from
22
- application to application, AppConfig supports the following use cases, which
23
- cover a broad spectrum of customer needs:</p>
9
+ <p>AppConfig helps you safely change application behavior in production without redeploying code. Using feature flags and dynamic free-form configurations, you can control how your application runs in real time. This approach reduces risk, accelerates releases, and enables faster responses to issues. You can gradually roll out new features to specific users, monitor their impact, and expand availability with confidence. You can also update block lists, allow lists, throttling limits, and logging levels instantly, allowing you to mitigate issues and fine-tune performance without a deployment.</p>
10
+ <p>AppConfig supports a broad spectrum of use cases:</p>
24
11
  <ul>
25
12
  <li>
26
13
  <p>
27
- <b>Feature flags and toggles</b> - Safely release new
28
- capabilities to your customers in a controlled environment. Instantly roll back
29
- changes if you experience a problem.</p>
14
+ <b>Feature flags and toggles</b> Gradually release new capabilities to targeted users, monitor impact, and instantly roll back changes if issues occur.</p>
30
15
  </li>
31
16
  <li>
32
17
  <p>
33
- <b>Application tuning</b> - Carefully introduce
34
- application changes while testing the impact of those changes with users in
35
- production environments.</p>
18
+ <b>Application tuning</b> Introduce changes safely in production, measure their effects, and refine behavior without redeploying code.</p>
36
19
  </li>
37
20
  <li>
38
21
  <p>
39
- <b>Allow list or block list</b> - Control access to
40
- premium features or instantly block specific users without deploying new code.
41
- </p>
22
+ <b>Allow list or block list</b> Control access to features or restrict specific users in real time, without modifying application code. </p>
42
23
  </li>
43
24
  <li>
44
25
  <p>
45
- <b>Centralized configuration storage</b> - Keep your
46
- configuration data organized and consistent across all of your workloads. You can use
47
- AppConfig to deploy configuration data stored in the AppConfig
48
- hosted configuration store, Secrets Manager, Systems Manager, Parameter
49
- Store, or Amazon S3.</p>
26
+ <b>Centralized configuration storage</b> Manage configuration data consistently across workloads. AppConfig can deploy configuration from the AppConfig hosted configuration store, Secrets Manager, Systems Manager, Systems Manager Parameter Store, or Amazon S3.</p>
50
27
  </li>
51
28
  </ul>
52
29
  <p>
@@ -55,103 +32,50 @@ Store, or Amazon S3.</p>
55
32
  <p>This section provides a high-level description of how AppConfig works and how
56
33
  you get started.</p>
57
34
  <dl>
58
- <dt>1. Identify configuration values in code you want to manage in the cloud</dt>
59
- <dd>
60
- <p>Before you start creating AppConfig artifacts, we recommend you
61
- identify configuration data in your code that you want to dynamically manage using
62
- AppConfig. Good examples include feature flags or toggles, allow and
63
- block lists, logging verbosity, service limits, and throttling rules, to name a
64
- few.</p>
65
- <p>If your configuration data already exists in the cloud, you can take advantage
66
- of AppConfig validation, deployment, and extension features to further
67
- streamline configuration data management.</p>
68
- </dd>
69
- <dt>2. Create an application namespace</dt>
70
- <dd>
71
- <p>To create a namespace, you create an AppConfig artifact called an
72
- application. An application is simply an organizational construct like a
73
- folder.</p>
74
- </dd>
75
- <dt>3. Create environments</dt>
35
+ <dt>1. Identify configuration data to manage in AppConfig</dt>
76
36
  <dd>
77
- <p>For each AppConfig application, you define one or more environments.
78
- An environment is a logical grouping of targets, such as applications in a
79
- <code>Beta</code> or <code>Production</code> environment, Lambda functions,
80
- or containers. You can also define environments for application subcomponents,
81
- such as the <code>Web</code>, <code>Mobile</code>, and
82
- <code>Back-end</code>.</p>
83
- <p>You can configure Amazon CloudWatch alarms for each environment. The system monitors
84
- alarms during a configuration deployment. If an alarm is triggered, the system
85
- rolls back the configuration.</p>
37
+ <p>Before creating a configuration profile, identify the configuration data in your code that you want to manage dynamically using AppConfig. Common examples include feature flags, allow and block lists, logging levels, service limits, and throttling rules. These values tend to change frequently and can cause issues if misconfigured.</p>
38
+ <p>If your configuration data already exists in cloud services such as Systems Manager Parameter Store or Amazon S3, you can use AppConfig to validate, deploy, and manage that data more effectively.</p>
86
39
  </dd>
87
- <dt>4. Create a configuration profile</dt>
40
+ <dt>2. Create a configuration profile in AppConfig</dt>
88
41
  <dd>
89
- <p>A configuration profile includes, among other things, a URI that enables
90
- AppConfig to locate your configuration data in its stored location
91
- and a profile type. AppConfig supports two configuration profile types:
92
- feature flags and freeform configurations. Feature flag configuration profiles
93
- store their data in the AppConfig hosted configuration store and the URI
94
- is simply <code>hosted</code>. For freeform configuration profiles, you can store
95
- your data in the AppConfig hosted configuration store or any Amazon Web Services
96
- 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
97
- a free form configuration profile</a> in the the <i>AppConfig User Guide</i>.</p>
98
- <p>A configuration profile can also include optional validators to ensure your
99
- configuration data is syntactically and semantically correct. AppConfig
100
- performs a check using the validators when you start a deployment. If any errors
101
- are detected, the deployment rolls back to the previous configuration data.</p>
102
- </dd>
103
- <dt>5. Deploy configuration data</dt>
104
- <dd>
105
- <p>When you create a new deployment, you specify the following:</p>
42
+ <p>A configuration profile defines how AppConfig locates and manages your configuration data. It includes a URI that points to the data source and a profile type.</p>
43
+ <p>AppConfig supports two profile types</p>
106
44
  <ul>
107
45
  <li>
108
- <p>An application ID</p>
109
- </li>
110
- <li>
111
- <p>A configuration profile ID</p>
112
- </li>
113
- <li>
114
- <p>A configuration version</p>
115
- </li>
116
- <li>
117
- <p>An environment ID where you want to deploy the configuration data</p>
46
+ <p>
47
+ <b>Feature flags</b> – Enable controlled feature releases, gradual rollouts, and testing in production.</p>
118
48
  </li>
119
49
  <li>
120
- <p>A deployment strategy ID that defines how fast you want the changes to
121
- take effect</p>
50
+ <p>
51
+ <b>Free-form configurations</b> – Store and retrieve configuration data from external sources and update it without redeploying code.</p>
122
52
  </li>
123
53
  </ul>
124
- <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
125
- tasks:</p>
54
+ <p>Both profile types help decouple configuration from code, support continuous delivery, and reduce deployment risk.</p>
55
+ <p>You can also add optional validators to ensure that configuration data is syntactically and semantically correct. During deployment, AppConfig evaluates these validators and automatically rolls back changes if validation fails.</p>
56
+ <p>Each configuration profile is associated with an application, which acts as a logical container for your configuration resources. For more information about creating a configuration profile, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-creating-configuration-profile.html">Creating a configuration profile in AppConfig</a> in the the <i>AppConfig User Guide</i>.</p>
57
+ </dd>
58
+ <dt>3. Deploy configuration data</dt>
59
+ <dd>
60
+ <p>When you start a deployment, AppConfig:</p>
126
61
  <ol>
127
62
  <li>
128
- <p>Retrieves the configuration data from the underlying data store by using
129
- the location URI in the configuration profile.</p>
63
+ <p>Retrieves configuration data from the source defined in the configuration profile</p>
130
64
  </li>
131
65
  <li>
132
- <p>Verifies the configuration data is syntactically and semantically correct
133
- by using the validators you specified when you created your configuration
134
- profile.</p>
66
+ <p>Validates the data using the configured validators</p>
135
67
  </li>
136
68
  <li>
137
- <p>Caches a copy of the data so it is ready to be retrieved by your
138
- application. This cached copy is called the <i>deployed
139
- data</i>.</p>
69
+ <p>Delivers the validated configuration to AppConfig Agent</p>
140
70
  </li>
141
71
  </ol>
72
+ <p>The delivered configuration becomes the deployed version used by your application. For more information about deploying a configuration, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/deploying-feature-flags.html">Deploying feature flags and configuration data in AppConfig</a>.</p>
142
73
  </dd>
143
- <dt>6. Retrieve the configuration</dt>
74
+ <dt>4. Retrieve configuration data</dt>
144
75
  <dd>
145
- <p>You can configure AppConfig Agent as a local host and have the agent
146
- 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
147
- locally. To retrieve the data, your application makes an HTTP call to the
148
- localhost server. AppConfig Agent supports several use cases, as
149
- described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-simplified-methods.html">Simplified
150
- retrieval methods</a> in the the <i>AppConfig User
151
- Guide</i>.</p>
152
- <p>If AppConfig Agent isn't supported for your use case, you can
153
- configure your application to poll AppConfig for configuration updates
154
- 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>
76
+ <p>Your application retrieves configuration data by calling a local endpoint exposed by AppConfig Agent, which caches the deployed configuration. Retrieving data is a metered event. AppConfig Agent supports a variety of use cases, as described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-agent-how-to-use.html">How to use AppConfig Agent to retrieve configuration data</a>.</p>
77
+ <p>If the agent is not suitable for your use case, your application can retrieve configuration data directly from AppConfig by 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>
78
+ <p>For more information about retrieving a configuration, see <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/retrieving-feature-flags.html">Retrieving feature flags and configuration data in AppConfig</a>.</p>
155
79
  </dd>
156
80
  </dl>
157
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
@@ -358,6 +282,13 @@ CreateEnvironment
358
282
  </details>
359
283
  <details>
360
284
  <summary>
285
+ CreateExperimentDefinition
286
+ </summary>
287
+
288
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/CreateExperimentDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/CreateExperimentDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/CreateExperimentDefinitionCommandOutput/)
289
+ </details>
290
+ <details>
291
+ <summary>
361
292
  CreateExtension
362
293
  </summary>
363
294
 
@@ -407,6 +338,13 @@ DeleteEnvironment
407
338
  </details>
408
339
  <details>
409
340
  <summary>
341
+ DeleteExperimentDefinition
342
+ </summary>
343
+
344
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/DeleteExperimentDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/DeleteExperimentDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/DeleteExperimentDefinitionCommandOutput/)
345
+ </details>
346
+ <details>
347
+ <summary>
410
348
  DeleteExtension
411
349
  </summary>
412
350
 
@@ -477,6 +415,20 @@ GetEnvironment
477
415
  </details>
478
416
  <details>
479
417
  <summary>
418
+ GetExperimentDefinition
419
+ </summary>
420
+
421
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/GetExperimentDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/GetExperimentDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/GetExperimentDefinitionCommandOutput/)
422
+ </details>
423
+ <details>
424
+ <summary>
425
+ GetExperimentRun
426
+ </summary>
427
+
428
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/GetExperimentRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/GetExperimentRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/GetExperimentRunCommandOutput/)
429
+ </details>
430
+ <details>
431
+ <summary>
480
432
  GetExtension
481
433
  </summary>
482
434
 
@@ -533,6 +485,27 @@ ListEnvironments
533
485
  </details>
534
486
  <details>
535
487
  <summary>
488
+ ListExperimentDefinitions
489
+ </summary>
490
+
491
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/ListExperimentDefinitionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/ListExperimentDefinitionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/ListExperimentDefinitionsCommandOutput/)
492
+ </details>
493
+ <details>
494
+ <summary>
495
+ ListExperimentRunEvents
496
+ </summary>
497
+
498
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/ListExperimentRunEventsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/ListExperimentRunEventsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/ListExperimentRunEventsCommandOutput/)
499
+ </details>
500
+ <details>
501
+ <summary>
502
+ ListExperimentRuns
503
+ </summary>
504
+
505
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/ListExperimentRunsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/ListExperimentRunsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/ListExperimentRunsCommandOutput/)
506
+ </details>
507
+ <details>
508
+ <summary>
536
509
  ListExtensionAssociations
537
510
  </summary>
538
511
 
@@ -568,6 +541,13 @@ StartDeployment
568
541
  </details>
569
542
  <details>
570
543
  <summary>
544
+ StartExperimentRun
545
+ </summary>
546
+
547
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/StartExperimentRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/StartExperimentRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/StartExperimentRunCommandOutput/)
548
+ </details>
549
+ <details>
550
+ <summary>
571
551
  StopDeployment
572
552
  </summary>
573
553
 
@@ -575,6 +555,13 @@ StopDeployment
575
555
  </details>
576
556
  <details>
577
557
  <summary>
558
+ StopExperimentRun
559
+ </summary>
560
+
561
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/StopExperimentRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/StopExperimentRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/StopExperimentRunCommandOutput/)
562
+ </details>
563
+ <details>
564
+ <summary>
578
565
  TagResource
579
566
  </summary>
580
567
 
@@ -624,6 +611,20 @@ UpdateEnvironment
624
611
  </details>
625
612
  <details>
626
613
  <summary>
614
+ UpdateExperimentDefinition
615
+ </summary>
616
+
617
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/UpdateExperimentDefinitionCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/UpdateExperimentDefinitionCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/UpdateExperimentDefinitionCommandOutput/)
618
+ </details>
619
+ <details>
620
+ <summary>
621
+ UpdateExperimentRun
622
+ </summary>
623
+
624
+ [Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/appconfig/command/UpdateExperimentRunCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/UpdateExperimentRunCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-appconfig/Interface/UpdateExperimentRunCommandOutput/)
625
+ </details>
626
+ <details>
627
+ <summary>
627
628
  UpdateExtension
628
629
  </summary>
629
630