aws-sdk 2.1597.0 → 2.1598.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -281,8 +281,48 @@ declare namespace Batch {
281
281
  * A short, human-readable string to provide additional details for the current status of the job attempt.
282
282
  */
283
283
  statusReason?: String;
284
+ /**
285
+ * The properties for a task definition that describes the container and volume definitions of an Amazon ECS task.
286
+ */
287
+ taskProperties?: ListAttemptEcsTaskDetails;
284
288
  }
285
289
  export type AttemptDetails = AttemptDetail[];
290
+ export interface AttemptEcsTaskDetails {
291
+ /**
292
+ * The Amazon Resource Name (ARN) of the container instance that hosts the task.
293
+ */
294
+ containerInstanceArn?: String;
295
+ /**
296
+ * The ARN of the Amazon ECS task.
297
+ */
298
+ taskArn?: String;
299
+ /**
300
+ * A list of containers that are included in the taskProperties list.
301
+ */
302
+ containers?: ListAttemptTaskContainerDetails;
303
+ }
304
+ export interface AttemptTaskContainerDetails {
305
+ /**
306
+ * The exit code for the container’s attempt. A non-zero exit code is considered failed.
307
+ */
308
+ exitCode?: Integer;
309
+ /**
310
+ * The name of a container.
311
+ */
312
+ name?: String;
313
+ /**
314
+ * A short (255 max characters) string that's easy to understand and provides additional details for a running or stopped container.
315
+ */
316
+ reason?: String;
317
+ /**
318
+ * The name of the Amazon CloudWatch Logs log stream that's associated with the container. The log group for Batch jobs is /aws/batch/job. Each container attempt receives a log stream name when they reach the RUNNING status.
319
+ */
320
+ logStreamName?: String;
321
+ /**
322
+ * The network interfaces that are associated with the job attempt.
323
+ */
324
+ networkInterfaces?: NetworkInterfaceList;
325
+ }
286
326
  export type Boolean = boolean;
287
327
  export type CEState = "ENABLED"|"DISABLED"|string;
288
328
  export type CEStatus = "CREATING"|"UPDATING"|"DELETING"|"DELETED"|"VALID"|"INVALID"|string;
@@ -1185,6 +1225,10 @@ declare namespace Batch {
1185
1225
  volumes?: Volumes;
1186
1226
  }
