@aws-sdk/client-appconfig 3.1075.0 → 3.1076.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 (93) hide show
  1. package/README.md +108 -107
  2. package/dist-cjs/index.js +1825 -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/schemas/schemas_0.js +328 -49
  22. package/dist-types/AppConfig.d.ts +130 -107
  23. package/dist-types/AppConfigClient.d.ts +44 -109
  24. package/dist-types/commands/CreateApplicationCommand.d.ts +0 -3
  25. package/dist-types/commands/CreateConfigurationProfileCommand.d.ts +0 -3
  26. package/dist-types/commands/CreateDeploymentStrategyCommand.d.ts +0 -3
  27. package/dist-types/commands/CreateEnvironmentCommand.d.ts +0 -3
  28. package/dist-types/commands/CreateExperimentDefinitionCommand.d.ts +266 -0
  29. package/dist-types/commands/CreateExtensionAssociationCommand.d.ts +0 -3
  30. package/dist-types/commands/CreateExtensionCommand.d.ts +0 -3
  31. package/dist-types/commands/CreateHostedConfigurationVersionCommand.d.ts +1 -4
  32. package/dist-types/commands/DeleteExperimentDefinitionCommand.d.ts +103 -0
  33. package/dist-types/commands/GetAccountSettingsCommand.d.ts +3 -0
  34. package/dist-types/commands/GetExperimentDefinitionCommand.d.ts +184 -0
  35. package/dist-types/commands/GetExperimentRunCommand.d.ts +209 -0
  36. package/dist-types/commands/ListDeploymentsCommand.d.ts +2 -0
  37. package/dist-types/commands/ListExperimentDefinitionsCommand.d.ts +131 -0
  38. package/dist-types/commands/ListExperimentRunEventsCommand.d.ts +136 -0
  39. package/dist-types/commands/ListExperimentRunsCommand.d.ts +125 -0
  40. package/dist-types/commands/StartDeploymentCommand.d.ts +5 -0
  41. package/dist-types/commands/StartExperimentRunCommand.d.ts +230 -0
  42. package/dist-types/commands/StopExperimentRunCommand.d.ts +231 -0
  43. package/dist-types/commands/UpdateAccountSettingsCommand.d.ts +6 -0
  44. package/dist-types/commands/UpdateExperimentDefinitionCommand.d.ts +237 -0
  45. package/dist-types/commands/UpdateExperimentRunCommand.d.ts +229 -0
  46. package/dist-types/commands/index.d.ts +11 -0
  47. package/dist-types/index.d.ts +31 -107
  48. package/dist-types/models/enums.d.ts +63 -0
  49. package/dist-types/models/errors.d.ts +0 -3
  50. package/dist-types/models/models_0.d.ts +1080 -37
  51. package/dist-types/pagination/ListExperimentDefinitionsPaginator.d.ts +7 -0
  52. package/dist-types/pagination/ListExperimentRunEventsPaginator.d.ts +7 -0
  53. package/dist-types/pagination/ListExperimentRunsPaginator.d.ts +7 -0
  54. package/dist-types/pagination/index.d.ts +3 -0
  55. package/dist-types/runtimeConfig.browser.d.ts +1 -1
  56. package/dist-types/runtimeConfig.d.ts +1 -1
  57. package/dist-types/runtimeConfig.native.d.ts +1 -1
  58. package/dist-types/schemas/schemas_0.d.ts +39 -0
  59. package/dist-types/ts3.4/AppConfig.d.ts +209 -0
  60. package/dist-types/ts3.4/AppConfigClient.d.ts +66 -0
  61. package/dist-types/ts3.4/commands/CreateExperimentDefinitionCommand.d.ts +53 -0
  62. package/dist-types/ts3.4/commands/DeleteExperimentDefinitionCommand.d.ts +49 -0
  63. package/dist-types/ts3.4/commands/GetExperimentDefinitionCommand.d.ts +53 -0
  64. package/dist-types/ts3.4/commands/GetExperimentRunCommand.d.ts +49 -0
  65. package/dist-types/ts3.4/commands/ListExperimentDefinitionsCommand.d.ts +53 -0
  66. package/dist-types/ts3.4/commands/ListExperimentRunEventsCommand.d.ts +53 -0
  67. package/dist-types/ts3.4/commands/ListExperimentRunsCommand.d.ts +50 -0
  68. package/dist-types/ts3.4/commands/StartExperimentRunCommand.d.ts +50 -0
  69. package/dist-types/ts3.4/commands/StopExperimentRunCommand.d.ts +50 -0
  70. package/dist-types/ts3.4/commands/UpdateExperimentDefinitionCommand.d.ts +53 -0
  71. package/dist-types/ts3.4/commands/UpdateExperimentRunCommand.d.ts +50 -0
  72. package/dist-types/ts3.4/commands/index.d.ts +11 -0
  73. package/dist-types/ts3.4/models/enums.d.ts +32 -0
  74. package/dist-types/ts3.4/models/models_0.d.ts +292 -0
  75. package/dist-types/ts3.4/pagination/ListExperimentDefinitionsPaginator.d.ts +11 -0
  76. package/dist-types/ts3.4/pagination/ListExperimentRunEventsPaginator.d.ts +11 -0
  77. package/dist-types/ts3.4/pagination/ListExperimentRunsPaginator.d.ts +11 -0
  78. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  79. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +7 -1
  80. package/dist-types/ts3.4/runtimeConfig.d.ts +7 -1
  81. package/dist-types/ts3.4/runtimeConfig.native.d.ts +7 -1
  82. package/dist-types/ts3.4/schemas/schemas_0.d.ts +39 -0
  83. package/package.json +8 -8
  84. package/dist-cjs/auth/httpAuthSchemeProvider.js +0 -40
  85. package/dist-cjs/endpoint/bdd.js +0 -52
  86. package/dist-cjs/endpoint/endpointResolver.js +0 -14
  87. package/dist-cjs/models/AppConfigServiceException.js +0 -8
  88. package/dist-cjs/models/errors.js +0 -97
  89. package/dist-cjs/runtimeConfig.browser.js +0 -32
  90. package/dist-cjs/runtimeConfig.js +0 -45
  91. package/dist-cjs/runtimeConfig.native.js +0 -12
  92. package/dist-cjs/runtimeConfig.shared.js +0 -38
  93. package/dist-cjs/schemas/schemas_0.js +0 -980
