aws-sdk 2.849.0 → 2.853.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 (48) hide show
  1. package/CHANGELOG.md +27 -1
  2. package/README.md +1 -1
  3. package/apis/appflow-2020-08-23.min.json +123 -66
  4. package/apis/autoscaling-2011-01-01.min.json +20 -15
  5. package/apis/databrew-2017-07-25.min.json +87 -77
  6. package/apis/detective-2018-10-26.min.json +26 -19
  7. package/apis/ecr-public-2020-10-30.min.json +82 -11
  8. package/apis/eks-2017-11-01.min.json +154 -122
  9. package/apis/elasticmapreduce-2009-03-31.min.json +19 -1
  10. package/apis/es-2015-01-01.min.json +192 -57
  11. package/apis/es-2015-01-01.paginators.json +5 -0
  12. package/apis/glue-2017-03-31.min.json +72 -69
  13. package/apis/imagebuilder-2019-12-02.min.json +96 -56
  14. package/apis/imagebuilder-2019-12-02.paginators.json +6 -0
  15. package/apis/iotevents-2018-07-27.min.json +102 -3
  16. package/apis/mediapackage-vod-2018-11-07.min.json +153 -76
  17. package/apis/pinpoint-2016-12-01.min.json +9 -3
  18. package/apis/redshift-data-2019-12-20.min.json +5 -1
  19. package/apis/s3-2006-03-01.examples.json +109 -109
  20. package/apis/s3-2006-03-01.min.json +8 -0
  21. package/clients/appflow.d.ts +33 -1
  22. package/clients/autoscaling.d.ts +16 -2
  23. package/clients/computeoptimizer.d.ts +5 -5
  24. package/clients/databrew.d.ts +26 -0
  25. package/clients/detective.d.ts +20 -11
  26. package/clients/ecrpublic.d.ts +78 -0
  27. package/clients/eks.d.ts +29 -4
  28. package/clients/emr.d.ts +80 -50
  29. package/clients/es.d.ts +186 -0
  30. package/clients/glue.d.ts +6 -4
  31. package/clients/imagebuilder.d.ts +63 -2
  32. package/clients/iotevents.d.ts +130 -28
  33. package/clients/lightsail.d.ts +2 -2
  34. package/clients/mediapackagevod.d.ts +43 -0
  35. package/clients/pinpoint.d.ts +24 -0
  36. package/clients/quicksight.d.ts +5 -5
  37. package/clients/redshiftdata.d.ts +16 -4
  38. package/clients/s3.d.ts +40 -38
  39. package/clients/s3control.d.ts +4 -4
  40. package/dist/aws-sdk-core-react-native.js +1 -1
  41. package/dist/aws-sdk-react-native.js +35 -21
  42. package/dist/aws-sdk.js +67 -22
  43. package/dist/aws-sdk.min.js +82 -82
  44. package/lib/core.js +1 -1
  45. package/lib/services/s3.js +13 -1
  46. package/lib/services/s3util.js +4 -2
  47. package/package.json +1 -1
  48. package/scripts/region-checker/allowlist.js +6 -6
package/clients/glue.d.ts CHANGED
@@ -1701,6 +1701,7 @@ declare namespace Glue {
1701
1701
  */
1702
1702
  TableName: NameString;
1703
1703
  }
1704
+ export type CatalogGetterPageSize = number;
1704
1705
  export type CatalogIdString = string;