1187
1227
  export interface EksAttemptContainerDetail {
1228
+ /**
1229
+ * The name of a container.
1230
+ */
1231
+ name?: String;
1188
1232
  /**
1189
1233
  * The exit code returned for the job attempt. A non-zero exit code is considered failed.
1190
1234
  */
@@ -1449,7 +1493,7 @@ declare namespace Batch {
1449
1493
  */
1450
1494
  dnsPolicy?: String;
1451
1495
  /**
1452
- * References a Kubernetes secret resource. This object must start and end with an alphanumeric character, is required to be lowercase, can include periods (.) and hyphens (-), and can't contain more than 253 characters. ImagePullSecret$name is required when this object is used.
1496
+ * References a Kubernetes secret resource. It holds a list of secrets. These secrets help to gain access to pull an images from a private registry. ImagePullSecret$name is required when this object is used.
1453
1497
  */
1454
1498
  imagePullSecrets?: ImagePullSecrets;
1455
1499
  /**
@@ -1487,7 +1531,7 @@ declare namespace Batch {
1487
1531
  */
1488
1532
  dnsPolicy?: String;
1489
1533
  /**
1490
- * Displays the reference pointer to the Kubernetes secret resource.
1534
+ * Displays the reference pointer to the Kubernetes secret resource. These secrets help to gain access to pull an images from a private registry.
1491
1535
  */
1492
1536
  imagePullSecrets?: ImagePullSecrets;
1493
1537
  /**
@@ -1898,7 +1942,7 @@ declare namespace Batch {
1898
1942
  */
1899
1943
  reason: String;
1900
1944
  /**
1901
- * The state of the job needed to trigger the action. The only supported value is "RUNNABLE".
1945
+ * The state of the job needed to trigger the action. The only supported value is RUNNABLE.
1902
1946
  */
1903
1947
  state: JobStateTimeLimitActionsState;
1904
1948
  /**
@@ -1906,7 +1950,7 @@ declare namespace Batch {
1906
1950
  */
1907
1951
  maxTimeSeconds: Integer;
1908
1952
  /**
1909
- * The action to take when a job is at the head of the job queue in the specified state for the specified period of time. The only supported value is "CANCEL", which will cancel the job.
1953
+ * The action to take when a job is at the head of the job queue in the specified state for the specified period of time. The only supported value is CANCEL, which will cancel the job.
1910
1954
  */
1911
1955
  action: JobStateTimeLimitActionsAction;
1912
1956
  }
@@ -2032,6 +2076,8 @@ declare namespace Batch {
2032
2076
  */
2033
2077
  swappiness?: Integer;
2034
2078
  }
2079
+ export type ListAttemptEcsTaskDetails = AttemptEcsTaskDetails[];
2080
+ export type ListAttemptTaskContainerDetails = AttemptTaskContainerDetails[];
2035
2081
  export type ListEcsTaskDetails = EcsTaskDetails[];
2036
2082
  export type ListEcsTaskProperties = EcsTaskProperties[];
2037
2083
  export type ListJobsFilterList = KeyValuesPair[];
@@ -94,11 +94,11 @@ declare class CloudFront extends CloudFrontCustomizations {
94
94
  */
95
95
  createFunction(callback?: (err: AWSError, data: CloudFront.Types.CreateFunctionResult) => void): Request<CloudFront.Types.CreateFunctionResult, AWSError>;
96
96
  /**
97
- * Create a new invalidation.
97
+ * Create a new invalidation. For more information, see Invalidating files in the Amazon CloudFront Developer Guide.
98
98
  */
99
99
  createInvalidation(params: CloudFront.Types.CreateInvalidationRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateInvalidationResult) => void): Request<CloudFront.Types.CreateInvalidationResult, AWSError>;
100
100
  /**
101
- * Create a new invalidation.
101
+ * Create a new invalidation. For more information, see Invalidating files in the Amazon CloudFront Developer Guide.
102
102
  */
103
103
  createInvalidation(callback?: (err: AWSError, data: CloudFront.Types.CreateInvalidationResult) => void): Request<CloudFront.Types.CreateInvalidationResult, AWSError>;
104
104
  /**
@@ -110,11 +110,11 @@ declare class CloudFront extends CloudFrontCustomizations {
110
110
  */
111
111
  createKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.CreateKeyGroupResult) => void): Request<CloudFront.Types.CreateKeyGroupResult, AWSError>;
112
112
  /**
113
- * Specifies the Key Value Store resource to add to your account. In your account, the Key Value Store names must be unique. You can also import Key Value Store data in JSON format from an S3 bucket by providing a valid ImportSource that you own.
113
+ * Specifies the key value store resource to add to your account. In your account, the key value store names must be unique. You can also import key value store data in JSON format from an S3 bucket by providing a valid ImportSource that you own.
114
114
  */
115
115
  createKeyValueStore(params: CloudFront.Types.CreateKeyValueStoreRequest, callback?: (err: AWSError, data: CloudFront.Types.CreateKeyValueStoreResult) => void): Request<CloudFront.Types.CreateKeyValueStoreResult, AWSError>;
116
116
  /**
117
- * Specifies the Key Value Store resource to add to your account. In your account, the Key Value Store names must be unique. You can also import Key Value Store data in JSON format from an S3 bucket by providing a valid ImportSource that you own.
117
+ * Specifies the key value store resource to add to your account. In your account, the key value store names must be unique. You can also import key value store data in JSON format from an S3 bucket by providing a valid ImportSource that you own.
118
118
  */
119
119
  createKeyValueStore(callback?: (err: AWSError, data: CloudFront.Types.CreateKeyValueStoreResult) => void): Request<CloudFront.Types.CreateKeyValueStoreResult, AWSError>;
120
120
  /**
@@ -246,11 +246,11 @@ declare class CloudFront extends CloudFrontCustomizations {
246
246
  */
247
247
  deleteKeyGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
248
248
  /**
249
- * Specifies the Key Value Store to delete.
249
+ * Specifies the key value store to delete.
250
250
  */