@@ -5,6 +5,7 @@ import { type CreateApplicationCommandInput, type CreateApplicationCommandOutput
5
5
  import { type CreateConfigurationProfileCommandInput, type CreateConfigurationProfileCommandOutput } from "./commands/CreateConfigurationProfileCommand";
6
6
  import { type CreateDeploymentStrategyCommandInput, type CreateDeploymentStrategyCommandOutput } from "./commands/CreateDeploymentStrategyCommand";
7
7
  import { type CreateEnvironmentCommandInput, type CreateEnvironmentCommandOutput } from "./commands/CreateEnvironmentCommand";
8
+ import { type CreateExperimentDefinitionCommandInput, type CreateExperimentDefinitionCommandOutput } from "./commands/CreateExperimentDefinitionCommand";
8
9
  import { type CreateExtensionAssociationCommandInput, type CreateExtensionAssociationCommandOutput } from "./commands/CreateExtensionAssociationCommand";
9
10
  import { type CreateExtensionCommandInput, type CreateExtensionCommandOutput } from "./commands/CreateExtensionCommand";
10
11
  import { type CreateHostedConfigurationVersionCommandInput, type CreateHostedConfigurationVersionCommandOutput } from "./commands/CreateHostedConfigurationVersionCommand";
@@ -12,6 +13,7 @@ import { type DeleteApplicationCommandInput, type DeleteApplicationCommandOutput
12
13
  import { type DeleteConfigurationProfileCommandInput, type DeleteConfigurationProfileCommandOutput } from "./commands/DeleteConfigurationProfileCommand";
13
14
  import { type DeleteDeploymentStrategyCommandInput, type DeleteDeploymentStrategyCommandOutput } from "./commands/DeleteDeploymentStrategyCommand";
14
15
  import { type DeleteEnvironmentCommandInput, type DeleteEnvironmentCommandOutput } from "./commands/DeleteEnvironmentCommand";
16
+ import { type DeleteExperimentDefinitionCommandInput, type DeleteExperimentDefinitionCommandOutput } from "./commands/DeleteExperimentDefinitionCommand";
15
17
  import { type DeleteExtensionAssociationCommandInput, type DeleteExtensionAssociationCommandOutput } from "./commands/DeleteExtensionAssociationCommand";
16
18
  import { type DeleteExtensionCommandInput, type DeleteExtensionCommandOutput } from "./commands/DeleteExtensionCommand";
17
19
  import { type DeleteHostedConfigurationVersionCommandInput, type DeleteHostedConfigurationVersionCommandOutput } from "./commands/DeleteHostedConfigurationVersionCommand";
@@ -22,6 +24,8 @@ import { type GetConfigurationProfileCommandInput, type GetConfigurationProfileC
22
24
  import { type GetDeploymentCommandInput, type GetDeploymentCommandOutput } from "./commands/GetDeploymentCommand";
23
25
  import { type GetDeploymentStrategyCommandInput, type GetDeploymentStrategyCommandOutput } from "./commands/GetDeploymentStrategyCommand";
24
26
  import { type GetEnvironmentCommandInput, type GetEnvironmentCommandOutput } from "./commands/GetEnvironmentCommand";
27
+ import { type GetExperimentDefinitionCommandInput, type GetExperimentDefinitionCommandOutput } from "./commands/GetExperimentDefinitionCommand";
28
+ import { type GetExperimentRunCommandInput, type GetExperimentRunCommandOutput } from "./commands/GetExperimentRunCommand";
25
29
  import { type GetExtensionAssociationCommandInput, type GetExtensionAssociationCommandOutput } from "./commands/GetExtensionAssociationCommand";
26
30
  import { type GetExtensionCommandInput, type GetExtensionCommandOutput } from "./commands/GetExtensionCommand";
27
31
  import { type GetHostedConfigurationVersionCommandInput, type GetHostedConfigurationVersionCommandOutput } from "./commands/GetHostedConfigurationVersionCommand";
@@ -30,12 +34,17 @@ import { type ListConfigurationProfilesCommandInput, type ListConfigurationProfi
30
34
  import { type ListDeploymentsCommandInput, type ListDeploymentsCommandOutput } from "./commands/ListDeploymentsCommand";
31
35
  import { type ListDeploymentStrategiesCommandInput, type ListDeploymentStrategiesCommandOutput } from "./commands/ListDeploymentStrategiesCommand";
32
36
  import { type ListEnvironmentsCommandInput, type ListEnvironmentsCommandOutput } from "./commands/ListEnvironmentsCommand";
37
+ import { type ListExperimentDefinitionsCommandInput, type ListExperimentDefinitionsCommandOutput } from "./commands/ListExperimentDefinitionsCommand";
38
+ import { type ListExperimentRunEventsCommandInput, type ListExperimentRunEventsCommandOutput } from "./commands/ListExperimentRunEventsCommand";
39
+ import { type ListExperimentRunsCommandInput, type ListExperimentRunsCommandOutput } from "./commands/ListExperimentRunsCommand";
33
40
  import { type ListExtensionAssociationsCommandInput, type ListExtensionAssociationsCommandOutput } from "./commands/ListExtensionAssociationsCommand";
34
41
  import { type ListExtensionsCommandInput, type ListExtensionsCommandOutput } from "./commands/ListExtensionsCommand";
35
42
  import { type ListHostedConfigurationVersionsCommandInput, type ListHostedConfigurationVersionsCommandOutput } from "./commands/ListHostedConfigurationVersionsCommand";
36
43
  import { type ListTagsForResourceCommandInput, type ListTagsForResourceCommandOutput } from "./commands/ListTagsForResourceCommand";
37
44
  import { type StartDeploymentCommandInput, type StartDeploymentCommandOutput } from "./commands/StartDeploymentCommand";
45
+ import { type StartExperimentRunCommandInput, type StartExperimentRunCommandOutput } from "./commands/StartExperimentRunCommand";
38
46
  import { type StopDeploymentCommandInput, type StopDeploymentCommandOutput } from "./commands/StopDeploymentCommand";
47
+ import { type StopExperimentRunCommandInput, type StopExperimentRunCommandOutput } from "./commands/StopExperimentRunCommand";
39
48
  import { type TagResourceCommandInput, type TagResourceCommandOutput } from "./commands/TagResourceCommand";
40
49
  import { type UntagResourceCommandInput, type UntagResourceCommandOutput } from "./commands/UntagResourceCommand";
41
50
  import { type UpdateAccountSettingsCommandInput, type UpdateAccountSettingsCommandOutput } from "./commands/UpdateAccountSettingsCommand";
@@ -43,6 +52,8 @@ import { type UpdateApplicationCommandInput, type UpdateApplicationCommandOutput
43
52
  import { type UpdateConfigurationProfileCommandInput, type UpdateConfigurationProfileCommandOutput } from "./commands/UpdateConfigurationProfileCommand";
44
53
  import { type UpdateDeploymentStrategyCommandInput, type UpdateDeploymentStrategyCommandOutput } from "./commands/UpdateDeploymentStrategyCommand";
45
54
  import { type UpdateEnvironmentCommandInput, type UpdateEnvironmentCommandOutput } from "./commands/UpdateEnvironmentCommand";
55
+ import { type UpdateExperimentDefinitionCommandInput, type UpdateExperimentDefinitionCommandOutput } from "./commands/UpdateExperimentDefinitionCommand";
56
+ import { type UpdateExperimentRunCommandInput, type UpdateExperimentRunCommandOutput } from "./commands/UpdateExperimentRunCommand";
46
57
  import { type UpdateExtensionAssociationCommandInput, type UpdateExtensionAssociationCommandOutput } from "./commands/UpdateExtensionAssociationCommand";
47
58
  import { type UpdateExtensionCommandInput, type UpdateExtensionCommandOutput } from "./commands/UpdateExtensionCommand";
48
59
  import { type ValidateConfigurationCommandInput, type ValidateConfigurationCommandOutput } from "./commands/ValidateConfigurationCommand";
@@ -71,6 +82,12 @@ export interface AppConfig {
71
82
  createEnvironment(args: CreateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<CreateEnvironmentCommandOutput>;
72
83
  createEnvironment(args: CreateEnvironmentCommandInput, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
73
84
  createEnvironment(args: CreateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateEnvironmentCommandOutput) => void): void;
85
+ /**
86
+ * @see {@link CreateExperimentDefinitionCommand}
87
+ */
88
+ createExperimentDefinition(args: CreateExperimentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<CreateExperimentDefinitionCommandOutput>;
89
+ createExperimentDefinition(args: CreateExperimentDefinitionCommandInput, cb: (err: any, data?: CreateExperimentDefinitionCommandOutput) => void): void;
90
+ createExperimentDefinition(args: CreateExperimentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: CreateExperimentDefinitionCommandOutput) => void): void;
74
91
  /**
75
92
  * @see {@link CreateExtensionCommand}
76
93
  */
@@ -113,6 +130,12 @@ export interface AppConfig {
113
130
  deleteEnvironment(args: DeleteEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<DeleteEnvironmentCommandOutput>;
114
131
  deleteEnvironment(args: DeleteEnvironmentCommandInput, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
115
132
  deleteEnvironment(args: DeleteEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteEnvironmentCommandOutput) => void): void;
133
+ /**
134
+ * @see {@link DeleteExperimentDefinitionCommand}
135
+ */
136
+ deleteExperimentDefinition(args: DeleteExperimentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<DeleteExperimentDefinitionCommandOutput>;
137
+ deleteExperimentDefinition(args: DeleteExperimentDefinitionCommandInput, cb: (err: any, data?: DeleteExperimentDefinitionCommandOutput) => void): void;
138
+ deleteExperimentDefinition(args: DeleteExperimentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: DeleteExperimentDefinitionCommandOutput) => void): void;
116
139
  /**
117
140
  * @see {@link DeleteExtensionCommand}
118
141
  */
@@ -174,6 +197,18 @@ export interface AppConfig {
174
197
  getEnvironment(args: GetEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<GetEnvironmentCommandOutput>;
175
198
  getEnvironment(args: GetEnvironmentCommandInput, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
176
199
  getEnvironment(args: GetEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetEnvironmentCommandOutput) => void): void;
200
+ /**
201
+ * @see {@link GetExperimentDefinitionCommand}
202
+ */
203
+ getExperimentDefinition(args: GetExperimentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<GetExperimentDefinitionCommandOutput>;
204
+ getExperimentDefinition(args: GetExperimentDefinitionCommandInput, cb: (err: any, data?: GetExperimentDefinitionCommandOutput) => void): void;
205
+ getExperimentDefinition(args: GetExperimentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExperimentDefinitionCommandOutput) => void): void;
206
+ /**
207
+ * @see {@link GetExperimentRunCommand}
208
+ */
209
+ getExperimentRun(args: GetExperimentRunCommandInput, options?: __HttpHandlerOptions): Promise<GetExperimentRunCommandOutput>;
210
+ getExperimentRun(args: GetExperimentRunCommandInput, cb: (err: any, data?: GetExperimentRunCommandOutput) => void): void;
211
+ getExperimentRun(args: GetExperimentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: GetExperimentRunCommandOutput) => void): void;
177
212
  /**
178
213
  * @see {@link GetExtensionCommand}
179
214
  */
@@ -224,6 +259,25 @@ export interface AppConfig {
224
259
  listEnvironments(args: ListEnvironmentsCommandInput, options?: __HttpHandlerOptions): Promise<ListEnvironmentsCommandOutput>;
225
260
  listEnvironments(args: ListEnvironmentsCommandInput, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
226
261
  listEnvironments(args: ListEnvironmentsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListEnvironmentsCommandOutput) => void): void;
262
+ /**
263
+ * @see {@link ListExperimentDefinitionsCommand}
264
+ */
265
+ listExperimentDefinitions(): Promise<ListExperimentDefinitionsCommandOutput>;
266
+ listExperimentDefinitions(args: ListExperimentDefinitionsCommandInput, options?: __HttpHandlerOptions): Promise<ListExperimentDefinitionsCommandOutput>;
267
+ listExperimentDefinitions(args: ListExperimentDefinitionsCommandInput, cb: (err: any, data?: ListExperimentDefinitionsCommandOutput) => void): void;
268
+ listExperimentDefinitions(args: ListExperimentDefinitionsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExperimentDefinitionsCommandOutput) => void): void;
269
+ /**
270
+ * @see {@link ListExperimentRunEventsCommand}
271
+ */
272
+ listExperimentRunEvents(args: ListExperimentRunEventsCommandInput, options?: __HttpHandlerOptions): Promise<ListExperimentRunEventsCommandOutput>;
273
+ listExperimentRunEvents(args: ListExperimentRunEventsCommandInput, cb: (err: any, data?: ListExperimentRunEventsCommandOutput) => void): void;
274
+ listExperimentRunEvents(args: ListExperimentRunEventsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExperimentRunEventsCommandOutput) => void): void;
275
+ /**
276
+ * @see {@link ListExperimentRunsCommand}
277
+ */
278
+ listExperimentRuns(args: ListExperimentRunsCommandInput, options?: __HttpHandlerOptions): Promise<ListExperimentRunsCommandOutput>;
279
+ listExperimentRuns(args: ListExperimentRunsCommandInput, cb: (err: any, data?: ListExperimentRunsCommandOutput) => void): void;
280
+ listExperimentRuns(args: ListExperimentRunsCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: ListExperimentRunsCommandOutput) => void): void;
227
281
  /**
228
282
  * @see {@link ListExtensionAssociationsCommand}
229
283
  */
@@ -256,12 +310,24 @@ export interface AppConfig {
256
310
  startDeployment(args: StartDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StartDeploymentCommandOutput>;
257
311
  startDeployment(args: StartDeploymentCommandInput, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
258
312
  startDeployment(args: StartDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartDeploymentCommandOutput) => void): void;
313
+ /**
314
+ * @see {@link StartExperimentRunCommand}
315
+ */
316
+ startExperimentRun(args: StartExperimentRunCommandInput, options?: __HttpHandlerOptions): Promise<StartExperimentRunCommandOutput>;
317
+ startExperimentRun(args: StartExperimentRunCommandInput, cb: (err: any, data?: StartExperimentRunCommandOutput) => void): void;
318
+ startExperimentRun(args: StartExperimentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StartExperimentRunCommandOutput) => void): void;
259
319
  /**
260
320
  * @see {@link StopDeploymentCommand}
261
321
  */
262
322
  stopDeployment(args: StopDeploymentCommandInput, options?: __HttpHandlerOptions): Promise<StopDeploymentCommandOutput>;
263
323
  stopDeployment(args: StopDeploymentCommandInput, cb: (err: any, data?: StopDeploymentCommandOutput) => void): void;
264
324
  stopDeployment(args: StopDeploymentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopDeploymentCommandOutput) => void): void;
325
+ /**
326
+ * @see {@link StopExperimentRunCommand}
327
+ */
328
+ stopExperimentRun(args: StopExperimentRunCommandInput, options?: __HttpHandlerOptions): Promise<StopExperimentRunCommandOutput>;
329
+ stopExperimentRun(args: StopExperimentRunCommandInput, cb: (err: any, data?: StopExperimentRunCommandOutput) => void): void;
330
+ stopExperimentRun(args: StopExperimentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: StopExperimentRunCommandOutput) => void): void;
265
331
  /**
266
332
  * @see {@link TagResourceCommand}
267
333
  */
@@ -305,6 +371,18 @@ export interface AppConfig {
305
371
  updateEnvironment(args: UpdateEnvironmentCommandInput, options?: __HttpHandlerOptions): Promise<UpdateEnvironmentCommandOutput>;
306
372
  updateEnvironment(args: UpdateEnvironmentCommandInput, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
307
373
  updateEnvironment(args: UpdateEnvironmentCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateEnvironmentCommandOutput) => void): void;
374
+ /**
375
+ * @see {@link UpdateExperimentDefinitionCommand}
376
+ */
377
+ updateExperimentDefinition(args: UpdateExperimentDefinitionCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExperimentDefinitionCommandOutput>;
378
+ updateExperimentDefinition(args: UpdateExperimentDefinitionCommandInput, cb: (err: any, data?: UpdateExperimentDefinitionCommandOutput) => void): void;
379
+ updateExperimentDefinition(args: UpdateExperimentDefinitionCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExperimentDefinitionCommandOutput) => void): void;
380
+ /**
381
+ * @see {@link UpdateExperimentRunCommand}
382
+ */
383
+ updateExperimentRun(args: UpdateExperimentRunCommandInput, options?: __HttpHandlerOptions): Promise<UpdateExperimentRunCommandOutput>;
384
+ updateExperimentRun(args: UpdateExperimentRunCommandInput, cb: (err: any, data?: UpdateExperimentRunCommandOutput) => void): void;
385
+ updateExperimentRun(args: UpdateExperimentRunCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateExperimentRunCommandOutput) => void): void;
308
386
  /**
309
387
  * @see {@link UpdateExtensionCommand}
310
388
  */
@@ -358,6 +436,27 @@ export interface AppConfig {
358
436
  * @returns AsyncIterable of {@link ListEnvironmentsCommandOutput}.
359
437
  */
360
438
  paginateListEnvironments(args: ListEnvironmentsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListEnvironmentsCommandOutput>;
439
+ /**
440
+ * @see {@link ListExperimentDefinitionsCommand}
441
+ * @param args - command input.
442
+ * @param paginationConfig - optional pagination config.
443
+ * @returns AsyncIterable of {@link ListExperimentDefinitionsCommandOutput}.
444
+ */
445
+ paginateListExperimentDefinitions(args?: ListExperimentDefinitionsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExperimentDefinitionsCommandOutput>;
446
+ /**
447
+ * @see {@link ListExperimentRunEventsCommand}
448
+ * @param args - command input.
449
+ * @param paginationConfig - optional pagination config.
450
+ * @returns AsyncIterable of {@link ListExperimentRunEventsCommandOutput}.
451
+ */
452
+ paginateListExperimentRunEvents(args: ListExperimentRunEventsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExperimentRunEventsCommandOutput>;
453
+ /**
454
+ * @see {@link ListExperimentRunsCommand}
455
+ * @param args - command input.
456
+ * @param paginationConfig - optional pagination config.
457
+ * @returns AsyncIterable of {@link ListExperimentRunsCommandOutput}.
458
+ */
459
+ paginateListExperimentRuns(args: ListExperimentRunsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListExperimentRunsCommandOutput>;
361
460
  /**
362
461
  * @see {@link ListExtensionAssociationsCommand}
363
462
  * @param args - command input.
@@ -393,47 +492,24 @@ export interface AppConfig {
393
492
  waitUntilEnvironmentReadyForDeployment(args: GetEnvironmentCommandInput, waiterConfig: number | Omit<WaiterConfiguration<AppConfig>, "client">): Promise<WaiterResult<GetEnvironmentCommandOutput>>;
394
493
  }
395
494
  /**
396
- * <p>AppConfig feature flags and dynamic configurations help software builders
397
- * quickly and securely adjust application behavior in production environments without full
398
- * code deployments. AppConfig speeds up software release frequency, improves
399
- * application resiliency, and helps you address emergent issues more quickly. With feature
400
- * flags, you can gradually release new capabilities to users and measure the impact of those
401
- * changes before fully deploying the new capabilities to all users. With operational flags
402
- * and dynamic configurations, you can update block lists, allow lists, throttling limits,
403
- * logging verbosity, and perform other operational tuning to quickly respond to issues in
404
- * production environments.</p>
405
- * <note>
406
- * <p>AppConfig is a tool in Amazon Web Services Systems Manager.</p>
407
- * </note>
408
- * <p>Despite the fact that application configuration content can vary greatly from
409
- * application to application, AppConfig supports the following use cases, which
410
- * cover a broad spectrum of customer needs:</p>
495
+ * <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>
496
+ * <p>AppConfig supports a broad spectrum of use cases:</p>
411
497
  * <ul>
412
498
  * <li>
413
499
  * <p>
414
- * <b>Feature flags and toggles</b> - Safely release new
415
- * capabilities to your customers in a controlled environment. Instantly roll back
416
- * changes if you experience a problem.</p>
500
+ * <b>Feature flags and toggles</b> Gradually release new capabilities to targeted users, monitor impact, and instantly roll back changes if issues occur.</p>
417
501
  * </li>
418
502
  * <li>
419
503
  * <p>
420
- * <b>Application tuning</b> - Carefully introduce
421
- * application changes while testing the impact of those changes with users in
422
- * production environments.</p>
504
+ * <b>Application tuning</b> Introduce changes safely in production, measure their effects, and refine behavior without redeploying code.</p>
423
505
  * </li>
424
506
  * <li>
425
507
  * <p>
426
- * <b>Allow list or block list</b> - Control access to
427
- * premium features or instantly block specific users without deploying new code.
428
- * </p>
508
+ * <b>Allow list or block list</b> Control access to features or restrict specific users in real time, without modifying application code. </p>
429
509
  * </li>
430
510
  * <li>
431
511
  * <p>
432
- * <b>Centralized configuration storage</b> - Keep your
433
- * configuration data organized and consistent across all of your workloads. You can use
434
- * AppConfig to deploy configuration data stored in the AppConfig
435
- * hosted configuration store, Secrets Manager, Systems Manager, Parameter
436
- * Store, or Amazon S3.</p>
512
+ * <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>
437
513
  * </li>
438
514
  * </ul>
439
515
  * <p>
@@ -442,103 +518,50 @@ export interface AppConfig {
442
518
  * <p>This section provides a high-level description of how AppConfig works and how
443
519
  * you get started.</p>
444
520
  * <dl>
445
- * <dt>1. Identify configuration values in code you want to manage in the cloud</dt>
446
- * <dd>
447
- * <p>Before you start creating AppConfig artifacts, we recommend you
448
- * identify configuration data in your code that you want to dynamically manage using
449
- * AppConfig. Good examples include feature flags or toggles, allow and
450
- * block lists, logging verbosity, service limits, and throttling rules, to name a
451
- * few.</p>
452
- * <p>If your configuration data already exists in the cloud, you can take advantage
453
- * of AppConfig validation, deployment, and extension features to further
454
- * streamline configuration data management.</p>
455
- * </dd>
456
- * <dt>2. Create an application namespace</dt>
521
+ * <dt>1. Identify configuration data to manage in AppConfig</dt>
457
522
  * <dd>
458
- * <p>To create a namespace, you create an AppConfig artifact called an
459
- * application. An application is simply an organizational construct like a
460
- * folder.</p>
523
+ * <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>
524
+ * <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>
461
525
  * </dd>
462
- * <dt>3. Create environments</dt>
526
+ * <dt>2. Create a configuration profile in AppConfig</dt>
463
527
  * <dd>
464
- * <p>For each AppConfig application, you define one or more environments.
465
- * An environment is a logical grouping of targets, such as applications in a
466
- * <code>Beta</code> or <code>Production</code> environment, Lambda functions,
467
- * or containers. You can also define environments for application subcomponents,
468
- * such as the <code>Web</code>, <code>Mobile</code>, and
469
- * <code>Back-end</code>.</p>
470
- * <p>You can configure Amazon CloudWatch alarms for each environment. The system monitors
471
- * alarms during a configuration deployment. If an alarm is triggered, the system
472
- * rolls back the configuration.</p>
473
- * </dd>
474
- * <dt>4. Create a configuration profile</dt>
475
- * <dd>
476
- * <p>A configuration profile includes, among other things, a URI that enables
477
- * AppConfig to locate your configuration data in its stored location
478
- * and a profile type. AppConfig supports two configuration profile types:
479
- * feature flags and freeform configurations. Feature flag configuration profiles
480
- * store their data in the AppConfig hosted configuration store and the URI
481
- * is simply <code>hosted</code>. For freeform configuration profiles, you can store
482
- * your data in the AppConfig hosted configuration store or any Amazon Web Services
483
- * 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
484
- * a free form configuration profile</a> in the the <i>AppConfig User Guide</i>.</p>
485
- * <p>A configuration profile can also include optional validators to ensure your
486
- * configuration data is syntactically and semantically correct. AppConfig
487
- * performs a check using the validators when you start a deployment. If any errors
488
- * are detected, the deployment rolls back to the previous configuration data.</p>
489
- * </dd>
490
- * <dt>5. Deploy configuration data</dt>
491
- * <dd>
492
- * <p>When you create a new deployment, you specify the following:</p>
528
+ * <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>
529
+ * <p>AppConfig supports two profile types</p>
493
530
  * <ul>
494
531
  * <li>
495
- * <p>An application ID</p>
496
- * </li>
497
- * <li>
498
- * <p>A configuration profile ID</p>
532
+ * <p>
533
+ * <b>Feature flags</b> – Enable controlled feature releases, gradual rollouts, and testing in production.</p>
499
534
  * </li>
500
535
  * <li>
501
- * <p>A configuration version</p>
502
- * </li>
503
- * <li>
504
- * <p>An environment ID where you want to deploy the configuration data</p>
505
- * </li>
506
- * <li>
507
- * <p>A deployment strategy ID that defines how fast you want the changes to
508
- * take effect</p>
536
+ * <p>
537
+ * <b>Free-form configurations</b> – Store and retrieve configuration data from external sources and update it without redeploying code.</p>
509
538
  * </li>
510
539
  * </ul>
511
- * <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
512
- * tasks:</p>
540
+ * <p>Both profile types help decouple configuration from code, support continuous delivery, and reduce deployment risk.</p>
541
+ * <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>
542
+ * <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>
543
+ * </dd>
544
+ * <dt>3. Deploy configuration data</dt>
545
+ * <dd>
546
+ * <p>When you start a deployment, AppConfig:</p>
513
547
  * <ol>
514
548
  * <li>
515
- * <p>Retrieves the configuration data from the underlying data store by using
516
- * the location URI in the configuration profile.</p>
549
+ * <p>Retrieves configuration data from the source defined in the configuration profile</p>
517
550
  * </li>
518
551
  * <li>
519
- * <p>Verifies the configuration data is syntactically and semantically correct
520
- * by using the validators you specified when you created your configuration
521
- * profile.</p>
552
+ * <p>Validates the data using the configured validators</p>
522
553
  * </li>
523
554
  * <li>
524
- * <p>Caches a copy of the data so it is ready to be retrieved by your
525
- * application. This cached copy is called the <i>deployed
526
- * data</i>.</p>
555
+ * <p>Delivers the validated configuration to AppConfig Agent</p>
527
556
  * </li>
528
557
  * </ol>
558
+ * <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>
529
559
  * </dd>
530
- * <dt>6. Retrieve the configuration</dt>
560
+ * <dt>4. Retrieve configuration data</dt>
531
561
  * <dd>
532
- * <p>You can configure AppConfig Agent as a local host and have the agent
533
- * 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
534
- * locally. To retrieve the data, your application makes an HTTP call to the
535
- * localhost server. AppConfig Agent supports several use cases, as
536
- * described in <a href="http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-simplified-methods.html">Simplified
537
- * retrieval methods</a> in the the <i>AppConfig User
538
- * Guide</i>.</p>
539
- * <p>If AppConfig Agent isn't supported for your use case, you can
540
- * configure your application to poll AppConfig for configuration updates
541
- * 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>
562
+ * <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>
563
+ * <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>
564
+ * <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>
542
565
  * </dd>
543
566
  * </dl>
544
567
  * <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