1705
1706
  export interface CatalogImportStatus {
1706
1707
  /**
@@ -4076,7 +4077,7 @@ declare namespace Glue {
4076
4077
  /**
4077
4078
  * The maximum number of databases to return in one response.
4078
4079
  */
4079
- MaxResults?: PageSize;
4080
+ MaxResults?: CatalogGetterPageSize;
4080
4081
  /**
4081
4082
  * Allows you to specify that you want to list the databases shared with your account. The allowable values are FOREIGN or ALL. If set to FOREIGN, will list the databases shared with your account. If set to ALL, will list the databases shared with your account, as well as the databases in yor local account.
4082
4083
  */
@@ -4529,6 +4530,7 @@ declare namespace Glue {
4529
4530
  * The maximum number of partitions to return in a single response.
4530
4531
  */
4531
4532
  MaxResults?: PageSize;
4533
+ ExcludeColumnSchema?: BooleanNullable;
4532
4534
  }
4533
4535
  export interface GetPartitionsResponse {
4534
4536
  /**
@@ -4910,7 +4912,7 @@ declare namespace Glue {
4910
4912
  /**
4911
4913
  * The maximum number of table versions to return in one response.
4912
4914
  */
4913
- MaxResults?: PageSize;
4915
+ MaxResults?: CatalogGetterPageSize;
4914
4916
  }
4915
4917
  export interface GetTableVersionsResponse {
4916
4918
  /**
@@ -4942,7 +4944,7 @@ declare namespace Glue {
4942
4944
  /**
4943
4945
  * The maximum number of tables to return in a single response.
4944
4946
  */
4945
- MaxResults?: PageSize;
4947
+ MaxResults?: CatalogGetterPageSize;
4946
4948
  }
4947
4949
  export interface GetTablesResponse {
4948
4950
  /**
@@ -5042,7 +5044,7 @@ declare namespace Glue {
5042
5044
  /**
5043
5045
  * The maximum number of functions to return in one response.
5044
5046
  */
5045
- MaxResults?: PageSize;
5047
+ MaxResults?: CatalogGetterPageSize;
5046
5048
  }
5047
5049
  export interface GetUserDefinedFunctionsResponse {
5048
5050
  /**
@@ -267,6 +267,14 @@ declare class Imagebuilder extends Service {
267
267
  * Returns a list of image build versions.
268
268
  */
269
269
  listImageBuildVersions(callback?: (err: AWSError, data: Imagebuilder.Types.ListImageBuildVersionsResponse) => void): Request<Imagebuilder.Types.ListImageBuildVersionsResponse, AWSError>;
270
+ /**
271
+ * List the Packages that are associated with an Image Build Version, as determined by AWS Systems Manager Inventory at build time.
272
+ */
273
+ listImagePackages(params: Imagebuilder.Types.ListImagePackagesRequest, callback?: (err: AWSError, data: Imagebuilder.Types.ListImagePackagesResponse) => void): Request<Imagebuilder.Types.ListImagePackagesResponse, AWSError>;
274
+ /**
275
+ * List the Packages that are associated with an Image Build Version, as determined by AWS Systems Manager Inventory at build time.
276
+ */
277
+ listImagePackages(callback?: (err: AWSError, data: Imagebuilder.Types.ListImagePackagesResponse) => void): Request<Imagebuilder.Types.ListImagePackagesResponse, AWSError>;
270
278
  /**
271
279
  * Returns a list of images created by the specified pipeline.
272
280
  */
@@ -1399,7 +1407,7 @@ declare namespace Imagebuilder {
1399
1407
  }
1400
1408
  export type EbsIopsInteger = number;
1401
1409
  export type EbsVolumeSizeInteger = number;
1402
- export type EbsVolumeType = "standard"|"io1"|"io2"|"gp2"|"sc1"|"st1"|string;
1410
+ export type EbsVolumeType = "standard"|"io1"|"io2"|"gp2"|"gp3"|"sc1"|"st1"|string;
1403
1411
  export type EmptyString = string;
1404
1412
  export interface Filter {
1405
1413
  /**
@@ -1667,6 +1675,17 @@ declare namespace Imagebuilder {
1667
1675
  }
1668
1676
  export type ImageBuildVersionArn = string;
1669
1677
  export type ImageBuilderArn = string;
1678
+ export interface ImagePackage {
1679
+ /**
1680
+ * The name of the package as reported to the operating system package manager.
1681
+ */
1682
+ packageName?: NonEmptyString;
1683
+ /**
1684
+ * The version of the package as reported to the operating system package manager.
1685
+ */
1686
+ packageVersion?: NonEmptyString;
1687
+ }
1688
+ export type ImagePackageList = ImagePackage[];
1670
1689
  export interface ImagePipeline {
1671
1690
  /**
1672
1691
  * The Amazon Resource Name (ARN) of the image pipeline.
@@ -2016,7 +2035,7 @@ declare namespace Imagebuilder {
2016
2035
  /**
2017
2036
  * The instance profile of the infrastructure configuration.
2018
2037
  */
2019
- instanceProfileName?: NonEmptyString;
2038
+ instanceProfileName?: InstanceProfileNameType;
2020
2039
  /**
2021
2040
  * The security group IDs of the infrastructure configuration.
2022
2041
  */
@@ -2088,6 +2107,14 @@ declare namespace Imagebuilder {
2088
2107
  * The tags of the infrastructure configuration.
2089
2108
  */
2090
2109
  tags?: TagMap;
2110
+ /**
2111
+ * The instance types of the infrastructure configuration.
2112
+ */
2113
+ instanceTypes?: InstanceTypeList;
2114
+ /**
2115
+ * The instance profile of the infrastructure configuration.
2116
+ */
2117
+ instanceProfileName?: InstanceProfileNameType;
2091
2118
  }
2092
2119
  export type InfrastructureConfigurationSummaryList = InfrastructureConfigurationSummary[];
2093
2120
  export type InlineComponentData = string;
@@ -2111,6 +2138,7 @@ declare namespace Imagebuilder {
2111
2138
  noDevice?: EmptyString;
2112
2139
  }
2113
2140
  export type InstanceBlockDeviceMappings = InstanceBlockDeviceMapping[];
2141
+ export type InstanceProfileNameType = string;
2114
2142
  export type InstanceType = string;
2115
2143
  export type InstanceTypeList = InstanceType[];
2116
2144
  export interface LaunchPermissionConfiguration {
@@ -2281,6 +2309,34 @@ declare namespace Imagebuilder {
2281
2309
  */
2282
2310
  nextToken?: PaginationToken;
2283
2311
  }
2312
+ export interface ListImagePackagesRequest {
2313
+ /**
2314
+ * Filter results for the ListImagePackages request by the Image Build Version ARN
2315
+ */
2316
+ imageBuildVersionArn: ImageBuildVersionArn;
2317
+ /**
2318
+ * The maxiumum number of results to return from the ListImagePackages request.
2319
+ */
2320
+ maxResults?: RestrictedInteger;
2321
+ /**
2322
+ * A token to specify where to start paginating. This is the NextToken from a previously truncated response.
2323
+ */
2324
+ nextToken?: PaginationToken;
2325
+ }
2326
+ export interface ListImagePackagesResponse {
2327
+ /**
2328
+ * The request ID that uniquely identifies this request.
2329
+ */
2330
+ requestId?: NonEmptyString;
2331
+ /**
2332
+ * The list of Image Packages returned in the response.
2333
+ */
2334
+ imagePackageList?: ImagePackageList;
2335
+ /**
2336
+ * A token to specify where to start paginating. This is the NextToken from a previously truncated response.
2337
+ */
2338
+ nextToken?: PaginationToken;
2339
+ }
2284
2340
  export interface ListImagePipelineImagesRequest {
2285
2341
  /**
2286
2342
  * The Amazon Resource Name (ARN) of the image pipeline whose images you want to view.
@@ -2578,6 +2634,10 @@ declare namespace Imagebuilder {
2578
2634
  * The cron expression determines how often EC2 Image Builder evaluates your pipelineExecutionStartCondition. For information on how to format a cron expression in Image Builder, see Use cron expressions in EC2 Image Builder.
2579
2635
  */
2580
2636
  scheduleExpression?: NonEmptyString;
2637
+ /**
2638
+ * The timezone that applies to the scheduling expression. For example, "Etc/UTC", "America/Los_Angeles" in the IANA timezone format. If not specified this defaults to UTC.
2639
+ */
2640
+ timezone?: Timezone;
2581
2641
  /**
2582
2642
  * The condition configures when the pipeline should trigger a new image build. When the pipelineExecutionStartCondition is set to EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE, and you use semantic version filters on the source image or components in your image recipe, EC2 Image Builder will build a new image only when there are new versions of the image or components in your recipe that match the semantic version filter. When it is set to EXPRESSION_MATCH_ONLY, it will build a new image every time the CRON expression matches the current time. For semantic version syntax, see CreateComponent in the EC2 Image Builder API Reference.
2583
2643
  */
@@ -2636,6 +2696,7 @@ declare namespace Imagebuilder {
2636
2696
  */
2637
2697
  repositoryName: NonEmptyString;
2638
2698
  }
2699
+ export type Timezone = string;
2639
2700
  export interface UntagResourceRequest {
2640
2701
  /**
2641
2702
  * The Amazon Resource Name (ARN) of the resource that you want to untag.
@@ -51,6 +51,14 @@ declare class IoTEvents extends Service {
51
51
  * Describes a detector model. If the version parameter is not specified, information about the latest version is returned.
52
52
  */
53
53
  describeDetectorModel(callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelResponse, AWSError>;
54
+ /**
55
+ * Retrieves execution information about a detector model analysis
56
+ */
57
+ describeDetectorModelAnalysis(params: IoTEvents.Types.DescribeDetectorModelAnalysisRequest, callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelAnalysisResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelAnalysisResponse, AWSError>;
58
+ /**
59
+ * Retrieves execution information about a detector model analysis
60
+ */
61
+ describeDetectorModelAnalysis(callback?: (err: AWSError, data: IoTEvents.Types.DescribeDetectorModelAnalysisResponse) => void): Request<IoTEvents.Types.DescribeDetectorModelAnalysisResponse, AWSError>;
54
62
  /**
55
63
  * Describes an input.
56
64
  */
@@ -67,6 +75,14 @@ declare class IoTEvents extends Service {
67
75
  * Retrieves the current settings of the AWS IoT Events logging options.
68
76
  */
69
77
  describeLoggingOptions(callback?: (err: AWSError, data: IoTEvents.Types.DescribeLoggingOptionsResponse) => void): Request<IoTEvents.Types.DescribeLoggingOptionsResponse, AWSError>;
78
+ /**
79
+ * Retrieves one or more analysis results of the detector model.
80
+ */
81
+ getDetectorModelAnalysisResults(params: IoTEvents.Types.GetDetectorModelAnalysisResultsRequest, callback?: (err: AWSError, data: IoTEvents.Types.GetDetectorModelAnalysisResultsResponse) => void): Request<IoTEvents.Types.GetDetectorModelAnalysisResultsResponse, AWSError>;
82
+ /**
83
+ * Retrieves one or more analysis results of the detector model.
84
+ */
85
+ getDetectorModelAnalysisResults(callback?: (err: AWSError, data: IoTEvents.Types.GetDetectorModelAnalysisResultsResponse) => void): Request<IoTEvents.Types.GetDetectorModelAnalysisResultsResponse, AWSError>;
70
86
  /**
71
87
  * Lists all the versions of a detector model. Only the metadata associated with each detector model version is returned.
72
88
  */
@@ -107,6 +123,14 @@ declare class IoTEvents extends Service {
107
123
  * Sets or updates the AWS IoT Events logging options. If you update the value of any loggingOptions field, it takes up to one minute for the change to take effect. If you change the policy attached to the role you specified in the roleArn field (for example, to correct an invalid policy), it takes up to five minutes for that change to take effect.
108
124
  */
109
125
  putLoggingOptions(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
126
+ /**
127
+ * Performs an analysis of your detector model. For more information, see Running detector model analyses in the AWS IoT Events Developer Guide.
128
+ */
129
+ startDetectorModelAnalysis(params: IoTEvents.Types.StartDetectorModelAnalysisRequest, callback?: (err: AWSError, data: IoTEvents.Types.StartDetectorModelAnalysisResponse) => void): Request<IoTEvents.Types.StartDetectorModelAnalysisResponse, AWSError>;
130
+ /**
131
+ * Performs an analysis of your detector model. For more information, see Running detector model analyses in the AWS IoT Events Developer Guide.
132
+ */
133
+ startDetectorModelAnalysis(callback?: (err: AWSError, data: IoTEvents.Types.StartDetectorModelAnalysisResponse) => void): Request<IoTEvents.Types.StartDetectorModelAnalysisResponse, AWSError>;
110
134
  /**
111
135
  * Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
112
136
  */
@@ -183,11 +207,11 @@ declare namespace IoTEvents {
183
207
  */
184
208
  firehose?: FirehoseAction;
185
209
  /**
186
- * Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. One column of the DynamoDB table receives all attribute-value pairs in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
210
+ * Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can customize the payload. One column of the DynamoDB table receives all attribute-value pairs in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
187
211
  */
188
212
  dynamoDB?: DynamoDBAction;
189
213
  /**
190
- * Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can also customize the payload. A separate column of the DynamoDB table receives one attribute-value pair in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
214
+ * Writes to the DynamoDB table that you created. The default action payload contains all attribute-value pairs that have the information about the detector model instance and the event that triggered the action. You can customize the payload. A separate column of the DynamoDB table receives one attribute-value pair in the payload that you specify. For more information, see Actions in AWS IoT Events Developer Guide.
191
215
  */
192
216
  dynamoDBv2?: DynamoDBv2Action;
193
217
  /**
@@ -197,6 +221,38 @@ declare namespace IoTEvents {
197
221
  }
198
222
  export type Actions = Action[];
199
223
  export type AmazonResourceName = string;
224
+ export type AnalysisId = string;
225
+ export type AnalysisMessage = string;
226
+ export interface AnalysisResult {
227
+ /**
228
+ * The type of the analysis result. Analyses fall into the following types based on the validators used to generate the analysis result: supported-actions - You must specify AWS IoT Events supported actions that work with other AWS services in a supported AWS Region. service-limits - Resources or operations can't exceed service limits. Update your detector model or request a limit adjust. structure - The detector model must follow a structure that AWS IoT Events supports. expression-syntax - Your expression must follow the required syntax. data-type - Data types referenced in the detector model must be compatible. referenced-data - You must define the data referenced in your detector model before you can use the data. referenced-resource - Resources that the detector model uses must be available. For more information, see Running detector model analyses in the AWS IoT Events Developer Guide.
229
+ */
230
+ type?: AnalysisType;
231
+ /**
232
+ * The severity level of the analysis result. Analysis results fall into three general categories based on the severity level: INFO - An information result informs you about a significant field in your detector model. This type of result usually doesn't require immediate action. WARNING - A warning result draws special attention to fields that are potentially damaging to your detector model. We recommend that you review warnings and take necessary actions before you use your detetor model in production environments. Otherwise, the detector model may not fully function as expected. ERROR - An error result notifies you about a problem found in your detector model. You must fix all errors before you can publish your detector model.
233
+ */
234
+ level?: AnalysisResultLevel;
235
+ /**
236
+ * Contains additional information about the analysis result.
237
+ */
238
+ message?: AnalysisMessage;
239
+ /**
240
+ * Contains one or more locations that you can use to locate the fields in your detector model that the analysis result references.
241
+ */
242
+ locations?: AnalysisResultLocations;
243
+ }
244
+ export type AnalysisResultLevel = "INFO"|"WARNING"|"ERROR"|string;
245
+ export interface AnalysisResultLocation {
246
+ /**
247
+ * A JsonPath expression that identifies the error field in your detector model.
248
+ */
249
+ path?: AnalysisResultLocationPath;
250
+ }
251
+ export type AnalysisResultLocationPath = string;
252
+ export type AnalysisResultLocations = AnalysisResultLocation[];
253
+ export type AnalysisResults = AnalysisResult[];
254
+ export type AnalysisStatus = "RUNNING"|"COMPLETE"|"FAILED"|string;
255
+ export type AnalysisType = string;
200
256
  export type AssetId = string;
201
257
  export type AssetPropertyAlias = string;
202
258
  export type AssetPropertyBooleanValue = string;
@@ -210,11 +266,11 @@ declare namespace IoTEvents {
210
266
  export type AssetPropertyTimeInSeconds = string;
211
267
  export interface AssetPropertyTimestamp {
212
268
  /**
213
- * The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199. You can also specify an expression.
269
+ * The timestamp, in seconds, in the Unix epoch format. The valid range is between 1-31556889864403199.
214
270
  */
215
271
  timeInSeconds: AssetPropertyTimeInSeconds;
216
272
  /**
217
- * The nanosecond offset converted from timeInSeconds. The valid range is between 0-999999999. You can also specify an expression.
273
+ * The nanosecond offset converted from timeInSeconds. The valid range is between 0-999999999.
218
274
  */
219
275
  offsetInNanos?: AssetPropertyOffsetInNanos;
220
276
  }
@@ -228,25 +284,25 @@ declare namespace IoTEvents {
228
284
  */
229
285
  timestamp?: AssetPropertyTimestamp;
230
286
  /**
231
- * The quality of the asset property value. The value must be GOOD, BAD, or UNCERTAIN. You can also specify an expression.
287
+ * The quality of the asset property value. The value must be 'GOOD', 'BAD', or 'UNCERTAIN'.
232
288
  */
233
289
  quality?: AssetPropertyQuality;
234
290
  }
235
291
  export interface AssetPropertyVariant {
236
292
  /**
237
- * The asset property value is a string. You can also specify an expression. If you use an expression, the evaluated result should be a string.
293
+ * The asset property value is a string. You must use an expression, and the evaluated result should be a string.
238
294
  */
239
295
  stringValue?: AssetPropertyStringValue;
240
296
  /**
241
- * The asset property value is an integer. You can also specify an expression. If you use an expression, the evaluated result should be an integer.
297
+ * The asset property value is an integer. You must use an expression, and the evaluated result should be an integer.
242
298
  */
243
299
  integerValue?: AssetPropertyIntegerValue;
244
300
  /**
245
- * The asset property value is a double. You can also specify an expression. If you use an expression, the evaluated result should be a double.
301
+ * The asset property value is a double. You must use an expression, and the evaluated result should be a double.
246
302
  */
247
303
  doubleValue?: AssetPropertyDoubleValue;
248
304
  /**
249
- * The asset property value is a Boolean value that must be TRUE or FALSE. You can also specify an expression. If you use an expression, the evaluated result should be a Boolean value.
305
+ * The asset property value is a Boolean value that must be 'TRUE' or 'FALSE'. You must use an expression, and the evaluated result should be a Boolean value.
250
306
  */
251
307
  booleanValue?: AssetPropertyBooleanValue;
252
308
  }
@@ -343,6 +399,18 @@ declare namespace IoTEvents {
343
399
  export interface DeleteInputResponse {
344
400
  }
345
401
  export type DeliveryStreamName = string;
402
+ export interface DescribeDetectorModelAnalysisRequest {
403
+ /**
404
+ * The ID of the analysis result that you want to retrieve.
405
+ */
406
+ analysisId: AnalysisId;
407
+ }
408
+ export interface DescribeDetectorModelAnalysisResponse {
409
+ /**
410
+ * The status of the analysis activity. The status can be one of the following values: RUNNING - AWS IoT Events is analyzing your detector model. This process can take several minutes to complete. COMPLETE - AWS IoT Events finished analyzing your detector model . FAILED - AWS IoT Events couldn't analyze your detector model. Try again later.
411
+ */
412
+ status?: AnalysisStatus;
413
+ }
346
414
  export interface DescribeDetectorModelRequest {
347
415
  /**
348
416
  * The name of the detector model.
@@ -509,11 +577,11 @@ declare namespace IoTEvents {
509
577
  }
510
578
  export interface DynamoDBAction {
511
579
  /**
512
- * The data type for the hash key (also called the partition key). You can specify the following values: STRING - The hash key is a string. NUMBER - The hash key is a number. If you don't specify hashKeyType, the default value is STRING.
580
+ * The data type for the hash key (also called the partition key). You can specify the following values: 'STRING' - The hash key is a string. 'NUMBER' - The hash key is a number. If you don't specify hashKeyType, the default value is 'STRING'.
513
581
  */
514
582
  hashKeyType?: DynamoKeyType;
515
583
  /**
516
- * The name of the hash key (also called the partition key).
584
+ * The name of the hash key (also called the partition key). The hashKeyField value must match the partition key of the target DynamoDB table.
517
585
  */
518
586
  hashKeyField: DynamoKeyField;
519
587
  /**
@@ -521,11 +589,11 @@ declare namespace IoTEvents {
521
589
  */
522
590
  hashKeyValue: DynamoKeyValue;
523
591
  /**
524
- * The data type for the range key (also called the sort key), You can specify the following values: STRING - The range key is a string. NUMBER - The range key is number. If you don't specify rangeKeyField, the default value is STRING.
592
+ * The data type for the range key (also called the sort key), You can specify the following values: 'STRING' - The range key is a string. 'NUMBER' - The range key is number. If you don't specify rangeKeyField, the default value is 'STRING'.
525
593
  */
526
594
  rangeKeyType?: DynamoKeyType;
527
595
  /**
528
- * The name of the range key (also called the sort key).
596
+ * The name of the range key (also called the sort key). The rangeKeyField value must match the sort key of the target DynamoDB table.
529
597
  */
530
598
  rangeKeyField?: DynamoKeyField;
531
599
  /**
@@ -533,7 +601,7 @@ declare namespace IoTEvents {
533
601
  */
534
602
  rangeKeyValue?: DynamoKeyValue;
535
603
  /**
536
- * The type of operation to perform. You can specify the following values: INSERT - Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key. UPDATE - Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key. DELETE - Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key. If you don't specify this parameter, AWS IoT Events triggers the INSERT operation.
604
+ * The type of operation to perform. You can specify the following values: 'INSERT' - Insert data as a new item into the DynamoDB table. This item uses the specified hash key as a partition key. If you specified a range key, the item uses the range key as a sort key. 'UPDATE' - Update an existing item of the DynamoDB table with new data. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key. 'DELETE' - Delete an existing item of the DynamoDB table. This item's partition key must match the specified hash key. If you specified a range key, the range key must match the item's sort key. If you don't specify this parameter, AWS IoT Events triggers the 'INSERT' operation.
537
605
  */
538
606
  operation?: DynamoOperation;
539
607
  /**
@@ -541,7 +609,7 @@ declare namespace IoTEvents {
541
609
  */
542
610
  payloadField?: DynamoKeyField;
543
611
  /**
544
- * The name of the DynamoDB table.
612
+ * The name of the DynamoDB table. The tableName value must match the table name of the target DynamoDB table.
545
613
  */
546
614
  tableName: DynamoTableName;
547
615
  payload?: Payload;
@@ -590,6 +658,30 @@ declare namespace IoTEvents {
590
658
  payload?: Payload;
591
659
  }
592
660
  export type FirehoseSeparator = string;
661
+ export interface GetDetectorModelAnalysisResultsRequest {
662
+ /**
663
+ * The ID of the analysis result that you want to retrieve.
664
+ */
665
+ analysisId: AnalysisId;
666
+ /**
667
+ * The token that you can use to return the next set of results.
668
+ */
669
+ nextToken?: NextToken;
670
+ /**
671
+ * The maximum number of results to be returned per request.
672
+ */
673
+ maxResults?: MaxAnalysisResults;
674
+ }
675
+ export interface GetDetectorModelAnalysisResultsResponse {
676
+ /**
677
+ * Contains information about one or more analysis results.
678
+ */
679
+ analysisResults?: AnalysisResults;
680
+ /**
681
+ * The token that you can use to return the next set of results, or null if there are no more results.
682
+ */
683
+ nextToken?: NextToken;
684
+ }
593
685
  export interface Input {
594
686
  /**
595
687
  * Information about the configuration of an input.
@@ -675,19 +767,19 @@ declare namespace IoTEvents {
675
767
  }
676
768
  export interface IotSiteWiseAction {
677
769
  /**
678
- * A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier. You can also specify an expression.
770
+ * A unique identifier for this entry. You can use the entry ID to track which data entry causes an error in case of failure. The default is a new unique identifier.
679
771
  */
680
772
  entryId?: AssetPropertyEntryId;
681
773
  /**
682
- * The ID of the asset that has the specified property. You can specify an expression.
774
+ * The ID of the asset that has the specified property.
683
775
  */
684
776
  assetId?: AssetId;
685
777
  /**
686
- * The ID of the asset property. You can specify an expression.
778
+ * The ID of the asset property.
687
779
  */
688
780
  propertyId?: AssetPropertyId;
689
781
  /**
690
- * The alias of the asset property. You can also specify an expression.
782
+ * The alias of the asset property.
691
783
  */
692
784
  propertyAlias?: AssetPropertyAlias;
693
785
  /**
@@ -722,11 +814,11 @@ declare namespace IoTEvents {
722
814
  */
723
815
  detectorModelName: DetectorModelName;
724
816
  /**
725
- * The token for the next set of results.
817
+ * The token that you can use to return the next set of results.
726
818
  */
727
819
  nextToken?: NextToken;
728
820
  /**
729
- * The maximum number of results to return at one time.
821
+ * The maximum number of results to be returned per request.
730
822
  */
731
823
  maxResults?: MaxResults;
732
824
  }
@@ -736,17 +828,17 @@ declare namespace IoTEvents {
736
828
  */
737
829
  detectorModelVersionSummaries?: DetectorModelVersionSummaries;
738
830
  /**
739
- * A token to retrieve the next set of results, or null if there are no additional results.
831
+ * The token that you can use to return the next set of results, or null if there are no more results.
740
832
  */
741
833
  nextToken?: NextToken;
742
834
  }
743
835
  export interface ListDetectorModelsRequest {
744
836
  /**
745
- * The token for the next set of results.
837
+ * The token that you can use to return the next set of results.
746
838
  */
747
839
  nextToken?: NextToken;
748
840
  /**
749
- * The maximum number of results to return at one time.
841
+ * The maximum number of results to be returned per request.
750
842
  */
751
843
  maxResults?: MaxResults;
752
844
  }
@@ -756,17 +848,17 @@ declare namespace IoTEvents {
756
848
  */
757
849
  detectorModelSummaries?: DetectorModelSummaries;
758
850
  /**
759
- * A token to retrieve the next set of results, or null if there are no additional results.
851
+ * The token that you can use to return the next set of results, or null if there are no more results.
760
852
  */
761
853
  nextToken?: NextToken;
762
854
  }
763
855
  export interface ListInputsRequest {
764
856
  /**
765
- * The token for the next set of results.
857
+ * The token that you can use to return the next set of results.
766
858
  */
767
859
  nextToken?: NextToken;
768
860
  /**
769
- * The maximum number of results to return at one time.
861
+ * The maximum number of results to be returned per request.
770
862
  */
771
863
  maxResults?: MaxResults;
772
864
  }
@@ -776,7 +868,7 @@ declare namespace IoTEvents {
776
868
  */
777
869
  inputSummaries?: InputSummaries;
778
870
  /**
779
- * A token to retrieve the next set of results, or null if there are no additional results.
871
+ * The token that you can use to return the next set of results, or null if there are no more results.
780
872
  */
781
873
  nextToken?: NextToken;
782
874
  }
@@ -813,6 +905,7 @@ declare namespace IoTEvents {
813
905
  detectorDebugOptions?: DetectorDebugOptions;
814
906
  }
815
907
  export type MQTTTopic = string;
908
+ export type MaxAnalysisResults = number;
816
909
  export type MaxResults = number;
817
910
  export type NextToken = string;
818
911
  export interface OnEnterLifecycle {
@@ -910,6 +1003,15 @@ declare namespace IoTEvents {
910
1003
  */
911
1004
  payload?: Payload;
912
1005
  }
1006
+ export interface StartDetectorModelAnalysisRequest {
1007
+ detectorModelDefinition: DetectorModelDefinition;
1008
+ }
1009
+ export interface StartDetectorModelAnalysisResponse {
1010
+ /**
1011
+ * The ID that you can use to retrieve the analysis result.
1012
+ */
1013
+ analysisId?: AnalysisId;
1014
+ }
913
1015
  export interface State {
914
1016
  /**
915
1017
  * The name of the state.
@@ -3179,7 +3179,7 @@ declare namespace Lightsail {
3179
3179
  */
3180
3180
  state?: DiskSnapshotState;
3181
3181
  /**
3182
- * The progress of the disk snapshot operation.
3182
+ * The progress of the snapshot.
3183
3183
  */
3184
3184
  progress?: string;
3185
3185
  /**
@@ -4856,7 +4856,7 @@ declare namespace Lightsail {
4856
4856
  */
4857
4857
  state?: InstanceSnapshotState;
4858
4858
  /**
4859
- * The progress of the snapshot.
4859
+ * The progress of the snapshot. This is populated only for disk snapshots, and is null for instance snapshots.
4860
4860
  */
4861
4861
  progress?: string;
4862
4862
  /**
@@ -11,6 +11,14 @@ declare class MediaPackageVod extends Service {
11
11
  */
12
12
  constructor(options?: MediaPackageVod.Types.ClientConfiguration)
13
13
  config: Config & MediaPackageVod.Types.ClientConfiguration;
14
+ /**
15
+ * Changes the packaging group's properities to configure log subscription
16
+ */
17
+ configureLogs(params: MediaPackageVod.Types.ConfigureLogsRequest, callback?: (err: AWSError, data: MediaPackageVod.Types.ConfigureLogsResponse) => void): Request<MediaPackageVod.Types.ConfigureLogsResponse, AWSError>;
18
+ /**
19
+ * Changes the packaging group's properities to configure log subscription
20
+ */
21
+ configureLogs(callback?: (err: AWSError, data: MediaPackageVod.Types.ConfigureLogsResponse) => void): Request<MediaPackageVod.Types.ConfigureLogsResponse, AWSError>;
14
22
  /**
15
23
  * Creates a new MediaPackage VOD Asset resource.
16
24
  */
@@ -199,6 +207,30 @@ rounded to the nearest multiple of the source fragment duration.
199
207
  */
200
208
  SegmentDurationSeconds?: __integer;
201
209
  }
210
+ export interface ConfigureLogsRequest {
211
+ EgressAccessLogs?: EgressAccessLogs;
212
+ /**
213
+ * The ID of a MediaPackage VOD PackagingGroup resource.
214
+ */
215
+ Id: __string;
216
+ }
217
+ export interface ConfigureLogsResponse {
218
+ /**
219
+ * The ARN of the PackagingGroup.
220
+ */
221
+ Arn?: __string;
222
+ Authorization?: Authorization;
223
+ /**
224
+ * The fully qualified domain name for Assets in the PackagingGroup.
225
+ */
226
+ DomainName?: __string;
227
+ EgressAccessLogs?: EgressAccessLogs;
228
+ /**
229
+ * The ID of the PackagingGroup.
230
+ */
231
+ Id?: __string;
232
+ Tags?: Tags;
233
+ }
202
234
  export interface CreateAssetRequest {
203
235
  /**
204
236
  * The unique identifier for the Asset.
@@ -293,6 +325,7 @@ rounded to the nearest multiple of the source fragment duration.
293
325
  }
294
326
  export interface CreatePackagingGroupRequest {
295
327
  Authorization?: Authorization;
328
+ EgressAccessLogs?: EgressAccessLogs;
296
329
  /**
297
330
  * The ID of the PackagingGroup.
298
331
  */
@@ -309,6 +342,7 @@ rounded to the nearest multiple of the source fragment duration.
309
342
  * The fully qualified domain name for Assets in the PackagingGroup.
310
343
  */
311
344
  DomainName?: __string;
345
+ EgressAccessLogs?: EgressAccessLogs;
312
346
  /**
313
347
  * The ID of the PackagingGroup.
314
348
  */
@@ -468,12 +502,19 @@ rounded to the nearest multiple of the source segment duration.
468
502
  * The fully qualified domain name for Assets in the PackagingGroup.
469
503
  */
470
504
  DomainName?: __string;
505
+ EgressAccessLogs?: EgressAccessLogs;
471
506
  /**
472
507
  * The ID of the PackagingGroup.
473
508
  */
474
509
  Id?: __string;
475
510
  Tags?: Tags;
476
511
  }
512
+ export interface EgressAccessLogs {
513
+ /**
514
+ * Customize the log group name.
515
+ */
516
+ LogGroupName?: __string;
517
+ }
477
518
  export interface EgressEndpoint {
478
519
  /**
479
520
  * The ID of the PackagingConfiguration being applied to the Asset.
@@ -685,6 +726,7 @@ rounded to the nearest multiple of the source fragment duration.
685
726
  * The fully qualified domain name for Assets in the PackagingGroup.
686
727
  */
687
728
  DomainName?: __string;
729
+ EgressAccessLogs?: EgressAccessLogs;
688
730
  /**
689
731
  * The ID of the PackagingGroup.
690
732
  */
@@ -762,6 +804,7 @@ MediaPackage will assume when accessing the key provider service.
762
804
  * The fully qualified domain name for Assets in the PackagingGroup.
763
805
  */
764
806
  DomainName?: __string;
807
+ EgressAccessLogs?: EgressAccessLogs;
765
808
  /**
766
809
  * The ID of the PackagingGroup.
767
810
  */