251
251
  deleteKeyValueStore(params: CloudFront.Types.DeleteKeyValueStoreRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
252
252
  /**
253
- * Specifies the Key Value Store to delete.
253
+ * Specifies the key value store to delete.
254
254
  */
255
255
  deleteKeyValueStore(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
256
256
  /**
@@ -318,11 +318,11 @@ declare class CloudFront extends CloudFrontCustomizations {
318
318
  */
319
319
  describeFunction(callback?: (err: AWSError, data: CloudFront.Types.DescribeFunctionResult) => void): Request<CloudFront.Types.DescribeFunctionResult, AWSError>;
320
320
  /**
321
- * Specifies the Key Value Store and its configuration.
321
+ * Specifies the key value store and its configuration.
322
322
  */
323
323
  describeKeyValueStore(params: CloudFront.Types.DescribeKeyValueStoreRequest, callback?: (err: AWSError, data: CloudFront.Types.DescribeKeyValueStoreResult) => void): Request<CloudFront.Types.DescribeKeyValueStoreResult, AWSError>;
324
324
  /**
325
- * Specifies the Key Value Store and its configuration.
325
+ * Specifies the key value store and its configuration.
326
326
  */
327
327
  describeKeyValueStore(callback?: (err: AWSError, data: CloudFront.Types.DescribeKeyValueStoreResult) => void): Request<CloudFront.Types.DescribeKeyValueStoreResult, AWSError>;
328
328
  /**
@@ -678,11 +678,11 @@ declare class CloudFront extends CloudFrontCustomizations {
678
678
  */
679
679
  listKeyGroups(callback?: (err: AWSError, data: CloudFront.Types.ListKeyGroupsResult) => void): Request<CloudFront.Types.ListKeyGroupsResult, AWSError>;
680
680
  /**
681
- * Specifies the Key Value Stores to list.
681
+ * Specifies the key value stores to list.
682
682
  */
683
683
  listKeyValueStores(params: CloudFront.Types.ListKeyValueStoresRequest, callback?: (err: AWSError, data: CloudFront.Types.ListKeyValueStoresResult) => void): Request<CloudFront.Types.ListKeyValueStoresResult, AWSError>;
684
684
  /**
685
- * Specifies the Key Value Stores to list.
685
+ * Specifies the key value stores to list.
686
686
  */
687
687
  listKeyValueStores(callback?: (err: AWSError, data: CloudFront.Types.ListKeyValueStoresResult) => void): Request<CloudFront.Types.ListKeyValueStoresResult, AWSError>;
688
688
  /**
@@ -846,11 +846,11 @@ declare class CloudFront extends CloudFrontCustomizations {
846
846
  */
847
847
  updateKeyGroup(callback?: (err: AWSError, data: CloudFront.Types.UpdateKeyGroupResult) => void): Request<CloudFront.Types.UpdateKeyGroupResult, AWSError>;
848
848
  /**
849
- * Specifies the Key Value Store to update.
849
+ * Specifies the key value store to update.
850
850
  */
851
851
  updateKeyValueStore(params: CloudFront.Types.UpdateKeyValueStoreRequest, callback?: (err: AWSError, data: CloudFront.Types.UpdateKeyValueStoreResult) => void): Request<CloudFront.Types.UpdateKeyValueStoreResult, AWSError>;
852
852
  /**
853
- * Specifies the Key Value Store to update.
853
+ * Specifies the key value store to update.
854
854
  */
855
855
  updateKeyValueStore(callback?: (err: AWSError, data: CloudFront.Types.UpdateKeyValueStoreResult) => void): Request<CloudFront.Types.UpdateKeyValueStoreResult, AWSError>;
856
856
  /**
@@ -1397,7 +1397,7 @@ declare namespace CloudFront {
1397
1397
  }
1398
1398
  export interface ContinuousDeploymentSingleWeightConfig {
1399
1399
  /**
1400
- * The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and .15.
1400
+ * The percentage of traffic to send to a staging distribution, expressed as a decimal number between 0 and 0.15. For example, a value of 0.10 means 10% of traffic is sent to the staging distribution.
1401
1401
  */
1402
1402
  Weight: float;
1403
1403
  SessionStickinessConfig?: SessionStickinessConfig;
@@ -1666,11 +1666,11 @@ declare namespace CloudFront {
1666
1666
  }
1667
1667
  export interface CreateKeyValueStoreRequest {
1668
1668
  /**
1669
- * The name of the Key Value Store. The maximum length of the name is 32 characters.
1669
+ * The name of the key value store. The minimum length is 1 character and the maximum length is 64 characters.
1670
1670
  */
1671
1671
  Name: KeyValueStoreName;
1672
1672
  /**
1673
- * The comment of the Key Value Store.
1673
+ * The comment of the key value store.
1674
1674
  */
1675
1675
  Comment?: KeyValueStoreComment;
1676
1676
  /**
@@ -1680,15 +1680,15 @@ declare namespace CloudFront {
1680
1680
  }
1681
1681
  export interface CreateKeyValueStoreResult {
1682
1682
  /**
1683
- * The resulting Key Value Store.
1683
+ * The resulting key value store.
1684
1684
  */
1685
1685
  KeyValueStore?: KeyValueStore;
1686
1686
  /**
1687
- * The ETag in the resulting Key Value Store.
1687
+ * The ETag in the resulting key value store.
1688
1688
  */
1689
1689
  ETag?: string;
1690
1690
  /**
1691
- * The location of the resulting Key Value Store.
1691
+ * The location of the resulting key value store.
1692
1692
  */
1693
1693
  Location?: string;
1694
1694
  }
@@ -1782,7 +1782,7 @@ declare namespace CloudFront {
1782
1782
  */
1783
1783
  Name: string;
1784
1784
  /**
1785
- * The sampling rate for this real-time log configuration. The sampling rate determines the percentage of viewer requests that are represented in the real-time log data. You must provide an integer between 1 and 100, inclusive.
1785
+ * The sampling rate for this real-time log configuration. You can specify a whole number between 1 and 100 (inclusive) to determine the percentage of viewer requests that are represented in the real-time log data.
1786
1786
  */
1787
1787
  SamplingRate: long;
1788
1788
  }
@@ -1948,7 +1948,7 @@ declare namespace CloudFront {
1948
1948
  */
1949
1949
  LambdaFunctionAssociations?: LambdaFunctionAssociations;
1950
1950
  /**
1951
- * A list of CloudFront functions that are associated with this cache behavior. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.
1951
+ * A list of CloudFront functions that are associated with this cache behavior. Your functions must be published to the LIVE stage to associate them with a cache behavior.
1952
1952
  */
1953
1953
  FunctionAssociations?: FunctionAssociations;
1954
1954
  /**
@@ -2070,11 +2070,11 @@ declare namespace CloudFront {
2070
2070
  }
2071
2071
  export interface DeleteKeyValueStoreRequest {
2072
2072
  /**
2073
- * The name of the Key Value Store.
2073
+ * The name of the key value store.
2074
2074
  */
2075
2075
  Name: KeyValueStoreName;
2076
2076
  /**
2077
- * The Key Value Store to delete, if a match occurs.
2077
+ * The key value store to delete, if a match occurs.
2078
2078
  */
2079
2079
  IfMatch: string;
2080
2080
  }
@@ -2168,17 +2168,17 @@ declare namespace CloudFront {
2168
2168
  }
2169
2169
  export interface DescribeKeyValueStoreRequest {
2170
2170
  /**
2171
- * The name of the Key Value Store.
2171
+ * The name of the key value store.
2172
2172
  */
2173
2173
  Name: KeyValueStoreName;
2174
2174
  }
2175
2175
  export interface DescribeKeyValueStoreResult {
2176
2176
  /**
2177
- * The resulting Key Value Store.
2177
+ * The resulting key value store.
2178
2178
  */
2179
2179
  KeyValueStore?: KeyValueStore;
2180
2180
  /**
2181
- * The ETag of the resulting Key Value Store.
2181
+ * The ETag of the resulting key value store.
2182
2182
  */
2183
2183
  ETag?: string;
2184
2184
  }
@@ -2282,11 +2282,11 @@ declare namespace CloudFront {
2282
2282
  */
2283
2283
  Restrictions?: Restrictions;
2284
2284
  /**
2285
- * A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/473e64fd-f30b-4765-81a0-62ad96dd167a. To specify a web ACL created using WAF Classic, use the ACL ID, for example 473e64fd-f30b-4765-81a0-62ad96dd167a. WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.
2285
+ * A unique identifier that specifies the WAF web ACL, if any, to associate with this distribution. To specify a web ACL created using the latest version of WAF, use the ACL ARN, for example arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111. To specify a web ACL created using WAF Classic, use the ACL ID, for example a1b2c3d4-5678-90ab-cdef-EXAMPLE11111. WAF is a web application firewall that lets you monitor the HTTP and HTTPS requests that are forwarded to CloudFront, and lets you control access to your content. Based on conditions that you specify, such as the IP addresses that requests originate from or the values of query strings, CloudFront responds to requests either with the requested content or with an HTTP 403 status code (Forbidden). You can also configure CloudFront to return a custom error page when a request is blocked. For more information about WAF, see the WAF Developer Guide.
2286
2286
  */
2287
2287
  WebACLId?: string;
2288
2288
  /**
2289
- * (Optional) Specify the maximum HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version. For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI). For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.
2289
+ * (Optional) Specify the HTTP version(s) that you want viewers to use to communicate with CloudFront. The default value for new web distributions is http2. Viewers that don't support HTTP/2 automatically use an earlier HTTP version. For viewers and CloudFront to use HTTP/2, viewers must support TLSv1.2 or later, and must support Server Name Indication (SNI). For viewers and CloudFront to use HTTP/3, viewers must support TLSv1.3 and Server Name Indication (SNI). CloudFront supports HTTP/3 connection migration to allow the viewer to switch networks without losing connection. For more information about connection migration, see Connection Migration at RFC 9000. For more information about supported TLSv1.3 ciphers, see Supported protocols and ciphers between viewers and CloudFront.
2290
2290
  */
2291
2291
  HttpVersion?: HttpVersion;
2292
2292
  /**
@@ -2447,7 +2447,7 @@ declare namespace CloudFront {
2447
2447
  */
2448
2448
  AliasICPRecordals?: AliasICPRecordals;
2449
2449
  /**
2450
- * Whether the primary distribution has a staging distribution enabled.
2450
+ * A Boolean that indicates whether this is a staging distribution. When this value is true, this is a staging distribution. When this value is false, this is not a staging distribution.
2451
2451
  */
2452
2452
  Staging: boolean;
2453
2453
  }
@@ -2685,7 +2685,7 @@ declare namespace CloudFront {
2685
2685
  */
2686
2686
  Quantity: integer;
2687
2687
  /**
2688
- * The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. CloudFront functions must be published to the LIVE stage to associate them with a cache behavior.
2688
+ * The CloudFront functions that are associated with a cache behavior in a CloudFront distribution. Your functions must be published to the LIVE stage to associate them with a cache behavior.
2689
2689
  */
2690
2690
  Items?: FunctionAssociationList;
2691
2691
  }
@@ -2700,7 +2700,7 @@ declare namespace CloudFront {
2700
2700
  */
2701
2701
  Runtime: FunctionRuntime;
2702
2702
  /**
2703
- * The configuration for the Key Value Store associations.
2703
+ * The configuration for the key value store associations.
2704
2704
  */
2705
2705
  KeyValueStoreAssociations?: KeyValueStoreAssociations;
2706
2706
  }
@@ -3243,11 +3243,11 @@ declare namespace CloudFront {
3243
3243
  export type ICPRecordalStatus = "APPROVED"|"SUSPENDED"|"PENDING"|string;
3244
3244
  export interface ImportSource {
3245
3245
  /**
3246
- * The source type of the import source for the Key Value Store.
3246
+ * The source type of the import source for the key value store.
3247
3247
  */
3248
3248
  SourceType: ImportSourceType;
3249
3249
  /**
3250
- * The Amazon Resource Name (ARN) of the import source for the Key Value Store.
3250
+ * The Amazon Resource Name (ARN) of the import source for the key value store.
3251
3251
  */
3252
3252
  SourceARN: string;
3253
3253
  }
@@ -3396,64 +3396,64 @@ declare namespace CloudFront {
3396
3396
  }
3397
3397
  export interface KeyValueStore {
3398
3398
  /**
3399
- * The name of the Key Value Store.
3399
+ * The name of the key value store.
3400
3400
  */
3401
3401
  Name: string;
3402
3402
  /**
3403
- * The unique Id for the Key Value Store.
3403
+ * The unique Id for the key value store.
3404
3404
  */
3405
3405
  Id: string;
3406
3406
  /**
3407
- * A comment for the Key Value Store.
3407
+ * A comment for the key value store.
3408
3408
  */
3409
3409
  Comment: string;
3410
3410
  /**
3411
- * The Amazon Resource Name (ARN) of the Key Value Store.
3411
+ * The Amazon Resource Name (ARN) of the key value store.
3412
3412
  */
3413
3413
  ARN: string;
3414
3414
  /**
3415
- * The status of the Key Value Store.
3415
+ * The status of the key value store.
3416
3416
  */
3417
3417
  Status?: string;
3418
3418
  /**
3419
- * The last-modified time of the Key Value Store.
3419
+ * The last-modified time of the key value store.
3420
3420
  */
3421
3421
  LastModifiedTime: timestamp;
3422
3422
  }
3423
3423
  export type KeyValueStoreARN = string;
3424
3424
  export interface KeyValueStoreAssociation {
3425
3425
  /**
3426
- * The Amazon Resource Name (ARN) of the Key Value Store association.
3426
+ * The Amazon Resource Name (ARN) of the key value store association.
3427
3427
  */
3428
3428
  KeyValueStoreARN: KeyValueStoreARN;
3429
3429
  }
3430
3430
  export type KeyValueStoreAssociationList = KeyValueStoreAssociation[];
3431
3431
  export interface KeyValueStoreAssociations {
3432
3432
  /**
3433
- * The quantity of Key Value Store associations.
3433
+ * The quantity of key value store associations.
3434
3434
  */
3435
3435
  Quantity: integer;
3436
3436
  /**
3437
- * The items of the Key Value Store association.
3437
+ * The items of the key value store association.
3438
3438
  */
3439
3439
  Items?: KeyValueStoreAssociationList;
3440
3440
  }
3441
3441
  export type KeyValueStoreComment = string;
3442
3442
  export interface KeyValueStoreList {
3443
3443
  /**
3444
- * The next marker associated with the Key Value Store list.
3444
+ * The next marker associated with the key value store list.
3445
3445
  */
3446
3446
  NextMarker?: string;
3447
3447
  /**
3448
- * The maximum number of items in the Key Value Store list.
3448
+ * The maximum number of items in the key value store list.
3449
3449
  */
3450
3450
  MaxItems: integer;
3451
3451
  /**
3452
- * The quantity of the Key Value Store list.
3452
+ * The quantity of the key value store list.
3453
3453
  */
3454
3454
  Quantity: integer;
3455
3455
  /**
3456
- * The items of the Key Value Store list.
3456
+ * The items of the key value store list.
3457
3457
  */
3458
3458
  Items?: KeyValueStoreSummaryList;
3459
3459
  }
@@ -3676,7 +3676,7 @@ declare namespace CloudFront {
3676
3676
  */
3677
3677
  MaxItems?: string;
3678
3678
  /**
3679
- * The ID of the WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL.
3679
+ * The ID of the WAF web ACL that you want to list the associated distributions. If you specify "null" for the ID, the request returns a list of the distributions that aren't associated with a web ACL. For WAFV2, this is the ARN of the web ACL, such as arn:aws:wafv2:us-east-1:123456789012:global/webacl/ExampleWebACL/a1b2c3d4-5678-90ab-cdef-EXAMPLE11111. For WAF Classic, this is the ID of the web ACL, such as a1b2c3d4-5678-90ab-cdef-EXAMPLE11111.
3680
3680
  */
3681
3681
  WebACLId: string;
3682
3682
  }
@@ -3792,21 +3792,21 @@ declare namespace CloudFront {
3792
3792
  }
3793
3793
  export interface ListKeyValueStoresRequest {
3794
3794
  /**
3795
- * The marker associated with the Key Value Stores list.
3795
+ * The marker associated with the key value stores list.
3796
3796
  */
3797
3797
  Marker?: string;
3798
3798
  /**
3799
- * The maximum number of items in the Key Value Stores list.
3799
+ * The maximum number of items in the key value stores list.
3800
3800
  */
3801
3801
  MaxItems?: string;
3802
3802
  /**
3803
- * The status of the request for the Key Value Stores list.
3803
+ * The status of the request for the key value stores list.
3804
3804
  */
3805
3805
  Status?: string;
3806
3806
  }
3807
3807
  export interface ListKeyValueStoresResult {
3808
3808
  /**
3809
- * The resulting Key Value Stores list.
3809
+ * The resulting key value stores list.
3810
3810
  */
3811
3811
  KeyValueStoreList?: KeyValueStoreList;
3812
3812
  }
@@ -4008,7 +4008,7 @@ declare namespace CloudFront {
4008
4008
  }
4009
4009
  export interface OriginAccessControlConfig {
4010
4010
  /**
4011
- * A name to identify the origin access control.
4011
+ * A name to identify the origin access control. You can specify up to 64 characters.
4012
4012
  */
4013
4013
  Name: string;
4014
4014
  /**
@@ -4054,7 +4054,7 @@ declare namespace CloudFront {
4054
4054
  */
4055
4055
  Items?: OriginAccessControlSummaryList;
4056
4056
  }
4057
- export type OriginAccessControlOriginTypes = "s3"|"mediastore"|string;
4057
+ export type OriginAccessControlOriginTypes = "s3"|"mediastore"|"mediapackagev2"|"lambda"|string;
4058
4058
  export type OriginAccessControlSigningBehaviors = "never"|"always"|"no-override"|string;
4059
4059
  export type OriginAccessControlSigningProtocols = "sigv4"|string;
4060
4060
  export interface OriginAccessControlSummary {
@@ -4733,7 +4733,7 @@ declare namespace CloudFront {
4733
4733
  */
4734
4734
  ContentTypeOptions?: ResponseHeadersPolicyContentTypeOptions;
4735
4735
  /**
4736
- * Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value. For more information about the Strict-Transport-Security HTTP response header, see Strict-Transport-Security in the MDN Web Docs.
4736
+ * Determines whether CloudFront includes the Strict-Transport-Security HTTP response header and the header's value. For more information about the Strict-Transport-Security HTTP response header, see Security headers in the Amazon CloudFront Developer Guide and Strict-Transport-Security in the MDN Web Docs.
4737
4737
  */
4738
4738
  StrictTransportSecurity?: ResponseHeadersPolicyStrictTransportSecurity;
4739
4739
  }
@@ -4813,7 +4813,7 @@ declare namespace CloudFront {
4813
4813
  }
4814
4814
  export interface S3OriginConfig {
4815
4815
  /**
4816
- * The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is: origin-access-identity/cloudfront/ID-of-origin-access-identity where ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity. If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element. To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element. To replace the origin access identity, update the distribution configuration and specify the new origin access identity. For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
4816
+ * If you're using origin access control (OAC) instead of origin access identity, specify an empty OriginAccessIdentity element. For more information, see Restricting access to an Amazon Web Services in the Amazon CloudFront Developer Guide. The CloudFront origin access identity to associate with the origin. Use an origin access identity to configure the origin so that viewers can only access objects in an Amazon S3 bucket through CloudFront. The format of the value is: origin-access-identity/cloudfront/ID-of-origin-access-identity The ID-of-origin-access-identity is the value that CloudFront returned in the ID element when you created the origin access identity. If you want viewers to be able to access objects using either the CloudFront URL or the Amazon S3 URL, specify an empty OriginAccessIdentity element. To delete the origin access identity from an existing distribution, update the distribution configuration and include an empty OriginAccessIdentity element. To replace the origin access identity, update the distribution configuration and specify the new origin access identity. For more information about the origin access identity, see Serving Private Content through CloudFront in the Amazon CloudFront Developer Guide.
4817
4817
  */
4818
4818
  OriginAccessIdentity: string;
4819
4819
  }
@@ -4825,7 +4825,7 @@ declare namespace CloudFront {
4825
4825
  */
4826
4826
  IdleTTL: integer;
4827
4827
  /**
4828
- * The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes). The value must be less than or equal to IdleTTL.
4828
+ * The maximum amount of time to consider requests from the viewer as being part of the same session. Allowed values are 300–3600 seconds (5–60 minutes). The value must be greater than or equal to IdleTTL.
4829
4829
  */
4830
4830
  MaximumTTL: integer;
4831
4831
  }
@@ -5379,25 +5379,25 @@ declare namespace CloudFront {
5379
5379
  }
5380
5380
  export interface UpdateKeyValueStoreRequest {
5381
5381
  /**
5382
- * The name of the Key Value Store to update.
5382
+ * The name of the key value store to update.
5383
5383
  */
5384
5384
  Name: KeyValueStoreName;
5385
5385
  /**
5386
- * The comment of the Key Value Store to update.
5386
+ * The comment of the key value store to update.
5387
5387
  */
5388
5388
  Comment: KeyValueStoreComment;
5389
5389
  /**
5390
- * The Key Value Store to update, if a match occurs.
5390
+ * The key value store to update, if a match occurs.
5391
5391
  */
5392
5392
  IfMatch: string;
5393
5393
  }
5394
5394
  export interface UpdateKeyValueStoreResult {
5395
5395
  /**
5396
- * The resulting Key Value Store to update.
5396
+ * The resulting key value store to update.
5397
5397
  */
5398
5398
  KeyValueStore?: KeyValueStore;
5399
5399
  /**
5400
- * The ETag of the resulting Key Value Store.
5400
+ * The ETag of the resulting key value store.
5401
5401
  */
5402
5402
  ETag?: string;
5403
5403
  }
@@ -397,9 +397,13 @@ declare namespace CloudWatch {
397
397
  */
398
398
  Configuration?: AnomalyDetectorConfiguration;
399
399
  /**
400
- * The current status of the anomaly detector's training. The possible values are TRAINED | PENDING_TRAINING | TRAINED_INSUFFICIENT_DATA
400
+ * The current status of the anomaly detector's training.
401
401
  */
402
402
  StateValue?: AnomalyDetectorStateValue;
403
+ /**
404
+ * This object includes parameters that you can use to provide information about your metric to CloudWatch to help it build more accurate anomaly detection models. Currently, it includes the PeriodicSpikes parameter.
405
+ */
406
+ MetricCharacteristics?: MetricCharacteristics;
403
407
  /**
404
408
  * The CloudWatch metric and statistic for this anomaly detector.
405
409
  */
@@ -1567,6 +1571,12 @@ declare namespace CloudWatch {
1567
1571
  StateTransitionedTimestamp?: Timestamp;
1568
1572
  }
1569
1573
  export type MetricAlarms = MetricAlarm[];
1574
+ export interface MetricCharacteristics {
1575
+ /**
1576
+ * Set this parameter to true if values for this metric consistently include spikes that should not be considered to be anomalies. With this set to true, CloudWatch will expect to see spikes that occurred consistently during the model training period, and won't flag future similar spikes as anomalies.
1577
+ */
1578
+ PeriodicSpikes?: PeriodicSpikes;
1579
+ }
1570
1580
  export type MetricData = MetricDatum[];
1571
1581
  export type MetricDataQueries = MetricDataQuery[];
1572
1582
  export interface MetricDataQuery {
@@ -1790,6 +1800,7 @@ declare namespace CloudWatch {
1790
1800
  FailureDescription?: FailureDescription;
1791
1801
  }
1792
1802
  export type Period = number;
1803
+ export type PeriodicSpikes = boolean;
1793
1804
  export interface PutAnomalyDetectorInput {
1794
1805
  /**
1795
1806
  * The namespace of the metric to create the anomaly detection model for.
@@ -1811,6 +1822,10 @@ declare namespace CloudWatch {
1811
1822
  * The configuration specifies details about how the anomaly detection model is to be trained, including time ranges to exclude when training and updating the model. You can specify as many as 10 time ranges. The configuration can also include the time zone to use for the metric.
1812
1823
  */
1813
1824
  Configuration?: AnomalyDetectorConfiguration;
1825
+ /**
1826
+ * Use this object to include parameters to provide information about your metric to CloudWatch to help it build more accurate anomaly detection models. Currently, it includes the PeriodicSpikes parameter.
1827
+ */
1828
+ MetricCharacteristics?: MetricCharacteristics;
1814
1829
  /**
1815
1830
  * A single metric anomaly detector to be created. When using SingleMetricAnomalyDetector, you cannot include the following parameters in the same operation: Dimensions MetricName Namespace Stat the MetricMathAnomalyDetector parameters of PutAnomalyDetectorInput Instead, specify the single metric anomaly detector attributes as part of the property SingleMetricAnomalyDetector.
1816
1831
  */
@@ -1559,7 +1559,7 @@ declare namespace CodeBuild {
1559
1559
  */
1560
1560
  username?: NonEmptyString;
1561
1561
  /**
1562
- * For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is the app password.
1562
+ * For GitHub or GitHub Enterprise, this is the personal access token. For Bitbucket, this is either the access token or the app password.
1563
1563
  */
1564
1564
  token: SensitiveNonEmptyString;
1565
1565
  /**