@aws-sdk/client-appconfig 3.1080.0 → 3.1082.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist-cjs/index.js CHANGED
@@ -69,7 +69,7 @@ const commonParams = {
69
69
  UseDualStack: { type: "builtInParams", name: "useDualstackEndpoint" },
70
70
  };
71
71
 
72
- var version = "3.1079.0";
72
+ var version = "3.1081.0";
73
73
  var packageInfo = {
74
74
  version: version};
75
75
 
@@ -25,6 +25,9 @@ declare const StartExperimentRunCommand_base: {
25
25
  };
26
26
  /**
27
27
  * <p>Starts an experiment run for the specified experiment definition. An experiment run delivers treatments to the target audience and collects metrics. You can start multiple experiment runs from the same experiment definition.</p>
28
+ * <note>
29
+ * <p>Billing for this experiment begins when you call this operation and continues until the experiment is stopped. For pricing details, see <a href="https://aws.amazon.com/systems-manager/pricing/">AppConfig pricing</a>.</p>
30
+ * </note>
28
31
  * @example
29
32
  * Use a bare-bones client and the command you need to make an API call.
30
33
  * ```javascript
@@ -142,6 +142,10 @@ declare const StopExperimentRunCommand_base: {
142
142
  * @throws {@link BadRequestException} (client fault)
143
143
  * <p>The input fails to satisfy the constraints specified by an Amazon Web Services service.</p>
144
144
  *
145
+ * @throws {@link ConflictException} (client fault)
146
+ * <p>The request could not be processed because of conflict in the current state of the
147
+ * resource.</p>
148
+ *
145
149
  * @throws {@link InternalServerException} (server fault)
146
150
  * <p>There was an internal failure in the AppConfig service.</p>
147
151
  *
@@ -27,12 +27,12 @@ export interface DeletionProtectionSettings {
27
27
  ProtectionPeriodInMinutes?: number | undefined;
28
28
  }
29
29
  /**
30
- * <p>Configuration settings for vended metrics.</p>
30
+ * <p>The configuration settings for vended metrics in your AppConfig account.</p>
31
31
  * @public
32
32
  */
