cdk-docker-image-deployment 0.0.57 → 0.0.59
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +10 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/apprunner-2020-05-15.min.json +270 -75
- package/node_modules/aws-sdk/apis/apprunner-2020-05-15.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +129 -101
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1700 -1563
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/iot-2015-05-28.min.json +149 -122
- package/node_modules/aws-sdk/apis/logs-2014-03-28.min.json +71 -4
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.min.json +355 -139
- package/node_modules/aws-sdk/apis/sesv2-2019-09-27.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/textract-2018-06-27.min.json +44 -19
- package/node_modules/aws-sdk/clients/apprunner.d.ts +240 -3
- package/node_modules/aws-sdk/clients/cloudwatchlogs.d.ts +70 -8
- package/node_modules/aws-sdk/clients/connect.d.ts +26 -2
- package/node_modules/aws-sdk/clients/ec2.d.ts +157 -0
- package/node_modules/aws-sdk/clients/iot.d.ts +44 -4
- package/node_modules/aws-sdk/clients/sesv2.d.ts +259 -0
- package/node_modules/aws-sdk/clients/textract.d.ts +45 -11
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +1 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +11 -11
- package/node_modules/aws-sdk/dist/aws-sdk.js +2058 -1793
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +75 -75
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -28,11 +28,11 @@ declare class CloudWatchLogs extends Service {
|
|
|
28
28
|
*/
|
|
29
29
|
cancelExportTask(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
30
30
|
/**
|
|
31
|
-
* Creates an export task, which allows you to efficiently export data from a log group to an Amazon S3 bucket. When you perform a CreateExportTask operation, you must use credentials that have permission to write to the S3 bucket that you specify as the destination.
|
|
31
|
+
* Creates an export task, which allows you to efficiently export data from a log group to an Amazon S3 bucket. When you perform a CreateExportTask operation, you must use credentials that have permission to write to the S3 bucket that you specify as the destination. This is an asynchronous call. If all the required information is provided, this operation initiates an export task and responds with the ID of the task. After the task has started, you can use DescribeExportTasks to get the status of the export task. Each account can only have one active (RUNNING or PENDING) export task at a time. To cancel an export task, use CancelExportTask. You can export logs from multiple log groups or multiple time ranges to the same S3 bucket. To separate out log data for each export task, you can specify a prefix to be used as the Amazon S3 key prefix for all exported objects. Exporting to S3 buckets that are encrypted with AES-256 is supported. Exporting to S3 buckets encrypted with SSE-KMS is not supported.
|
|
32
32
|
*/
|
|
33
33
|
createExportTask(params: CloudWatchLogs.Types.CreateExportTaskRequest, callback?: (err: AWSError, data: CloudWatchLogs.Types.CreateExportTaskResponse) => void): Request<CloudWatchLogs.Types.CreateExportTaskResponse, AWSError>;
|
|
34
34
|
/**
|
|
35
|
-
* Creates an export task, which allows you to efficiently export data from a log group to an Amazon S3 bucket. When you perform a CreateExportTask operation, you must use credentials that have permission to write to the S3 bucket that you specify as the destination.
|
|
35
|
+
* Creates an export task, which allows you to efficiently export data from a log group to an Amazon S3 bucket. When you perform a CreateExportTask operation, you must use credentials that have permission to write to the S3 bucket that you specify as the destination. This is an asynchronous call. If all the required information is provided, this operation initiates an export task and responds with the ID of the task. After the task has started, you can use DescribeExportTasks to get the status of the export task. Each account can only have one active (RUNNING or PENDING) export task at a time. To cancel an export task, use CancelExportTask. You can export logs from multiple log groups or multiple time ranges to the same S3 bucket. To separate out log data for each export task, you can specify a prefix to be used as the Amazon S3 key prefix for all exported objects. Exporting to S3 buckets that are encrypted with AES-256 is supported. Exporting to S3 buckets encrypted with SSE-KMS is not supported.
|
|
36
36
|
*/
|
|
37
37
|
createExportTask(callback?: (err: AWSError, data: CloudWatchLogs.Types.CreateExportTaskResponse) => void): Request<CloudWatchLogs.Types.CreateExportTaskResponse, AWSError>;
|
|
38
38
|
/**
|
|
@@ -236,11 +236,19 @@ declare class CloudWatchLogs extends Service {
|
|
|
236
236
|
*/
|
|
237
237
|
getQueryResults(callback?: (err: AWSError, data: CloudWatchLogs.Types.GetQueryResultsResponse) => void): Request<CloudWatchLogs.Types.GetQueryResultsResponse, AWSError>;
|
|
238
238
|
/**
|
|
239
|
-
*
|
|
239
|
+
* Displays the tags associated with a CloudWatch Logs resource. Currently, log groups and destinations support tagging.
|
|
240
|
+
*/
|
|
241
|
+
listTagsForResource(params: CloudWatchLogs.Types.ListTagsForResourceRequest, callback?: (err: AWSError, data: CloudWatchLogs.Types.ListTagsForResourceResponse) => void): Request<CloudWatchLogs.Types.ListTagsForResourceResponse, AWSError>;
|
|
242
|
+
/**
|
|
243
|
+
* Displays the tags associated with a CloudWatch Logs resource. Currently, log groups and destinations support tagging.
|
|
244
|
+
*/
|
|
245
|
+
listTagsForResource(callback?: (err: AWSError, data: CloudWatchLogs.Types.ListTagsForResourceResponse) => void): Request<CloudWatchLogs.Types.ListTagsForResourceResponse, AWSError>;
|
|
246
|
+
/**
|
|
247
|
+
* The ListTagsLogGroup operation is on the path to deprecation. We recommend that you use ListTagsForResource instead. Lists the tags for the specified log group.
|
|
240
248
|
*/
|
|
241
249
|
listTagsLogGroup(params: CloudWatchLogs.Types.ListTagsLogGroupRequest, callback?: (err: AWSError, data: CloudWatchLogs.Types.ListTagsLogGroupResponse) => void): Request<CloudWatchLogs.Types.ListTagsLogGroupResponse, AWSError>;
|
|
242
250
|
/**
|
|
243
|
-
* Lists the tags for the specified log group.
|
|
251
|
+
* The ListTagsLogGroup operation is on the path to deprecation. We recommend that you use ListTagsForResource instead. Lists the tags for the specified log group.
|
|
244
252
|
*/
|
|
245
253
|
listTagsLogGroup(callback?: (err: AWSError, data: CloudWatchLogs.Types.ListTagsLogGroupResponse) => void): Request<CloudWatchLogs.Types.ListTagsLogGroupResponse, AWSError>;
|
|
246
254
|
/**
|
|
@@ -324,13 +332,21 @@ declare class CloudWatchLogs extends Service {
|
|
|
324
332
|
*/
|
|
325
333
|
stopQuery(callback?: (err: AWSError, data: CloudWatchLogs.Types.StopQueryResponse) => void): Request<CloudWatchLogs.Types.StopQueryResponse, AWSError>;
|
|
326
334
|
/**
|
|
327
|
-
* Adds or updates the specified tags for the specified log group. To list the tags for a log group, use
|
|
335
|
+
* The TagLogGroup operation is on the path to deprecation. We recommend that you use TagResource instead. Adds or updates the specified tags for the specified log group. To list the tags for a log group, use ListTagsForResource. To remove tags, use UntagResource. For more information about tags, see Tag Log Groups in Amazon CloudWatch Logs in the Amazon CloudWatch Logs User Guide. CloudWatch Logs doesn’t support IAM policies that prevent users from assigning specified tags to log groups using the aws:Resource/key-name or aws:TagKeys condition keys. For more information about using tags to control access, see Controlling access to Amazon Web Services resources using tags.
|
|
328
336
|
*/
|
|
329
337
|
tagLogGroup(params: CloudWatchLogs.Types.TagLogGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
330
338
|
/**
|
|
331
|
-
* Adds or updates the specified tags for the specified log group. To list the tags for a log group, use
|
|
339
|
+
* The TagLogGroup operation is on the path to deprecation. We recommend that you use TagResource instead. Adds or updates the specified tags for the specified log group. To list the tags for a log group, use ListTagsForResource. To remove tags, use UntagResource. For more information about tags, see Tag Log Groups in Amazon CloudWatch Logs in the Amazon CloudWatch Logs User Guide. CloudWatch Logs doesn’t support IAM policies that prevent users from assigning specified tags to log groups using the aws:Resource/key-name or aws:TagKeys condition keys. For more information about using tags to control access, see Controlling access to Amazon Web Services resources using tags.
|
|
332
340
|
*/
|
|
333
341
|
tagLogGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
342
|
+
/**
|
|
343
|
+
* Assigns one or more tags (key-value pairs) to the specified CloudWatch Logs resource. Currently, the only CloudWatch Logs resources that can be tagged are log groups and destinations. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key for the alarm, this tag is appended to the list of tags associated with the alarm. If you specify a tag key that is already associated with the alarm, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a CloudWatch Logs resource.
|
|
344
|
+
*/
|
|
345
|
+
tagResource(params: CloudWatchLogs.Types.TagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
346
|
+
/**
|
|
347
|
+
* Assigns one or more tags (key-value pairs) to the specified CloudWatch Logs resource. Currently, the only CloudWatch Logs resources that can be tagged are log groups and destinations. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. Tags don't have any semantic meaning to Amazon Web Services and are interpreted strictly as strings of characters. You can use the TagResource action with a resource that already has tags. If you specify a new tag key for the alarm, this tag is appended to the list of tags associated with the alarm. If you specify a tag key that is already associated with the alarm, the new tag value that you specify replaces the previous value for that tag. You can associate as many as 50 tags with a CloudWatch Logs resource.
|
|
348
|
+
*/
|
|
349
|
+
tagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
334
350
|
/**
|
|
335
351
|
* Tests the filter pattern of a metric filter against a sample of log event messages. You can use this operation to validate the correctness of a metric filter pattern.
|
|
336
352
|
*/
|
|
@@ -340,16 +356,25 @@ declare class CloudWatchLogs extends Service {
|
|
|
340
356
|
*/
|
|
341
357
|
testMetricFilter(callback?: (err: AWSError, data: CloudWatchLogs.Types.TestMetricFilterResponse) => void): Request<CloudWatchLogs.Types.TestMetricFilterResponse, AWSError>;
|
|
342
358
|
/**
|
|
343
|
-
* Removes the specified tags from the specified log group. To list the tags for a log group, use
|
|
359
|
+
* The UntagLogGroup operation is on the path to deprecation. We recommend that you use UntagResource instead. Removes the specified tags from the specified log group. To list the tags for a log group, use ListTagsForResource. To add tags, use TagResource. CloudWatch Logs doesn’t support IAM policies that prevent users from assigning specified tags to log groups using the aws:Resource/key-name or aws:TagKeys condition keys.
|
|
344
360
|
*/
|
|
345
361
|
untagLogGroup(params: CloudWatchLogs.Types.UntagLogGroupRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
346
362
|
/**
|
|
347
|
-
* Removes the specified tags from the specified log group. To list the tags for a log group, use
|
|
363
|
+
* The UntagLogGroup operation is on the path to deprecation. We recommend that you use UntagResource instead. Removes the specified tags from the specified log group. To list the tags for a log group, use ListTagsForResource. To add tags, use TagResource. CloudWatch Logs doesn’t support IAM policies that prevent users from assigning specified tags to log groups using the aws:Resource/key-name or aws:TagKeys condition keys.
|
|
348
364
|
*/
|
|
349
365
|
untagLogGroup(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
366
|
+
/**
|
|
367
|
+
* Removes one or more tags from the specified resource.
|
|
368
|
+
*/
|
|
369
|
+
untagResource(params: CloudWatchLogs.Types.UntagResourceRequest, callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
370
|
+
/**
|
|
371
|
+
* Removes one or more tags from the specified resource.
|
|
372
|
+
*/
|
|
373
|
+
untagResource(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
350
374
|
}
|
|
351
375
|
declare namespace CloudWatchLogs {
|
|
352
376
|
export type AccessPolicy = string;
|
|
377
|
+
export type AmazonResourceName = string;
|
|
353
378
|
export type Arn = string;
|
|
354
379
|
export interface AssociateKmsKeyRequest {
|
|
355
380
|
/**
|
|
@@ -1005,6 +1030,18 @@ declare namespace CloudWatchLogs {
|
|
|
1005
1030
|
export type InputLogStreamNames = LogStreamName[];
|
|
1006
1031
|
export type Interleaved = boolean;
|
|
1007
1032
|
export type KmsKeyId = string;
|
|
1033
|
+
export interface ListTagsForResourceRequest {
|
|
1034
|
+
/**
|
|
1035
|
+
* The ARN of the resource that you want to view tags for. The ARN format of a log group is arn:aws:logs:Region:account-id:log-group:log-group-name The ARN format of a destination is arn:aws:logs:Region:account-id:destination:destination-name For more information about ARN format, see CloudWatch Logs resources and operations.
|
|
1036
|
+
*/
|
|
1037
|
+
resourceArn: AmazonResourceName;
|
|
1038
|
+
}
|
|
1039
|
+
export interface ListTagsForResourceResponse {
|
|
1040
|
+
/**
|
|
1041
|
+
* The list of tags associated with the requested resource.>
|
|
1042
|
+
*/
|
|
1043
|
+
tags?: Tags;
|
|
1044
|
+
}
|
|
1008
1045
|
export interface ListTagsLogGroupRequest {
|
|
1009
1046
|
/**
|
|
1010
1047
|
* The name of the log group.
|
|
@@ -1210,6 +1247,10 @@ declare namespace CloudWatchLogs {
|
|
|
1210
1247
|
* The ARN of an IAM role that grants CloudWatch Logs permissions to call the Amazon Kinesis PutRecord operation on the destination stream.
|
|
1211
1248
|
*/
|
|
1212
1249
|
roleArn: RoleArn;
|
|
1250
|
+
/**
|
|
1251
|
+
* An optional list of key-value pairs to associate with the resource. For more information about tagging, see Tagging Amazon Web Services resources
|
|
1252
|
+
*/
|
|
1253
|
+
tags?: Tags;
|
|
1213
1254
|
}
|
|
1214
1255
|
export interface PutDestinationResponse {
|
|
1215
1256
|
/**
|
|
@@ -1531,6 +1572,7 @@ declare namespace CloudWatchLogs {
|
|
|
1531
1572
|
export type SubscriptionFilters = SubscriptionFilter[];
|
|
1532
1573
|
export type Success = boolean;
|
|
1533
1574
|
export type TagKey = string;
|
|
1575
|
+
export type TagKeyList = TagKey[];
|
|
1534
1576
|
export type TagList = TagKey[];
|
|
1535
1577
|
export interface TagLogGroupRequest {
|
|
1536
1578
|
/**
|
|
@@ -1542,6 +1584,16 @@ declare namespace CloudWatchLogs {
|
|
|
1542
1584
|
*/
|
|
1543
1585
|
tags: Tags;
|
|
1544
1586
|
}
|
|
1587
|
+
export interface TagResourceRequest {
|
|
1588
|
+
/**
|
|
1589
|
+
* The ARN of the resource that you're adding tags to. The ARN format of a log group is arn:aws:logs:Region:account-id:log-group:log-group-name The ARN format of a destination is arn:aws:logs:Region:account-id:destination:destination-name For more information about ARN format, see CloudWatch Logs resources and operations.
|
|
1590
|
+
*/
|
|
1591
|
+
resourceArn: AmazonResourceName;
|
|
1592
|
+
/**
|
|
1593
|
+
* The list of key-value pairs to associate with the resource.
|
|
1594
|
+
*/
|
|
1595
|
+
tags: Tags;
|
|
1596
|
+
}
|
|
1545
1597
|
export type TagValue = string;
|
|
1546
1598
|
export type Tags = {[key: string]: TagValue};
|
|
1547
1599
|
export type TargetArn = string;
|
|
@@ -1571,6 +1623,16 @@ declare namespace CloudWatchLogs {
|
|
|
1571
1623
|
*/
|
|
1572
1624
|
tags: TagList;
|
|
1573
1625
|
}
|
|
1626
|
+
export interface UntagResourceRequest {
|
|
1627
|
+
/**
|
|
1628
|
+
* The ARN of the CloudWatch Logs resource that you're removing tags from. The ARN format of a log group is arn:aws:logs:Region:account-id:log-group:log-group-name The ARN format of a destination is arn:aws:logs:Region:account-id:destination:destination-name For more information about ARN format, see CloudWatch Logs resources and operations.
|
|
1629
|
+
*/
|
|
1630
|
+
resourceArn: AmazonResourceName;
|
|
1631
|
+
/**
|
|
1632
|
+
* The list of tag keys to remove from the resource.
|
|
1633
|
+
*/
|
|
1634
|
+
tagKeys: TagKeyList;
|
|
1635
|
+
}
|
|
1574
1636
|
export type Value = string;
|
|
1575
1637
|
/**
|
|
1576
1638
|
* A string in YYYY-MM-DD format that represents the latest possible API version that can be used in this service. Specify 'latest' to use the latest possible version.
|
|
@@ -547,6 +547,14 @@ declare class Connect extends Service {
|
|
|
547
547
|
* This API is in preview release for Amazon Connect and is subject to change. Deletes the specified security key.
|
|
548
548
|
*/
|
|
549
549
|
disassociateSecurityKey(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
550
|
+
/**
|
|
551
|
+
* Dismisses contacts from an agent’s CCP and returns the agent to an available state, which allows the agent to receive a new routed contact. Contacts can only be dismissed if they are in a MISSED, ERROR, ENDED, or REJECTED state in the Agent Event Stream.
|
|
552
|
+
*/
|
|
553
|
+
dismissUserContact(params: Connect.Types.DismissUserContactRequest, callback?: (err: AWSError, data: Connect.Types.DismissUserContactResponse) => void): Request<Connect.Types.DismissUserContactResponse, AWSError>;
|
|
554
|
+
/**
|
|
555
|
+
* Dismisses contacts from an agent’s CCP and returns the agent to an available state, which allows the agent to receive a new routed contact. Contacts can only be dismissed if they are in a MISSED, ERROR, ENDED, or REJECTED state in the Agent Event Stream.
|
|
556
|
+
*/
|
|
557
|
+
dismissUserContact(callback?: (err: AWSError, data: Connect.Types.DismissUserContactResponse) => void): Request<Connect.Types.DismissUserContactResponse, AWSError>;
|
|
550
558
|
/**
|
|
551
559
|
* Retrieves the contact attributes for the specified contact.
|
|
552
560
|
*/
|
|
@@ -1236,11 +1244,11 @@ declare class Connect extends Service {
|
|
|
1236
1244
|
*/
|
|
1237
1245
|
updateTaskTemplate(callback?: (err: AWSError, data: Connect.Types.UpdateTaskTemplateResponse) => void): Request<Connect.Types.UpdateTaskTemplateResponse, AWSError>;
|
|
1238
1246
|
/**
|
|
1239
|
-
* Updates the traffic distribution for a given traffic distribution group.
|
|
1247
|
+
* Updates the traffic distribution for a given traffic distribution group. For more information about updating a traffic distribution group, see Update telephony traffic distribution across Amazon Web Services Regions in the Amazon Connect Administrator Guide.
|
|
1240
1248
|
*/
|
|
1241
1249
|
updateTrafficDistribution(params: Connect.Types.UpdateTrafficDistributionRequest, callback?: (err: AWSError, data: Connect.Types.UpdateTrafficDistributionResponse) => void): Request<Connect.Types.UpdateTrafficDistributionResponse, AWSError>;
|
|
1242
1250
|
/**
|
|
1243
|
-
* Updates the traffic distribution for a given traffic distribution group.
|
|
1251
|
+
* Updates the traffic distribution for a given traffic distribution group. For more information about updating a traffic distribution group, see Update telephony traffic distribution across Amazon Web Services Regions in the Amazon Connect Administrator Guide.
|
|
1244
1252
|
*/
|
|
1245
1253
|
updateTrafficDistribution(callback?: (err: AWSError, data: Connect.Types.UpdateTrafficDistributionResponse) => void): Request<Connect.Types.UpdateTrafficDistributionResponse, AWSError>;
|
|
1246
1254
|
/**
|
|
@@ -3138,6 +3146,22 @@ declare namespace Connect {
|
|
|
3138
3146
|
*/
|
|
3139
3147
|
AssociationId: AssociationId;
|
|
3140
3148
|
}
|
|
3149
|
+
export interface DismissUserContactRequest {
|
|
3150
|
+
/**
|
|
3151
|
+
* The identifier of the user account.
|
|
3152
|
+
*/
|
|
3153
|
+
UserId: UserId;
|
|
3154
|
+
/**
|
|
3155
|
+
* The identifier of the Amazon Connect instance. You can find the instanceId in the ARN of the instance.
|
|
3156
|
+
*/
|
|
3157
|
+
InstanceId: InstanceId;
|
|
3158
|
+
/**
|
|
3159
|
+
* The identifier of the contact.
|
|
3160
|
+
*/
|
|
3161
|
+
ContactId: ContactId;
|
|
3162
|
+
}
|
|
3163
|
+
export interface DismissUserContactResponse {
|
|
3164
|
+
}
|
|
3141
3165
|
export type DisplayName = string;
|
|
3142
3166
|
export interface Distribution {
|
|
3143
3167
|
/**
|
|
@@ -12,6 +12,14 @@ declare class EC2 extends Service {
|
|
|
12
12
|
*/
|
|
13
13
|
constructor(options?: EC2.Types.ClientConfiguration)
|
|
14
14
|
config: Config & EC2.Types.ClientConfiguration;
|
|
15
|
+
/**
|
|
16
|
+
* Accepts an Elastic IP address transfer. For more information, see Accept a transferred Elastic IP address in the Amazon Virtual Private Cloud User Guide.
|
|
17
|
+
*/
|
|
18
|
+
acceptAddressTransfer(params: EC2.Types.AcceptAddressTransferRequest, callback?: (err: AWSError, data: EC2.Types.AcceptAddressTransferResult) => void): Request<EC2.Types.AcceptAddressTransferResult, AWSError>;
|
|
19
|
+
/**
|
|
20
|
+
* Accepts an Elastic IP address transfer. For more information, see Accept a transferred Elastic IP address in the Amazon Virtual Private Cloud User Guide.
|
|
21
|
+
*/
|
|
22
|
+
acceptAddressTransfer(callback?: (err: AWSError, data: EC2.Types.AcceptAddressTransferResult) => void): Request<EC2.Types.AcceptAddressTransferResult, AWSError>;
|
|
15
23
|
/**
|
|
16
24
|
* Accepts the Convertible Reserved Instance exchange quote described in the GetReservedInstancesExchangeQuote call.
|
|
17
25
|
*/
|
|
@@ -1612,6 +1620,14 @@ declare class EC2 extends Service {
|
|
|
1612
1620
|
* Describes attributes of your Amazon Web Services account. The following are the supported account attributes: supported-platforms: Indicates whether your account can launch instances into EC2-Classic and EC2-VPC, or only into EC2-VPC. default-vpc: The ID of the default VPC for your account, or none. max-instances: This attribute is no longer supported. The returned value does not reflect your actual vCPU limit for running On-Demand Instances. For more information, see On-Demand Instance Limits in the Amazon Elastic Compute Cloud User Guide. vpc-max-security-groups-per-interface: The maximum number of security groups that you can assign to a network interface. max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate for use with EC2-Classic. vpc-max-elastic-ips: The maximum number of Elastic IP addresses that you can allocate for use with EC2-VPC. We are retiring EC2-Classic on August 15, 2022. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon EC2 User Guide.
|
|
1613
1621
|
*/
|
|
1614
1622
|
describeAccountAttributes(callback?: (err: AWSError, data: EC2.Types.DescribeAccountAttributesResult) => void): Request<EC2.Types.DescribeAccountAttributesResult, AWSError>;
|
|
1623
|
+
/**
|
|
1624
|
+
* Describes an Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.
|
|
1625
|
+
*/
|
|
1626
|
+
describeAddressTransfers(params: EC2.Types.DescribeAddressTransfersRequest, callback?: (err: AWSError, data: EC2.Types.DescribeAddressTransfersResult) => void): Request<EC2.Types.DescribeAddressTransfersResult, AWSError>;
|
|
1627
|
+
/**
|
|
1628
|
+
* Describes an Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.
|
|
1629
|
+
*/
|
|
1630
|
+
describeAddressTransfers(callback?: (err: AWSError, data: EC2.Types.DescribeAddressTransfersResult) => void): Request<EC2.Types.DescribeAddressTransfersResult, AWSError>;
|
|
1615
1631
|
/**
|
|
1616
1632
|
* Describes the specified Elastic IP addresses or all of your Elastic IP addresses. An Elastic IP address is for use in either the EC2-Classic platform or in a VPC. For more information, see Elastic IP Addresses in the Amazon Elastic Compute Cloud User Guide. We are retiring EC2-Classic. We recommend that you migrate from EC2-Classic to a VPC. For more information, see Migrate from EC2-Classic to a VPC in the Amazon Elastic Compute Cloud User Guide.
|
|
1617
1633
|
*/
|
|
@@ -2724,6 +2740,14 @@ declare class EC2 extends Service {
|
|
|
2724
2740
|
* Detaches a virtual private gateway from a VPC. You do this if you're planning to turn off the VPC and not use it anymore. You can confirm a virtual private gateway has been completely detached from a VPC by describing the virtual private gateway (any attachments to the virtual private gateway are also described). You must wait for the attachment's state to switch to detached before you can delete the VPC or attach a different VPC to the virtual private gateway.
|
|
2725
2741
|
*/
|
|
2726
2742
|
detachVpnGateway(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
2743
|
+
/**
|
|
2744
|
+
* Disables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.
|
|
2745
|
+
*/
|
|
2746
|
+
disableAddressTransfer(params: EC2.Types.DisableAddressTransferRequest, callback?: (err: AWSError, data: EC2.Types.DisableAddressTransferResult) => void): Request<EC2.Types.DisableAddressTransferResult, AWSError>;
|
|
2747
|
+
/**
|
|
2748
|
+
* Disables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.
|
|
2749
|
+
*/
|
|
2750
|
+
disableAddressTransfer(callback?: (err: AWSError, data: EC2.Types.DisableAddressTransferResult) => void): Request<EC2.Types.DisableAddressTransferResult, AWSError>;
|
|
2727
2751
|
/**
|
|
2728
2752
|
* Disables EBS encryption by default for your account in the current Region. After you disable encryption by default, you can still create encrypted volumes by enabling encryption when you create each volume. Disabling encryption by default does not change the encryption status of your existing volumes. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide.
|
|
2729
2753
|
*/
|
|
@@ -2900,6 +2924,14 @@ declare class EC2 extends Service {
|
|
|
2900
2924
|
* Disassociates a CIDR block from a VPC. To disassociate the CIDR block, you must specify its association ID. You can get the association ID by using DescribeVpcs. You must detach or delete all gateways and resources that are associated with the CIDR block before you can disassociate it. You cannot disassociate the CIDR block with which you originally created the VPC (the primary CIDR block).
|
|
2901
2925
|
*/
|
|
2902
2926
|
disassociateVpcCidrBlock(callback?: (err: AWSError, data: EC2.Types.DisassociateVpcCidrBlockResult) => void): Request<EC2.Types.DisassociateVpcCidrBlockResult, AWSError>;
|
|
2927
|
+
/**
|
|
2928
|
+
* Enables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.
|
|
2929
|
+
*/
|
|
2930
|
+
enableAddressTransfer(params: EC2.Types.EnableAddressTransferRequest, callback?: (err: AWSError, data: EC2.Types.EnableAddressTransferResult) => void): Request<EC2.Types.EnableAddressTransferResult, AWSError>;
|
|
2931
|
+
/**
|
|
2932
|
+
* Enables Elastic IP address transfer. For more information, see Transfer Elastic IP addresses in the Amazon Virtual Private Cloud User Guide.
|
|
2933
|
+
*/
|
|
2934
|
+
enableAddressTransfer(callback?: (err: AWSError, data: EC2.Types.EnableAddressTransferResult) => void): Request<EC2.Types.EnableAddressTransferResult, AWSError>;
|
|
2903
2935
|
/**
|
|
2904
2936
|
* Enables EBS encryption by default for your account in the current Region. After you enable encryption by default, the EBS volumes that you create are always encrypted, either using the default KMS key or the KMS key that you specified when you created each volume. For more information, see Amazon EBS encryption in the Amazon Elastic Compute Cloud User Guide. You can specify the default KMS key for encryption by default using ModifyEbsDefaultKmsKeyId or ResetEbsDefaultKmsKeyId. Enabling encryption by default has no effect on the encryption status of your existing volumes. After you enable encryption by default, you can no longer launch instances using instance types that do not support encryption. For more information, see Supported instance types.
|
|
2905
2937
|
*/
|
|
@@ -4668,6 +4700,26 @@ declare namespace EC2 {
|
|
|
4668
4700
|
}
|
|
4669
4701
|
export type AcceleratorType = "gpu"|"fpga"|"inference"|string;
|
|
4670
4702
|
export type AcceleratorTypeSet = AcceleratorType[];
|
|
4703
|
+
export interface AcceptAddressTransferRequest {
|
|
4704
|
+
/**
|
|
4705
|
+
* The Elastic IP address you are accepting for transfer.
|
|
4706
|
+
*/
|
|
4707
|
+
Address: String;
|
|
4708
|
+
/**
|
|
4709
|
+
* tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value.
|
|
4710
|
+
*/
|
|
4711
|
+
TagSpecifications?: TagSpecificationList;
|
|
4712
|
+
/**
|
|
4713
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
4714
|
+
*/
|
|
4715
|
+
DryRun?: Boolean;
|
|
4716
|
+
}
|
|
4717
|
+
export interface AcceptAddressTransferResult {
|
|
4718
|
+
/**
|
|
4719
|
+
* An Elastic IP address transfer.
|
|
4720
|
+
*/
|
|
4721
|
+
AddressTransfer?: AddressTransfer;
|
|
4722
|
+
}
|
|
4671
4723
|
export interface AcceptReservedInstancesExchangeQuoteRequest {
|
|
4672
4724
|
/**
|
|
4673
4725
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
@@ -4995,6 +5047,34 @@ declare namespace EC2 {
|
|
|
4995
5047
|
export type AddressList = Address[];
|
|
4996
5048
|
export type AddressMaxResults = number;
|
|
4997
5049
|
export type AddressSet = AddressAttribute[];
|
|
5050
|
+
export interface AddressTransfer {
|
|
5051
|
+
/**
|
|
5052
|
+
* The Elastic IP address being transferred.
|
|
5053
|
+
*/
|
|
5054
|
+
PublicIp?: String;
|
|
5055
|
+
/**
|
|
5056
|
+
* The allocation ID of an Elastic IP address.
|
|
5057
|
+
*/
|
|
5058
|
+
AllocationId?: String;
|
|
5059
|
+
/**
|
|
5060
|
+
* The ID of the account that you want to transfer the Elastic IP address to.
|
|
5061
|
+
*/
|
|
5062
|
+
TransferAccountId?: String;
|
|
5063
|
+
/**
|
|
5064
|
+
* The timestamp when the Elastic IP address transfer expired. When the source account starts the transfer, the transfer account has seven hours to allocate the Elastic IP address to complete the transfer, or the Elastic IP address will return to its original owner.
|
|
5065
|
+
*/
|
|
5066
|
+
TransferOfferExpirationTimestamp?: MillisecondDateTime;
|
|
5067
|
+
/**
|
|
5068
|
+
* The timestamp when the Elastic IP address transfer was accepted.
|
|
5069
|
+
*/
|
|
5070
|
+
TransferOfferAcceptedTimestamp?: MillisecondDateTime;
|
|
5071
|
+
/**
|
|
5072
|
+
* The Elastic IP address transfer status.
|
|
5073
|
+
*/
|
|
5074
|
+
AddressTransferStatus?: AddressTransferStatus;
|
|
5075
|
+
}
|
|
5076
|
+
export type AddressTransferList = AddressTransfer[];
|
|
5077
|
+
export type AddressTransferStatus = "pending"|"disabled"|"accepted"|string;
|
|
4998
5078
|
export interface AdvertiseByoipCidrRequest {
|
|
4999
5079
|
/**
|
|
5000
5080
|
* The address range, in CIDR notation. This must be the exact range that you provisioned. You can't advertise only a portion of the provisioned range.
|
|
@@ -11795,6 +11875,35 @@ declare namespace EC2 {
|
|
|
11795
11875
|
*/
|
|
11796
11876
|
AccountAttributes?: AccountAttributeList;
|
|
11797
11877
|
}
|
|
11878
|
+
export type DescribeAddressTransfersMaxResults = number;
|
|
11879
|
+
export interface DescribeAddressTransfersRequest {
|
|
11880
|
+
/**
|
|
11881
|
+
* The allocation IDs of Elastic IP addresses.
|
|
11882
|
+
*/
|
|
11883
|
+
AllocationIds?: AllocationIdList;
|
|
11884
|
+
/**
|
|
11885
|
+
* Specify the pagination token from a previous request to retrieve the next page of results.
|
|
11886
|
+
*/
|
|
11887
|
+
NextToken?: String;
|
|
11888
|
+
/**
|
|
11889
|
+
* The maximum number of address transfers to return in one page of results.
|
|
11890
|
+
*/
|
|
11891
|
+
MaxResults?: DescribeAddressTransfersMaxResults;
|
|
11892
|
+
/**
|
|
11893
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
11894
|
+
*/
|
|
11895
|
+
DryRun?: Boolean;
|
|
11896
|
+
}
|
|
11897
|
+
export interface DescribeAddressTransfersResult {
|
|
11898
|
+
/**
|
|
11899
|
+
* The Elastic IP address transfer.
|
|
11900
|
+
*/
|
|
11901
|
+
AddressTransfers?: AddressTransferList;
|
|
11902
|
+
/**
|
|
11903
|
+
* Specify the pagination token from a previous request to retrieve the next page of results.
|
|
11904
|
+
*/
|
|
11905
|
+
NextToken?: String;
|
|
11906
|
+
}
|
|
11798
11907
|
export interface DescribeAddressesAttributeRequest {
|
|
11799
11908
|
/**
|
|
11800
11909
|
* [EC2-VPC] The allocation IDs.
|
|
@@ -16231,6 +16340,22 @@ declare namespace EC2 {
|
|
|
16231
16340
|
*/
|
|
16232
16341
|
DirectoryId?: String;
|
|
16233
16342
|
}
|
|
16343
|
+
export interface DisableAddressTransferRequest {
|
|
16344
|
+
/**
|
|
16345
|
+
* The allocation ID of an Elastic IP address.
|
|
16346
|
+
*/
|
|
16347
|
+
AllocationId: AllocationId;
|
|
16348
|
+
/**
|
|
16349
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
16350
|
+
*/
|
|
16351
|
+
DryRun?: Boolean;
|
|
16352
|
+
}
|
|
16353
|
+
export interface DisableAddressTransferResult {
|
|
16354
|
+
/**
|
|
16355
|
+
* An Elastic IP address transfer.
|
|
16356
|
+
*/
|
|
16357
|
+
AddressTransfer?: AddressTransfer;
|
|
16358
|
+
}
|
|
16234
16359
|
export interface DisableEbsEncryptionByDefaultRequest {
|
|
16235
16360
|
/**
|
|
16236
16361
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
@@ -17093,6 +17218,26 @@ declare namespace EC2 {
|
|
|
17093
17218
|
export type ElasticInferenceAccelerators = ElasticInferenceAccelerator[];
|
|
17094
17219
|
export type ElasticIpAssociationId = string;
|
|
17095
17220
|
export type EnaSupport = "unsupported"|"supported"|"required"|string;
|
|
17221
|
+
export interface EnableAddressTransferRequest {
|
|
17222
|
+
/**
|
|
17223
|
+
* The allocation ID of an Elastic IP address.
|
|
17224
|
+
*/
|
|
17225
|
+
AllocationId: AllocationId;
|
|
17226
|
+
/**
|
|
17227
|
+
* The ID of the account that you want to transfer the Elastic IP address to.
|
|
17228
|
+
*/
|
|
17229
|
+
TransferAccountId: String;
|
|
17230
|
+
/**
|
|
17231
|
+
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
17232
|
+
*/
|
|
17233
|
+
DryRun?: Boolean;
|
|
17234
|
+
}
|
|
17235
|
+
export interface EnableAddressTransferResult {
|
|
17236
|
+
/**
|
|
17237
|
+
* An Elastic IP address transfer.
|
|
17238
|
+
*/
|
|
17239
|
+
AddressTransfer?: AddressTransfer;
|
|
17240
|
+
}
|
|
17096
17241
|
export interface EnableEbsEncryptionByDefaultRequest {
|
|
17097
17242
|
/**
|
|
17098
17243
|
* Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation. Otherwise, it is UnauthorizedOperation.
|
|
@@ -19027,6 +19172,9 @@ declare namespace EC2 {
|
|
|
19027
19172
|
* The resource type.
|
|
19028
19173
|
*/
|
|
19029
19174
|
ResourceType?: IpamResourceType;
|
|
19175
|
+
/**
|
|
19176
|
+
* The resource tag.
|
|
19177
|
+
*/
|
|
19030
19178
|
ResourceTag?: RequestIpamResourceTag;
|
|
19031
19179
|
/**
|
|
19032
19180
|
* The ID of the Amazon Web Services account that owns the resource.
|
|
@@ -24894,6 +25042,9 @@ declare namespace EC2 {
|
|
|
24894
25042
|
Monitored: Boolean;
|
|
24895
25043
|
}
|
|
24896
25044
|
export interface ModifyIpamResourceCidrResult {
|
|
25045
|
+
/**
|
|
25046
|
+
* The CIDR of the resource.
|
|
25047
|
+
*/
|
|
24897
25048
|
IpamResourceCidr?: IpamResourceCidr;
|
|
24898
25049
|
}
|
|
24899
25050
|
export interface ModifyIpamResult {
|
|
@@ -26026,6 +26177,9 @@ declare namespace EC2 {
|
|
|
26026
26177
|
IpamPoolOwner: String;
|
|
26027
26178
|
}
|
|
26028
26179
|
export interface MoveByoipCidrToIpamResult {
|
|
26180
|
+
/**
|
|
26181
|
+
* The BYOIP CIDR.
|
|
26182
|
+
*/
|
|
26029
26183
|
ByoipCidr?: ByoipCidr;
|
|
26030
26184
|
}
|
|
26031
26185
|
export type MoveStatus = "movingToVpc"|"restoringToClassic"|string;
|
|
@@ -27537,6 +27691,9 @@ declare namespace EC2 {
|
|
|
27537
27691
|
* The ID of the pool that you want to provision the CIDR to.
|
|
27538
27692
|
*/
|
|
27539
27693
|
PoolId?: Ipv4PoolEc2Id;
|
|
27694
|
+
/**
|
|
27695
|
+
* Information about the address range of the public IPv4 pool.
|
|
27696
|
+
*/
|
|
27540
27697
|
PoolAddressRange?: PublicIpv4PoolRange;
|
|
27541
27698
|
}
|
|
27542
27699
|
export interface ProvisionedBandwidth {
|
|
@@ -2036,6 +2036,10 @@ declare namespace Iot {
|
|
|
2036
2036
|
* Write data to an Amazon OpenSearch Service domain.
|
|
2037
2037
|
*/
|
|
2038
2038
|
openSearch?: OpenSearchAction;
|
|
2039
|
+
/**
|
|
2040
|
+
* The Amazon Location Service rule action sends device location updates from an MQTT message to an Amazon Location tracker resource.
|
|
2041
|
+
*/
|
|
2042
|
+
location?: LocationAction;
|
|
2039
2043
|
}
|
|
2040
2044
|
export type ActionList = Action[];
|
|
2041
2045
|
export type ActionType = "PUBLISH"|"SUBSCRIBE"|"RECEIVE"|"CONNECT"|string;
|
|
@@ -3909,7 +3913,7 @@ declare namespace Iot {
|
|
|
3909
3913
|
*/
|
|
3910
3914
|
provisioningRoleArn: RoleArn;
|
|
3911
3915
|
/**
|
|
3912
|
-
* Creates a pre-provisioning hook template.
|
|
3916
|
+
* Creates a pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.
|
|
3913
3917
|
*/
|
|
3914
3918
|
preProvisioningHook?: ProvisioningHook;
|
|
3915
3919
|
/**
|
|
@@ -5981,7 +5985,7 @@ declare namespace Iot {
|
|
|
5981
5985
|
*/
|
|
5982
5986
|
securityProfileName?: SecurityProfileName;
|
|
5983
5987
|
/**
|
|
5984
|
-
* The maximum number of results to return at one time. The default is
|
|
5988
|
+
* The maximum number of results to return at one time. The default is 10.
|
|
5985
5989
|
*/
|
|
5986
5990
|
maxResults?: TinyMaxResults;
|
|
5987
5991
|
/**
|
|
@@ -8369,6 +8373,42 @@ declare namespace Iot {
|
|
|
8369
8373
|
*/
|
|
8370
8374
|
nextToken?: NextToken;
|
|
8371
8375
|
}
|
|
8376
|
+
export interface LocationAction {
|
|
8377
|
+
/**
|
|
8378
|
+
* The IAM role that grants permission to write to the Amazon Location resource.
|
|
8379
|
+
*/
|
|
8380
|
+
roleArn: AwsArn;
|
|
8381
|
+
/**
|
|
8382
|
+
* The name of the tracker resource in Amazon Location in which the location is updated.
|
|
8383
|
+
*/
|
|
8384
|
+
trackerName: String;
|
|
8385
|
+
/**
|
|
8386
|
+
* The unique ID of the device providing the location data.
|
|
8387
|
+
*/
|
|
8388
|
+
deviceId: String;
|
|
8389
|
+
/**
|
|
8390
|
+
* The time that the location data was sampled. The default value is the time the MQTT message was processed.
|
|
8391
|
+
*/
|
|
8392
|
+
timestamp?: LocationTimestamp;
|
|
8393
|
+
/**
|
|
8394
|
+
* A string that evaluates to a double value that represents the latitude of the device's location.
|
|
8395
|
+
*/
|
|
8396
|
+
latitude: String;
|
|
8397
|
+
/**
|
|
8398
|
+
* A string that evaluates to a double value that represents the longitude of the device's location.
|
|
8399
|
+
*/
|
|
8400
|
+
longitude: String;
|
|
8401
|
+
}
|
|
8402
|
+
export interface LocationTimestamp {
|
|
8403
|
+
/**
|
|
8404
|
+
* An expression that returns a long epoch time value.
|
|
8405
|
+
*/
|
|
8406
|
+
value: String;
|
|
8407
|
+
/**
|
|
8408
|
+
* The precision of the timestamp value that results from the expression described in value. Valid values: SECONDS | MILLISECONDS | MICROSECONDS | NANOSECONDS. The default is MILLISECONDS.
|
|
8409
|
+
*/
|
|
8410
|
+
unit?: String;
|
|
8411
|
+
}
|
|
8372
8412
|
export type LogGroupName = string;
|
|
8373
8413
|
export type LogLevel = "DEBUG"|"INFO"|"ERROR"|"WARN"|"DISABLED"|string;
|
|
8374
8414
|
export interface LogTarget {
|
|
@@ -8919,7 +8959,7 @@ declare namespace Iot {
|
|
|
8919
8959
|
export type ProvisioningTemplateVersionListing = ProvisioningTemplateVersionSummary[];
|
|
8920
8960
|
export interface ProvisioningTemplateVersionSummary {
|
|
8921
8961
|
/**
|
|
8922
|
-
* The ID of the fleet
|
|
8962
|
+
* The ID of the fleet provisioning template version.
|
|
8923
8963
|
*/
|
|
8924
8964
|
versionId?: TemplateVersionId;
|
|
8925
8965
|
/**
|
|
@@ -10996,7 +11036,7 @@ declare namespace Iot {
|
|
|
10996
11036
|
*/
|
|
10997
11037
|
provisioningRoleArn?: RoleArn;
|
|
10998
11038
|
/**
|
|
10999
|
-
* Updates the pre-provisioning hook template.
|
|
11039
|
+
* Updates the pre-provisioning hook template. Only supports template of type FLEET_PROVISIONING. For more information about provisioning template types, see type.
|
|
11000
11040
|
*/
|
|
11001
11041
|
preProvisioningHook?: ProvisioningHook;
|
|
11002
11042
|
/**
|