cdk-docker-image-deployment 0.0.65 → 0.0.67
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 +24 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/acm-2015-12-08.min.json +2 -1
- package/node_modules/aws-sdk/apis/athena-2017-05-18.min.json +76 -40
- package/node_modules/aws-sdk/apis/autoscaling-2011-01-01.min.json +116 -101
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.min.json +78 -10
- package/node_modules/aws-sdk/apis/billingconductor-2021-07-30.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/cloudtrail-2013-11-01.min.json +81 -37
- package/node_modules/aws-sdk/apis/ec2-2016-11-15.min.json +1032 -985
- package/node_modules/aws-sdk/apis/elasticache-2015-02-02.min.json +148 -128
- package/node_modules/aws-sdk/apis/fms-2018-01-01.min.json +354 -87
- package/node_modules/aws-sdk/apis/lightsail-2016-11-28.min.json +174 -140
- package/node_modules/aws-sdk/apis/mediaconvert-2017-08-29.min.json +131 -123
- package/node_modules/aws-sdk/apis/metadata.json +4 -0
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.min.json +530 -289
- package/node_modules/aws-sdk/apis/models.lex.v2-2020-08-07.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +459 -139
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.examples.json +5 -0
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.min.json +624 -0
- package/node_modules/aws-sdk/apis/resource-explorer-2-2022-07-28.paginators.json +28 -0
- package/node_modules/aws-sdk/apis/ssm-2014-11-06.min.json +45 -39
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.min.json +181 -31
- package/node_modules/aws-sdk/apis/wellarchitected-2020-03-31.paginators.json +10 -0
- package/node_modules/aws-sdk/apis/workspaces-2015-04-08.min.json +63 -59
- package/node_modules/aws-sdk/clients/acm.d.ts +9 -4
- package/node_modules/aws-sdk/clients/all.d.ts +1 -0
- package/node_modules/aws-sdk/clients/all.js +2 -1
- package/node_modules/aws-sdk/clients/athena.d.ts +35 -0
- package/node_modules/aws-sdk/clients/autoscaling.d.ts +44 -24
- package/node_modules/aws-sdk/clients/billingconductor.d.ts +163 -63
- package/node_modules/aws-sdk/clients/cloudtrail.d.ts +63 -5
- package/node_modules/aws-sdk/clients/ec2.d.ts +68 -8
- package/node_modules/aws-sdk/clients/elasticache.d.ts +62 -11
- package/node_modules/aws-sdk/clients/fms.d.ts +322 -1
- package/node_modules/aws-sdk/clients/lexmodelsv2.d.ts +260 -2
- package/node_modules/aws-sdk/clients/lightsail.d.ts +85 -17
- package/node_modules/aws-sdk/clients/mediaconvert.d.ts +20 -7
- package/node_modules/aws-sdk/clients/opensearch.d.ts +890 -430
- package/node_modules/aws-sdk/clients/polly.d.ts +1 -1
- package/node_modules/aws-sdk/clients/resourceexplorer2.d.ts +693 -0
- package/node_modules/aws-sdk/clients/resourceexplorer2.js +18 -0
- package/node_modules/aws-sdk/clients/route53.d.ts +4 -4
- package/node_modules/aws-sdk/clients/ssm.d.ts +5 -0
- package/node_modules/aws-sdk/clients/wafv2.d.ts +3 -3
- package/node_modules/aws-sdk/clients/wellarchitected.d.ts +182 -11
- package/node_modules/aws-sdk/clients/workspaces.d.ts +6 -0
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +59 -22
- package/node_modules/aws-sdk/dist/aws-sdk.js +1507 -1334
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +96 -96
- package/node_modules/aws-sdk/lib/config_service_placeholders.d.ts +2 -0
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +4 -4
|
@@ -59,6 +59,14 @@ declare class CloudTrail extends Service {
|
|
|
59
59
|
* Deletes a trail. This operation must be called from the region in which the trail was created. DeleteTrail cannot be called on the shadow trails (replicated trails in other regions) of a trail that is enabled in all regions.
|
|
60
60
|
*/
|
|
61
61
|
deleteTrail(callback?: (err: AWSError, data: CloudTrail.Types.DeleteTrailResponse) => void): Request<CloudTrail.Types.DeleteTrailResponse, AWSError>;
|
|
62
|
+
/**
|
|
63
|
+
* Removes CloudTrail delegated administrator permissions from a member account in an organization.
|
|
64
|
+
*/
|
|
65
|
+
deregisterOrganizationDelegatedAdmin(params: CloudTrail.Types.DeregisterOrganizationDelegatedAdminRequest, callback?: (err: AWSError, data: CloudTrail.Types.DeregisterOrganizationDelegatedAdminResponse) => void): Request<CloudTrail.Types.DeregisterOrganizationDelegatedAdminResponse, AWSError>;
|
|
66
|
+
/**
|
|
67
|
+
* Removes CloudTrail delegated administrator permissions from a member account in an organization.
|
|
68
|
+
*/
|
|
69
|
+
deregisterOrganizationDelegatedAdmin(callback?: (err: AWSError, data: CloudTrail.Types.DeregisterOrganizationDelegatedAdminResponse) => void): Request<CloudTrail.Types.DeregisterOrganizationDelegatedAdminResponse, AWSError>;
|
|
62
70
|
/**
|
|
63
71
|
* Returns metadata about a query, including query run time in milliseconds, number of events scanned and matched, and query status. You must specify an ARN for EventDataStore, and a value for QueryID.
|
|
64
72
|
*/
|
|
@@ -76,11 +84,11 @@ declare class CloudTrail extends Service {
|
|
|
76
84
|
*/
|
|
77
85
|
describeTrails(callback?: (err: AWSError, data: CloudTrail.Types.DescribeTrailsResponse) => void): Request<CloudTrail.Types.DescribeTrailsResponse, AWSError>;
|
|
78
86
|
/**
|
|
79
|
-
* Returns information about a specific channel. Amazon Web Services services create service-linked channels to get information about CloudTrail events on your behalf. For more information about service-linked channels, see Viewing service-linked channels for CloudTrail by using the CLI
|
|
87
|
+
* Returns information about a specific channel. Amazon Web Services services create service-linked channels to get information about CloudTrail events on your behalf. For more information about service-linked channels, see Viewing service-linked channels for CloudTrail by using the CLI.
|
|
80
88
|
*/
|
|
81
89
|
getChannel(params: CloudTrail.Types.GetChannelRequest, callback?: (err: AWSError, data: CloudTrail.Types.GetChannelResponse) => void): Request<CloudTrail.Types.GetChannelResponse, AWSError>;
|
|
82
90
|
/**
|
|
83
|
-
* Returns information about a specific channel. Amazon Web Services services create service-linked channels to get information about CloudTrail events on your behalf. For more information about service-linked channels, see Viewing service-linked channels for CloudTrail by using the CLI
|
|
91
|
+
* Returns information about a specific channel. Amazon Web Services services create service-linked channels to get information about CloudTrail events on your behalf. For more information about service-linked channels, see Viewing service-linked channels for CloudTrail by using the CLI.
|
|
84
92
|
*/
|
|
85
93
|
getChannel(callback?: (err: AWSError, data: CloudTrail.Types.GetChannelResponse) => void): Request<CloudTrail.Types.GetChannelResponse, AWSError>;
|
|
86
94
|
/**
|
|
@@ -227,6 +235,14 @@ declare class CloudTrail extends Service {
|
|
|
227
235
|
* Lets you enable Insights event logging by specifying the Insights selectors that you want to enable on an existing trail. You also use PutInsightSelectors to turn off Insights event logging, by passing an empty list of insight types. The valid Insights event types in this release are ApiErrorRateInsight and ApiCallRateInsight.
|
|
228
236
|
*/
|
|
229
237
|
putInsightSelectors(callback?: (err: AWSError, data: CloudTrail.Types.PutInsightSelectorsResponse) => void): Request<CloudTrail.Types.PutInsightSelectorsResponse, AWSError>;
|
|
238
|
+
/**
|
|
239
|
+
* Registers an organization’s member account as the CloudTrail delegated administrator.
|
|
240
|
+
*/
|
|
241
|
+
registerOrganizationDelegatedAdmin(params: CloudTrail.Types.RegisterOrganizationDelegatedAdminRequest, callback?: (err: AWSError, data: CloudTrail.Types.RegisterOrganizationDelegatedAdminResponse) => void): Request<CloudTrail.Types.RegisterOrganizationDelegatedAdminResponse, AWSError>;
|
|
242
|
+
/**
|
|
243
|
+
* Registers an organization’s member account as the CloudTrail delegated administrator.
|
|
244
|
+
*/
|
|
245
|
+
registerOrganizationDelegatedAdmin(callback?: (err: AWSError, data: CloudTrail.Types.RegisterOrganizationDelegatedAdminResponse) => void): Request<CloudTrail.Types.RegisterOrganizationDelegatedAdminResponse, AWSError>;
|
|
230
246
|
/**
|
|
231
247
|
* Removes the specified tags from a trail or event data store.
|
|
232
248
|
*/
|
|
@@ -301,6 +317,7 @@ declare class CloudTrail extends Service {
|
|
|
301
317
|
updateTrail(callback?: (err: AWSError, data: CloudTrail.Types.UpdateTrailResponse) => void): Request<CloudTrail.Types.UpdateTrailResponse, AWSError>;
|
|
302
318
|
}
|
|
303
319
|
declare namespace CloudTrail {
|
|
320
|
+
export type AccountId = string;
|
|
304
321
|
export interface AddTagsRequest {
|
|
305
322
|
/**
|
|
306
323
|
* Specifies the ARN of the trail or event data store to which one or more tags will be added. The format of a trail ARN is: arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail
|
|
@@ -361,7 +378,7 @@ declare namespace CloudTrail {
|
|
|
361
378
|
/**
|
|
362
379
|
* The ARN (or the ID suffix of the ARN) of an event data store on which the specified query is running.
|
|
363
380
|
*/
|
|
364
|
-
EventDataStore
|
|
381
|
+
EventDataStore?: EventDataStoreArn;
|
|
365
382
|
/**
|
|
366
383
|
* The ID of the query that you want to cancel. The QueryId comes from the response of a StartQuery operation.
|
|
367
384
|
*/
|
|
@@ -416,6 +433,10 @@ declare namespace CloudTrail {
|
|
|
416
433
|
*/
|
|
417
434
|
TerminationProtectionEnabled?: TerminationProtectionEnabled;
|
|
418
435
|
TagsList?: TagsList;
|
|
436
|
+
/**
|
|
437
|
+
* Specifies the KMS key ID to use to encrypt the events delivered by CloudTrail. The value can be an alias name prefixed by alias/, a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier. Disabling or deleting the KMS key, or removing CloudTrail permissions on the key, prevents CloudTrail from logging events to the event data store, and prevents users from querying the data in the event data store that was encrypted with the key. After you associate an event data store with a KMS key, the KMS key cannot be removed or changed. Before you disable or delete a KMS key that you are using with an event data store, delete or back up your event data store. CloudTrail also supports KMS multi-Region keys. For more information about multi-Region keys, see Using multi-Region keys in the Key Management Service Developer Guide. Examples: alias/MyAliasName arn:aws:kms:us-east-2:123456789012:alias/MyAliasName arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012 12345678-1234-1234-1234-123456789012
|
|
438
|
+
*/
|
|
439
|
+
KmsKeyId?: EventDataStoreKmsKeyId;
|
|
419
440
|
}
|
|
420
441
|
export interface CreateEventDataStoreResponse {
|
|
421
442
|
/**
|
|
@@ -459,6 +480,10 @@ declare namespace CloudTrail {
|
|
|
459
480
|
* The timestamp that shows when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
|
|
460
481
|
*/
|
|
461
482
|
UpdatedTimestamp?: _Date;
|
|
483
|
+
/**
|
|
484
|
+
* Specifies the KMS key ID that encrypts the events delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the following format. arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012
|
|
485
|
+
*/
|
|
486
|
+
KmsKeyId?: EventDataStoreKmsKeyId;
|
|
462
487
|
}
|
|
463
488
|
export interface CreateTrailRequest {
|
|
464
489
|
/**
|
|
@@ -592,11 +617,19 @@ declare namespace CloudTrail {
|
|
|
592
617
|
}
|
|
593
618
|
export type DeliveryS3Uri = string;
|
|
594
619
|
export type DeliveryStatus = "SUCCESS"|"FAILED"|"FAILED_SIGNING_FILE"|"PENDING"|"RESOURCE_NOT_FOUND"|"ACCESS_DENIED"|"ACCESS_DENIED_SIGNING_FILE"|"CANCELLED"|"UNKNOWN"|string;
|
|
620
|
+
export interface DeregisterOrganizationDelegatedAdminRequest {
|
|
621
|
+
/**
|
|
622
|
+
* A delegated administrator account ID. This is a member account in an organization that is currently designated as a delegated administrator.
|
|
623
|
+
*/
|
|
624
|
+
DelegatedAdminAccountId: AccountId;
|
|
625
|
+
}
|
|
626
|
+
export interface DeregisterOrganizationDelegatedAdminResponse {
|
|
627
|
+
}
|
|
595
628
|
export interface DescribeQueryRequest {
|
|
596
629
|
/**
|
|
597
630
|
* The ARN (or the ID suffix of the ARN) of an event data store on which the specified query was run.
|
|
598
631
|
*/
|
|
599
|
-
EventDataStore
|
|
632
|
+
EventDataStore?: EventDataStoreArn;
|
|
600
633
|
/**
|
|
601
634
|
* The query ID.
|
|
602
635
|
*/
|
|
@@ -743,6 +776,7 @@ declare namespace CloudTrail {
|
|
|
743
776
|
UpdatedTimestamp?: _Date;
|
|
744
777
|
}
|
|
745
778
|
export type EventDataStoreArn = string;
|
|
779
|
+
export type EventDataStoreKmsKeyId = string;
|
|
746
780
|
export type EventDataStoreName = string;
|
|
747
781
|
export type EventDataStoreStatus = "CREATED"|"ENABLED"|"PENDING_DELETION"|string;
|
|
748
782
|
export type EventDataStores = EventDataStore[];
|
|
@@ -842,6 +876,10 @@ declare namespace CloudTrail {
|
|
|
842
876
|
* Shows the time that an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
|
|
843
877
|
*/
|
|
844
878
|
UpdatedTimestamp?: _Date;
|
|
879
|
+
/**
|
|
880
|
+
* Specifies the KMS key ID that encrypts the events delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the following format. arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012
|
|
881
|
+
*/
|
|
882
|
+
KmsKeyId?: EventDataStoreKmsKeyId;
|
|
845
883
|
}
|
|
846
884
|
export interface GetEventSelectorsRequest {
|
|
847
885
|
/**
|
|
@@ -927,7 +965,7 @@ declare namespace CloudTrail {
|
|
|
927
965
|
/**
|
|
928
966
|
* The ARN (or ID suffix of the ARN) of the event data store against which the query was run.
|
|
929
967
|
*/
|
|
930
|
-
EventDataStore
|
|
968
|
+
EventDataStore?: EventDataStoreArn;
|
|
931
969
|
/**
|
|
932
970
|
* The ID of the query for which you want to get results.
|
|
933
971
|
*/
|
|
@@ -1509,6 +1547,14 @@ declare namespace CloudTrail {
|
|
|
1509
1547
|
}
|
|
1510
1548
|
export type QueryStatus = "QUEUED"|"RUNNING"|"FINISHED"|"FAILED"|"CANCELLED"|"TIMED_OUT"|string;
|
|
1511
1549
|
export type ReadWriteType = "ReadOnly"|"WriteOnly"|"All"|string;
|
|
1550
|
+
export interface RegisterOrganizationDelegatedAdminRequest {
|
|
1551
|
+
/**
|
|
1552
|
+
* An organization member account ID that you want to designate as a delegated administrator.
|
|
1553
|
+
*/
|
|
1554
|
+
MemberAccountId: AccountId;
|
|
1555
|
+
}
|
|
1556
|
+
export interface RegisterOrganizationDelegatedAdminResponse {
|
|
1557
|
+
}
|
|
1512
1558
|
export interface RemoveTagsRequest {
|
|
1513
1559
|
/**
|
|
1514
1560
|
* Specifies the ARN of the trail or event data store from which tags should be removed. Example trail ARN format: arn:aws:cloudtrail:us-east-2:123456789012:trail/MyTrail Example event data store ARN format: arn:aws:cloudtrail:us-east-2:12345678910:eventdatastore/EXAMPLE-f852-4e8f-8bd1-bcf6cEXAMPLE
|
|
@@ -1591,6 +1637,10 @@ declare namespace CloudTrail {
|
|
|
1591
1637
|
* The timestamp that shows when an event data store was updated, if applicable. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
|
|
1592
1638
|
*/
|
|
1593
1639
|
UpdatedTimestamp?: _Date;
|
|
1640
|
+
/**
|
|
1641
|
+
* Specifies the KMS key ID that encrypts the events delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the following format. arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012
|
|
1642
|
+
*/
|
|
1643
|
+
KmsKeyId?: EventDataStoreKmsKeyId;
|
|
1594
1644
|
}
|
|
1595
1645
|
export type RetentionPeriod = number;
|
|
1596
1646
|
export interface S3ImportSource {
|
|
@@ -1880,6 +1930,10 @@ declare namespace CloudTrail {
|
|
|
1880
1930
|
* Indicates that termination protection is enabled and the event data store cannot be automatically deleted.
|
|
1881
1931
|
*/
|
|
1882
1932
|
TerminationProtectionEnabled?: TerminationProtectionEnabled;
|
|
1933
|
+
/**
|
|
1934
|
+
* Specifies the KMS key ID to use to encrypt the events delivered by CloudTrail. The value can be an alias name prefixed by alias/, a fully specified ARN to an alias, a fully specified ARN to a key, or a globally unique identifier. Disabling or deleting the KMS key, or removing CloudTrail permissions on the key, prevents CloudTrail from logging events to the event data store, and prevents users from querying the data in the event data store that was encrypted with the key. After you associate an event data store with a KMS key, the KMS key cannot be removed or changed. Before you disable or delete a KMS key that you are using with an event data store, delete or back up your event data store. CloudTrail also supports KMS multi-Region keys. For more information about multi-Region keys, see Using multi-Region keys in the Key Management Service Developer Guide. Examples: alias/MyAliasName arn:aws:kms:us-east-2:123456789012:alias/MyAliasName arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012 12345678-1234-1234-1234-123456789012
|
|
1935
|
+
*/
|
|
1936
|
+
KmsKeyId?: EventDataStoreKmsKeyId;
|
|
1883
1937
|
}
|
|
1884
1938
|
export interface UpdateEventDataStoreResponse {
|
|
1885
1939
|
/**
|
|
@@ -1922,6 +1976,10 @@ declare namespace CloudTrail {
|
|
|
1922
1976
|
* The timestamp that shows when the event data store was last updated. UpdatedTimestamp is always either the same or newer than the time shown in CreatedTimestamp.
|
|
1923
1977
|
*/
|
|
1924
1978
|
UpdatedTimestamp?: _Date;
|
|
1979
|
+
/**
|
|
1980
|
+
* Specifies the KMS key ID that encrypts the events delivered by CloudTrail. The value is a fully specified ARN to a KMS key in the following format. arn:aws:kms:us-east-2:123456789012:key/12345678-1234-1234-1234-123456789012
|
|
1981
|
+
*/
|
|
1982
|
+
KmsKeyId?: EventDataStoreKmsKeyId;
|
|
1925
1983
|
}
|
|
1926
1984
|
export interface UpdateTrailRequest {
|
|
1927
1985
|
/**
|
|
@@ -2397,11 +2397,11 @@ declare class EC2 extends Service {
|
|
|
2397
2397
|
*/
|
|
2398
2398
|
describeSpotFleetInstances(callback?: (err: AWSError, data: EC2.Types.DescribeSpotFleetInstancesResponse) => void): Request<EC2.Types.DescribeSpotFleetInstancesResponse, AWSError>;
|
|
2399
2399
|
/**
|
|
2400
|
-
* Describes the events for the specified Spot Fleet request during the specified time. Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours. For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide
|
|
2400
|
+
* Describes the events for the specified Spot Fleet request during the specified time. Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours. For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.
|
|
2401
2401
|
*/
|
|
2402
2402
|
describeSpotFleetRequestHistory(params: EC2.Types.DescribeSpotFleetRequestHistoryRequest, callback?: (err: AWSError, data: EC2.Types.DescribeSpotFleetRequestHistoryResponse) => void): Request<EC2.Types.DescribeSpotFleetRequestHistoryResponse, AWSError>;
|
|
2403
2403
|
/**
|
|
2404
|
-
* Describes the events for the specified Spot Fleet request during the specified time. Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours. For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide
|
|
2404
|
+
* Describes the events for the specified Spot Fleet request during the specified time. Spot Fleet events are delayed by up to 30 seconds before they can be described. This ensures that you can query by the last evaluated time and not miss a recorded event. Spot Fleet events are available for 48 hours. For more information, see Monitor fleet events using Amazon EventBridge in the Amazon EC2 User Guide.
|
|
2405
2405
|
*/
|
|
2406
2406
|
describeSpotFleetRequestHistory(callback?: (err: AWSError, data: EC2.Types.DescribeSpotFleetRequestHistoryResponse) => void): Request<EC2.Types.DescribeSpotFleetRequestHistoryResponse, AWSError>;
|
|
2407
2407
|
/**
|
|
@@ -4101,11 +4101,11 @@ declare class EC2 extends Service {
|
|
|
4101
4101
|
*/
|
|
4102
4102
|
reportInstanceStatus(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
4103
4103
|
/**
|
|
4104
|
-
* Creates a Spot Fleet request. The Spot Fleet request specifies the total target capacity and the On-Demand target capacity. Amazon EC2 calculates the difference between the total capacity and On-Demand capacity, and launches the difference as Spot capacity. You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet. By default, the Spot Fleet requests Spot Instances in the Spot Instance pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload. Alternatively, you can specify that the Spot Fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot Instances in your Spot Fleet are in different Spot pools, you can improve the availability of your fleet. You can specify tags for the Spot Fleet request and instances launched by the fleet. You cannot tag other resource types in a Spot Fleet request because only the spot-fleet-request and instance resource types are supported. For more information, see Spot Fleet requests in the Amazon EC2 User Guide
|
|
4104
|
+
* Creates a Spot Fleet request. The Spot Fleet request specifies the total target capacity and the On-Demand target capacity. Amazon EC2 calculates the difference between the total capacity and On-Demand capacity, and launches the difference as Spot capacity. You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet. By default, the Spot Fleet requests Spot Instances in the Spot Instance pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload. Alternatively, you can specify that the Spot Fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot Instances in your Spot Fleet are in different Spot pools, you can improve the availability of your fleet. You can specify tags for the Spot Fleet request and instances launched by the fleet. You cannot tag other resource types in a Spot Fleet request because only the spot-fleet-request and instance resource types are supported. For more information, see Spot Fleet requests in the Amazon EC2 User Guide. We strongly discourage using the RequestSpotFleet API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide.
|
|
4105
4105
|
*/
|
|
4106
4106
|
requestSpotFleet(params: EC2.Types.RequestSpotFleetRequest, callback?: (err: AWSError, data: EC2.Types.RequestSpotFleetResponse) => void): Request<EC2.Types.RequestSpotFleetResponse, AWSError>;
|
|
4107
4107
|
/**
|
|
4108
|
-
* Creates a Spot Fleet request. The Spot Fleet request specifies the total target capacity and the On-Demand target capacity. Amazon EC2 calculates the difference between the total capacity and On-Demand capacity, and launches the difference as Spot capacity. You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet. By default, the Spot Fleet requests Spot Instances in the Spot Instance pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload. Alternatively, you can specify that the Spot Fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot Instances in your Spot Fleet are in different Spot pools, you can improve the availability of your fleet. You can specify tags for the Spot Fleet request and instances launched by the fleet. You cannot tag other resource types in a Spot Fleet request because only the spot-fleet-request and instance resource types are supported. For more information, see Spot Fleet requests in the Amazon EC2 User Guide
|
|
4108
|
+
* Creates a Spot Fleet request. The Spot Fleet request specifies the total target capacity and the On-Demand target capacity. Amazon EC2 calculates the difference between the total capacity and On-Demand capacity, and launches the difference as Spot capacity. You can submit a single request that includes multiple launch specifications that vary by instance type, AMI, Availability Zone, or subnet. By default, the Spot Fleet requests Spot Instances in the Spot Instance pool where the price per unit is the lowest. Each launch specification can include its own instance weighting that reflects the value of the instance type to your application workload. Alternatively, you can specify that the Spot Fleet distribute the target capacity across the Spot pools included in its launch specifications. By ensuring that the Spot Instances in your Spot Fleet are in different Spot pools, you can improve the availability of your fleet. You can specify tags for the Spot Fleet request and instances launched by the fleet. You cannot tag other resource types in a Spot Fleet request because only the spot-fleet-request and instance resource types are supported. For more information, see Spot Fleet requests in the Amazon EC2 User Guide. We strongly discourage using the RequestSpotFleet API because it is a legacy API with no planned investment. For options for requesting Spot Instances, see Which is the best Spot request method to use? in the Amazon EC2 User Guide.
|
|
4109
4109
|
*/
|
|
4110
4110
|
requestSpotFleet(callback?: (err: AWSError, data: EC2.Types.RequestSpotFleetResponse) => void): Request<EC2.Types.RequestSpotFleetResponse, AWSError>;
|
|
4111
4111
|
/**
|
|
@@ -5254,6 +5254,8 @@ declare namespace EC2 {
|
|
|
5254
5254
|
export type AllocationState = "available"|"under-assessment"|"permanent-failure"|"released"|"released-permanent-failure"|"pending"|string;
|
|
5255
5255
|
export type AllocationStrategy = "lowestPrice"|"diversified"|"capacityOptimized"|"capacityOptimizedPrioritized"|string;
|
|
5256
5256
|
export type AllocationType = "used"|string;
|
|
5257
|
+
export type AllowedInstanceType = string;
|
|
5258
|
+
export type AllowedInstanceTypeSet = AllowedInstanceType[];
|
|
5257
5259
|
export interface AllowedPrincipal {
|
|
5258
5260
|
/**
|
|
5259
5261
|
* The type of principal.
|
|
@@ -9226,6 +9228,9 @@ declare namespace EC2 {
|
|
|
9226
9228
|
SpreadLevel?: SpreadLevel;
|
|
9227
9229
|
}
|
|
9228
9230
|
export interface CreatePlacementGroupResult {
|
|
9231
|
+
/**
|
|
9232
|
+
* Information about the placement group.
|
|
9233
|
+
*/
|
|
9229
9234
|
PlacementGroup?: PlacementGroup;
|
|
9230
9235
|
}
|
|
9231
9236
|
export interface CreatePublicIpv4PoolRequest {
|
|
@@ -21848,7 +21853,7 @@ declare namespace EC2 {
|
|
|
21848
21853
|
*/
|
|
21849
21854
|
MemoryGiBPerVCpu?: MemoryGiBPerVCpu;
|
|
21850
21855
|
/**
|
|
21851
|
-
* The instance types to exclude. You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*. For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types. Default: No excluded instance types
|
|
21856
|
+
* The instance types to exclude. You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*. For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types. If you specify ExcludedInstanceTypes, you can't specify AllowedInstanceTypes. Default: No excluded instance types
|
|
21852
21857
|
*/
|
|
21853
21858
|
ExcludedInstanceTypes?: ExcludedInstanceTypeSet;
|
|
21854
21859
|
/**
|
|
@@ -21915,6 +21920,14 @@ declare namespace EC2 {
|
|
|
21915
21920
|
* The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
21916
21921
|
*/
|
|
21917
21922
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiB;
|
|
21923
|
+
/**
|
|
21924
|
+
* The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps). Default: No minimum or maximum limits
|
|
21925
|
+
*/
|
|
21926
|
+
NetworkBandwidthGbps?: NetworkBandwidthGbps;
|
|
21927
|
+
/**
|
|
21928
|
+
* The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes. You can use strings with one or more wild cards, represented by an asterisk (*), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*. For example, if you specify c5*,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will allow all the M5a instance types, but not the M5n instance types. If you specify AllowedInstanceTypes, you can't specify ExcludedInstanceTypes. Default: All instance types
|
|
21929
|
+
*/
|
|
21930
|
+
AllowedInstanceTypes?: AllowedInstanceTypeSet;
|
|
21918
21931
|
}
|
|
21919
21932
|
export interface InstanceRequirementsRequest {
|
|
21920
21933
|
/**
|
|
@@ -21934,7 +21947,7 @@ declare namespace EC2 {
|
|
|
21934
21947
|
*/
|
|
21935
21948
|
MemoryGiBPerVCpu?: MemoryGiBPerVCpuRequest;
|
|
21936
21949
|
/**
|
|
21937
|
-
* The instance types to exclude. You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance family, type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*. For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types. Default: No excluded instance types
|
|
21950
|
+
* The instance types to exclude. You can use strings with one or more wild cards, represented by an asterisk (*), to exclude an instance family, type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*. For example, if you specify c5*,Amazon EC2 will exclude the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will exclude all the M5a instance types, but not the M5n instance types. If you specify ExcludedInstanceTypes, you can't specify AllowedInstanceTypes. Default: No excluded instance types
|
|
21938
21951
|
*/
|
|
21939
21952
|
ExcludedInstanceTypes?: ExcludedInstanceTypeSet;
|
|
21940
21953
|
/**
|
|
@@ -22001,6 +22014,14 @@ declare namespace EC2 {
|
|
|
22001
22014
|
* The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
22002
22015
|
*/
|
|
22003
22016
|
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
22017
|
+
/**
|
|
22018
|
+
* The minimum and maximum amount of network bandwidth, in gigabits per second (Gbps). Default: No minimum or maximum limits
|
|
22019
|
+
*/
|
|
22020
|
+
NetworkBandwidthGbps?: NetworkBandwidthGbpsRequest;
|
|
22021
|
+
/**
|
|
22022
|
+
* The instance types to apply your specified attributes against. All other instance types are ignored, even if they match your specified attributes. You can use strings with one or more wild cards, represented by an asterisk (*), to allow an instance type, size, or generation. The following are examples: m5.8xlarge, c5*.*, m5a.*, r*, *3*. For example, if you specify c5*,Amazon EC2 will allow the entire C5 instance family, which includes all C5a and C5n instance types. If you specify m5a.*, Amazon EC2 will allow all the M5a instance types, but not the M5n instance types. If you specify AllowedInstanceTypes, you can't specify ExcludedInstanceTypes. Default: All instance types
|
|
22023
|
+
*/
|
|
22024
|
+
AllowedInstanceTypes?: AllowedInstanceTypeSet;
|
|
22004
22025
|
}
|
|
22005
22026
|
export interface InstanceRequirementsWithMetadataRequest {
|
|
22006
22027
|
/**
|
|
@@ -23645,6 +23666,10 @@ declare namespace EC2 {
|
|
|
23645
23666
|
* The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.
|
|
23646
23667
|
*/
|
|
23647
23668
|
PartitionNumber?: Integer;
|
|
23669
|
+
/**
|
|
23670
|
+
* The Group ID of the placement group. You must specify the Placement Group Group ID to launch an instance in a shared placement group.
|
|
23671
|
+
*/
|
|
23672
|
+
GroupId?: PlacementGroupId;
|
|
23648
23673
|
}
|
|
23649
23674
|
export interface LaunchTemplatePlacementRequest {
|
|
23650
23675
|
/**
|
|
@@ -23679,6 +23704,10 @@ declare namespace EC2 {
|
|
|
23679
23704
|
* The number of the partition the instance should launch in. Valid only if the placement group strategy is set to partition.
|
|
23680
23705
|
*/
|
|
23681
23706
|
PartitionNumber?: Integer;
|
|
23707
|
+
/**
|
|
23708
|
+
* The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.
|
|
23709
|
+
*/
|
|
23710
|
+
GroupId?: PlacementGroupId;
|
|
23682
23711
|
}
|
|
23683
23712
|
export interface LaunchTemplatePrivateDnsNameOptions {
|
|
23684
23713
|
/**
|
|
@@ -24835,6 +24864,9 @@ declare namespace EC2 {
|
|
|
24835
24864
|
NotBefore: DateTime;
|
|
24836
24865
|
}
|
|
24837
24866
|
export interface ModifyInstanceEventStartTimeResult {
|
|
24867
|
+
/**
|
|
24868
|
+
* Information about the event.
|
|
24869
|
+
*/
|
|
24838
24870
|
Event?: InstanceStatusEvent;
|
|
24839
24871
|
}
|
|
24840
24872
|
export interface ModifyInstanceEventWindowRequest {
|
|
@@ -24958,6 +24990,10 @@ declare namespace EC2 {
|
|
|
24958
24990
|
* The ARN of the host resource group in which to place the instance.
|
|
24959
24991
|
*/
|
|
24960
24992
|
HostResourceGroupArn?: String;
|
|
24993
|
+
/**
|
|
24994
|
+
* The Group Id of a placement group. You must specify the Placement Group Group Id to launch an instance in a shared placement group.
|
|
24995
|
+
*/
|
|
24996
|
+
GroupId?: PlacementGroupId;
|
|
24961
24997
|
}
|
|
24962
24998
|
export interface ModifyInstancePlacementResult {
|
|
24963
24999
|
/**
|
|
@@ -26377,6 +26413,26 @@ declare namespace EC2 {
|
|
|
26377
26413
|
export type NetworkAclId = string;
|
|
26378
26414
|
export type NetworkAclIdStringList = NetworkAclId[];
|
|
26379
26415
|
export type NetworkAclList = NetworkAcl[];
|
|
26416
|
+
export interface NetworkBandwidthGbps {
|
|
26417
|
+
/**
|
|
26418
|
+
* The minimum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no minimum limit.
|
|
26419
|
+
*/
|
|
26420
|
+
Min?: Double;
|
|
26421
|
+
/**
|
|
26422
|
+
* The maximum amount of network bandwidth, in Gbps. If this parameter is not specified, there is no maximum limit.
|
|
26423
|
+
*/
|
|
26424
|
+
Max?: Double;
|
|
26425
|
+
}
|
|
26426
|
+
export interface NetworkBandwidthGbpsRequest {
|
|
26427
|
+
/**
|
|
26428
|
+
* The minimum amount of network bandwidth, in Gbps. To specify no minimum limit, omit this parameter.
|
|
26429
|
+
*/
|
|
26430
|
+
Min?: Double;
|
|
26431
|
+
/**
|
|
26432
|
+
* The maximum amount of network bandwidth, in Gbps. To specify no maximum limit, omit this parameter.
|
|
26433
|
+
*/
|
|
26434
|
+
Max?: Double;
|
|
26435
|
+
}
|
|
26380
26436
|
export type NetworkCardIndex = number;
|
|
26381
26437
|
export interface NetworkCardInfo {
|
|
26382
26438
|
/**
|
|
@@ -27329,6 +27385,10 @@ declare namespace EC2 {
|
|
|
27329
27385
|
* The ARN of the host resource group in which to launch the instances. If you specify a host resource group ARN, omit the Tenancy parameter or set it to host. This parameter is not supported by CreateFleet.
|
|
27330
27386
|
*/
|
|
27331
27387
|
HostResourceGroupArn?: String;
|
|
27388
|
+
/**
|
|
27389
|
+
* The Group Id of the placement group.
|
|
27390
|
+
*/
|
|
27391
|
+
GroupId?: PlacementGroupId;
|
|
27332
27392
|
}
|
|
27333
27393
|
export interface PlacementGroup {
|
|
27334
27394
|
/**
|
|
@@ -31427,7 +31487,7 @@ declare namespace EC2 {
|
|
|
31427
31487
|
}
|
|
31428
31488
|
export interface SpotFleetRequestConfigData {
|
|
31429
31489
|
/**
|
|
31430
|
-
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the Spot Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide
|
|
31490
|
+
* The strategy that determines how to allocate the target Spot Instance capacity across the Spot Instance pools specified by the Spot Fleet launch configuration. For more information, see Allocation strategies for Spot Instances in the Amazon EC2 User Guide. lowestPrice - Spot Fleet launches instances from the lowest-price Spot Instance pool that has available capacity. If the cheapest pool doesn't have available capacity, the Spot Instances come from the next cheapest pool that has available capacity. If a pool runs out of capacity before fulfilling your desired capacity, Spot Fleet will continue to fulfill your request by drawing from the next cheapest pool. To ensure that your desired capacity is met, you might receive Spot Instances from several pools. diversified - Spot Fleet launches instances from all of the Spot Instance pools that you specify. capacityOptimized (recommended) - Spot Fleet launches instances from Spot Instance pools with optimal capacity for the number of instances that are launching. To give certain instance types a higher chance of launching first, use capacityOptimizedPrioritized. Set a priority for each instance type by using the Priority parameter for LaunchTemplateOverrides. You can assign the same priority to different LaunchTemplateOverrides. EC2 implements the priorities on a best-effort basis, but optimizes for capacity first. capacityOptimizedPrioritized is supported only if your Spot Fleet uses a launch template. Note that if the OnDemandAllocationStrategy is set to prioritized, the same priority is applied when fulfilling On-Demand capacity. Default: lowestPrice
|
|
31431
31491
|
*/
|
|
31432
31492
|
AllocationStrategy?: AllocationStrategy;
|
|
31433
31493
|
/**
|
|
@@ -31455,7 +31515,7 @@ declare namespace EC2 {
|
|
|
31455
31515
|
*/
|
|
31456
31516
|
OnDemandFulfilledCapacity?: Double;
|
|
31457
31517
|
/**
|
|
31458
|
-
* The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that grants the Spot Fleet the permission to request, launch, terminate, and tag instances on your behalf. For more information, see Spot Fleet prerequisites in the Amazon EC2 User Guide
|
|
31518
|
+
* The Amazon Resource Name (ARN) of an Identity and Access Management (IAM) role that grants the Spot Fleet the permission to request, launch, terminate, and tag instances on your behalf. For more information, see Spot Fleet prerequisites in the Amazon EC2 User Guide. Spot Fleet can terminate Spot Instances on your behalf when you cancel its Spot Fleet request using CancelSpotFleetRequests or when the Spot Fleet request expires, if you set TerminateInstancesWithExpiration.
|
|
31459
31519
|
*/
|
|
31460
31520
|
IamFleetRole: String;
|
|
31461
31521
|
/**
|