33
33
  export interface VendedMetricsSettings {
34
34
  /**
35
- * <p>Whether vended metrics are enabled for the account.</p>
35
+ * <p>Specifies whether vended metrics are enabled for the account.</p>
36
36
  * @public
37
37
  */
38
38
  Enabled?: boolean | undefined;
@@ -51,7 +51,7 @@ export interface AccountSettings {
51
51
  */
52
52
  DeletionProtection?: DeletionProtectionSettings | undefined;
53
53
  /**
54
- * <p>Configuration for vended metrics in the account.</p>
54
+ * <p>The configuration for vended metrics in the account.</p>
55
55
  * @public
56
56
  */
57
57
  VendedMetrics?: VendedMetricsSettings | undefined;
@@ -796,7 +796,7 @@ export declare namespace AttributeValue {
796
796
  */
797
797
  export interface FlagValue {
798
798
  /**
799
- * <p>Whether the feature flag is enabled for this treatment.</p>
799
+ * <p>Specifies whether the feature flag is enabled for this treatment.</p>
800
800
  * @public
801
801
  */
802
802
  Enabled: boolean | undefined;
@@ -2994,7 +2994,7 @@ export interface StartDeploymentRequest {
2994
2994
  LatestDeploymentNumber?: number | undefined;
2995
2995
  }
2996
2996
  /**
2997
- * <p>Optional deployment parameters for an experiment run, including extension parameters and tags.</p>
2997
+ * <p>The deployment parameters for an experiment run, including dynamic extension parameters and tags.</p>
2998
2998
  * @public
2999
2999
  */
3000
3000
  export interface DeploymentParameters {
@@ -3044,7 +3044,7 @@ export interface StartExperimentRunRequest {
3044
3044
  */
3045
3045
  Tags?: Record<string, string> | undefined;
3046
3046
  /**
3047
- * <p>Optional deployment parameters including a KMS key for encryption.</p>
3047
+ * <p>The deployment parameters for the experiment run, including a KMS key identifier for encryption.</p>
3048
3048
  * @public
3049
3049
  */
3050
3050
  DeploymentParameters?: DeploymentParameters | undefined;
@@ -3101,7 +3101,7 @@ export interface StopExperimentRunRequest {
3101
3101
  */
3102
3102
  Result?: ExperimentRunResult | undefined;
3103
3103
  /**
3104
- * <p>Optional deployment parameters for the stop operation.</p>
3104
+ * <p>The deployment parameters for the stop operation.</p>
3105
3105
  * @public
3106
3106
  */
3107
3107
  DeploymentParameters?: DeploymentParameters | undefined;
@@ -3152,7 +3152,7 @@ export interface UpdateAccountSettingsRequest {
3152
3152
  */
3153
3153
  DeletionProtection?: DeletionProtectionSettings | undefined;
3154
3154
  /**
3155
- * <p>Configuration for vended metrics in the account.</p>
3155
+ * <p>The configuration for vended metrics in the account.</p>
3156
3156
  * @public
3157
3157
  */
3158
3158
  VendedMetrics?: VendedMetricsSettings | undefined;
@@ -3335,7 +3335,7 @@ export interface UpdateExperimentDefinitionRequest {
3335
3335
  */
3336
3336
  ExperimentDefinitionIdentifier: string | undefined;
3337
3337
  /**
3338
- * <p>An updated list of treatments.</p>
3338
+ * <p>The updated list of treatments to evaluate during the experiment. Each treatment defines a distinct variation compared to the control.</p>
3339
3339
  * @public
3340
3340
  */
3341
3341
  Treatments?: TreatmentInput[] | undefined;
@@ -3395,12 +3395,12 @@ export interface UpdateExperimentRunRequest {
3395
3395
  */
3396
3396
  ExposurePercentage?: number | undefined;
3397
3397
  /**
3398
- * <p>Updated treatment assignment overrides.</p>
3398
+ * <p>The updated treatment assignment overrides that assign specific entity IDs to treatments, bypassing random assignment.</p>
3399
3399
  * @public
3400
3400
  */
3401
3401
  TreatmentOverrides?: TreatmentOverrides | undefined;
3402
3402
  /**
3403
- * <p>Updated deployment parameters.</p>
3403
+ * <p>The updated deployment parameters for the experiment run.</p>
3404
3404
  * @public
3405
3405
  */
3406
3406
  DeploymentParameters?: DeploymentParameters | undefined;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-appconfig",
3
3
  "description": "AWS SDK for JavaScript Appconfig Client for Node.js, Browser and React Native",
4
- "version": "3.1080.0",
4
+ "version": "3.1082.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
7
7
  "build:cjs": "node ../../scripts/compilation/inline",
@@ -19,13 +19,13 @@
19
19
  "module": "./dist-es/index.js",
20
20
  "sideEffects": false,
21
21
  "dependencies": {
22
- "@aws-sdk/core": "^3.974.28",
23
- "@aws-sdk/credential-provider-node": "^3.972.63",
24
- "@aws-sdk/types": "^3.973.15",
25
- "@smithy/core": "^3.29.0",
26
- "@smithy/fetch-http-handler": "^5.6.2",
27
- "@smithy/node-http-handler": "^4.9.2",
28
- "@smithy/types": "^4.15.1",
22
+ "@aws-sdk/core": "^3.975.0",
23
+ "@aws-sdk/credential-provider-node": "^3.972.65",
24
+ "@aws-sdk/types": "^3.974.0",
25
+ "@smithy/core": "^3.29.2",
26
+ "@smithy/fetch-http-handler": "^5.6.4",
27
+ "@smithy/node-http-handler": "^4.9.4",
28
+ "@smithy/types": "^4.16.0",
29
29
  "tslib": "^2.6.2"
30
30
  },
31
31
  "devDependencies": {