aws-sdk 2.1012.0 → 2.1016.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +27 -1
- package/README.md +1 -1
- package/apis/auditmanager-2017-07-25.min.json +168 -12
- package/apis/auditmanager-2017-07-25.paginators.json +5 -0
- package/apis/autoscaling-2011-01-01.min.json +240 -94
- package/apis/chime-2018-05-01.min.json +4 -2
- package/apis/chime-sdk-identity-2021-04-20.min.json +362 -13
- package/apis/chime-sdk-identity-2021-04-20.paginators.json +5 -0
- package/apis/chime-sdk-messaging-2021-05-15.min.json +180 -29
- package/apis/ec2-2016-11-15.min.json +1331 -800
- package/apis/ec2-2016-11-15.paginators.json +12 -0
- package/apis/emr-containers-2020-10-01.min.json +18 -6
- package/apis/quicksight-2018-04-01.min.json +27 -21
- package/apis/rds-2014-10-31.min.json +412 -317
- package/apis/route53resolver-2018-04-01.min.json +85 -13
- package/apis/route53resolver-2018-04-01.paginators.json +6 -0
- package/apis/sagemaker-2017-07-24.min.json +924 -792
- package/apis/textract-2018-06-27.min.json +107 -43
- package/clients/auditmanager.d.ts +486 -305
- package/clients/autoscaling.d.ts +217 -15
- package/clients/chime.d.ts +8 -0
- package/clients/chimesdkidentity.d.ts +314 -2
- package/clients/chimesdkmessaging.d.ts +146 -15
- package/clients/connect.d.ts +11 -11
- package/clients/ec2.d.ts +548 -4
- package/clients/eks.d.ts +1 -1
- package/clients/emrcontainers.d.ts +18 -3
- package/clients/finspace.js +0 -1
- package/clients/finspacedata.js +0 -1
- package/clients/lexmodelsv2.js +0 -1
- package/clients/lookoutmetrics.js +0 -1
- package/clients/quicksight.d.ts +12 -2
- package/clients/rds.d.ts +361 -200
- package/clients/route53resolver.d.ts +94 -0
- package/clients/sagemaker.d.ts +152 -8
- package/clients/textract.d.ts +98 -6
- package/dist/aws-sdk-core-react-native.js +57 -22
- package/dist/aws-sdk-react-native.js +299 -340
- package/dist/aws-sdk.js +2134 -1234
- package/dist/aws-sdk.min.js +87 -87
- package/lib/core.js +1 -1
- package/lib/protocol/rest_json.js +6 -12
- package/lib/region_config.js +44 -1
- package/lib/region_config_data.json +81 -0
- package/lib/request.js +4 -6
- package/lib/service.js +1 -1
- package/package.json +2 -2
- package/scripts/region-checker/allowlist.js +4 -0
- package/lib/services/finspace.js +0 -23
- package/lib/services/finspacedata.js +0 -23
- package/lib/services/lexmodelsv2.js +0 -23
- package/lib/services/lookoutmetrics.js +0 -22
package/clients/ec2.d.ts
CHANGED
|
@@ -2788,6 +2788,14 @@ declare class EC2 extends Service {
|
|
|
2788
2788
|
* Preview a reservation purchase with configurations that match those of your Dedicated Host. You must have active Dedicated Hosts in your account before you purchase a reservation. This is a preview of the PurchaseHostReservation action and does not result in the offering being purchased.
|
|
2789
2789
|
*/
|
|
2790
2790
|
getHostReservationPurchasePreview(callback?: (err: AWSError, data: EC2.Types.GetHostReservationPurchasePreviewResult) => void): Request<EC2.Types.GetHostReservationPurchasePreviewResult, AWSError>;
|
|
2791
|
+
/**
|
|
2792
|
+
* Returns a list of instance types with the specified instance attributes. You can use the response to preview the instance types without launching instances. Note that the response does not consider capacity. When you specify multiple parameters, you get instance types that satisfy all of the specified parameters. If you specify multiple values for a parameter, you get instance types that satisfy any of the specified values. For more information, see Preview instance types with specified attributes, Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide, and Creating an Auto Scaling group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide.
|
|
2793
|
+
*/
|
|
2794
|
+
getInstanceTypesFromInstanceRequirements(params: EC2.Types.GetInstanceTypesFromInstanceRequirementsRequest, callback?: (err: AWSError, data: EC2.Types.GetInstanceTypesFromInstanceRequirementsResult) => void): Request<EC2.Types.GetInstanceTypesFromInstanceRequirementsResult, AWSError>;
|
|
2795
|
+
/**
|
|
2796
|
+
* Returns a list of instance types with the specified instance attributes. You can use the response to preview the instance types without launching instances. Note that the response does not consider capacity. When you specify multiple parameters, you get instance types that satisfy all of the specified parameters. If you specify multiple values for a parameter, you get instance types that satisfy any of the specified values. For more information, see Preview instance types with specified attributes, Attribute-based instance type selection for EC2 Fleet, Attribute-based instance type selection for Spot Fleet, and Spot placement score in the Amazon EC2 User Guide, and Creating an Auto Scaling group using attribute-based instance type selection in the Amazon EC2 Auto Scaling User Guide.
|
|
2797
|
+
*/
|
|
2798
|
+
getInstanceTypesFromInstanceRequirements(callback?: (err: AWSError, data: EC2.Types.GetInstanceTypesFromInstanceRequirementsResult) => void): Request<EC2.Types.GetInstanceTypesFromInstanceRequirementsResult, AWSError>;
|
|
2791
2799
|
/**
|
|
2792
2800
|
* Retrieves the configuration data of the specified instance. You can use this data to create a launch template. This action calls on other describe actions to get instance information. Depending on your instance configuration, you may need to allow the following actions in your IAM policy: DescribeSpotInstanceRequests, DescribeInstanceCreditSpecifications, DescribeVolumes, DescribeInstanceAttribute, and DescribeElasticGpus. Or, you can allow describe* depending on your instance requirements.
|
|
2793
2801
|
*/
|
|
@@ -2836,6 +2844,14 @@ declare class EC2 extends Service {
|
|
|
2836
2844
|
* Retrieves the access status of your account to the EC2 serial console of all instances. By default, access to the EC2 serial console is disabled for your account. For more information, see Manage account access to the EC2 serial console in the Amazon EC2 User Guide.
|
|
2837
2845
|
*/
|
|
2838
2846
|
getSerialConsoleAccessStatus(callback?: (err: AWSError, data: EC2.Types.GetSerialConsoleAccessStatusResult) => void): Request<EC2.Types.GetSerialConsoleAccessStatusResult, AWSError>;
|
|
2847
|
+
/**
|
|
2848
|
+
* Calculates the Spot placement score for a Region or Availability Zone based on the specified target capacity and compute requirements. You can specify your compute requirements either by using InstanceRequirementsWithMetadata and letting Amazon EC2 choose the optimal instance types to fulfill your Spot request, or you can specify the instance types by using InstanceTypes. For more information, see Spot placement score in the Amazon EC2 User Guide.
|
|
2849
|
+
*/
|
|
2850
|
+
getSpotPlacementScores(params: EC2.Types.GetSpotPlacementScoresRequest, callback?: (err: AWSError, data: EC2.Types.GetSpotPlacementScoresResult) => void): Request<EC2.Types.GetSpotPlacementScoresResult, AWSError>;
|
|
2851
|
+
/**
|
|
2852
|
+
* Calculates the Spot placement score for a Region or Availability Zone based on the specified target capacity and compute requirements. You can specify your compute requirements either by using InstanceRequirementsWithMetadata and letting Amazon EC2 choose the optimal instance types to fulfill your Spot request, or you can specify the instance types by using InstanceTypes. For more information, see Spot placement score in the Amazon EC2 User Guide.
|
|
2853
|
+
*/
|
|
2854
|
+
getSpotPlacementScores(callback?: (err: AWSError, data: EC2.Types.GetSpotPlacementScoresResult) => void): Request<EC2.Types.GetSpotPlacementScoresResult, AWSError>;
|
|
2839
2855
|
/**
|
|
2840
2856
|
* Gets information about the subnet CIDR reservations.
|
|
2841
2857
|
*/
|
|
@@ -4038,6 +4054,52 @@ declare class EC2 extends Service {
|
|
|
4038
4054
|
waitFor(state: "vpcPeeringConnectionDeleted", callback?: (err: AWSError, data: EC2.Types.DescribeVpcPeeringConnectionsResult) => void): Request<EC2.Types.DescribeVpcPeeringConnectionsResult, AWSError>;
|
|
4039
4055
|
}
|
|
4040
4056
|
declare namespace EC2 {
|
|
4057
|
+
export interface AcceleratorCount {
|
|
4058
|
+
/**
|
|
4059
|
+
* The minimum number of accelerators. If this parameter is not specified, there is no minimum limit.
|
|
4060
|
+
*/
|
|
4061
|
+
Min?: Integer;
|
|
4062
|
+
/**
|
|
4063
|
+
* The maximum number of accelerators. If this parameter is not specified, there is no maximum limit.
|
|
4064
|
+
*/
|
|
4065
|
+
Max?: Integer;
|
|
4066
|
+
}
|
|
4067
|
+
export interface AcceleratorCountRequest {
|
|
4068
|
+
/**
|
|
4069
|
+
* The minimum number of accelerators. To specify no minimum limit, omit this parameter.
|
|
4070
|
+
*/
|
|
4071
|
+
Min?: Integer;
|
|
4072
|
+
/**
|
|
4073
|
+
* The maximum number of accelerators. To specify no maximum limit, omit this parameter. To exclude accelerator-enabled instance types, set Max to 0.
|
|
4074
|
+
*/
|
|
4075
|
+
Max?: Integer;
|
|
4076
|
+
}
|
|
4077
|
+
export type AcceleratorManufacturer = "nvidia"|"amd"|"amazon-web-services"|"xilinx"|string;
|
|
4078
|
+
export type AcceleratorManufacturerSet = AcceleratorManufacturer[];
|
|
4079
|
+
export type AcceleratorName = "a100"|"v100"|"k80"|"t4"|"m60"|"radeon-pro-v520"|"vu9p"|string;
|
|
4080
|
+
export type AcceleratorNameSet = AcceleratorName[];
|
|
4081
|
+
export interface AcceleratorTotalMemoryMiB {
|
|
4082
|
+
/**
|
|
4083
|
+
* The minimum amount of accelerator memory, in MiB. If this parameter is not specified, there is no minimum limit.
|
|
4084
|
+
*/
|
|
4085
|
+
Min?: Integer;
|
|
4086
|
+
/**
|
|
4087
|
+
* The maximum amount of accelerator memory, in MiB. If this parameter is not specified, there is no maximum limit.
|
|
4088
|
+
*/
|
|
4089
|
+
Max?: Integer;
|
|
4090
|
+
}
|
|
4091
|
+
export interface AcceleratorTotalMemoryMiBRequest {
|
|
4092
|
+
/**
|
|
4093
|
+
* The minimum amount of accelerator memory, in MiB. To specify no minimum limit, omit this parameter.
|
|
4094
|
+
*/
|
|
4095
|
+
Min?: Integer;
|
|
4096
|
+
/**
|
|
4097
|
+
* The maximum amount of accelerator memory, in MiB. To specify no maximum limit, omit this parameter.
|
|
4098
|
+
*/
|
|
4099
|
+
Max?: Integer;
|
|
4100
|
+
}
|
|
4101
|
+
export type AcceleratorType = "gpu"|"fpga"|"inference"|string;
|
|
4102
|
+
export type AcceleratorTypeSet = AcceleratorType[];
|
|
4041
4103
|
export interface AcceptReservedInstancesExchangeQuoteRequest {
|
|
4042
4104
|
/**
|
|
4043
4105
|
* 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.
|
|
@@ -4610,6 +4672,7 @@ declare namespace EC2 {
|
|
|
4610
4672
|
}
|
|
4611
4673
|
export type ArchitectureType = "i386"|"x86_64"|"arm64"|"x86_64_mac"|string;
|
|
4612
4674
|
export type ArchitectureTypeList = ArchitectureType[];
|
|
4675
|
+
export type ArchitectureTypeSet = ArchitectureType[];
|
|
4613
4676
|
export type ArchitectureValues = "i386"|"x86_64"|"arm64"|"x86_64_mac"|string;
|
|
4614
4677
|
export type ArnList = ResourceArn[];
|
|
4615
4678
|
export interface AssignIpv6AddressesRequest {
|
|
@@ -5431,8 +5494,29 @@ declare namespace EC2 {
|
|
|
5431
5494
|
AvailableVCpus?: Integer;
|
|
5432
5495
|
}
|
|
5433
5496
|
export type AvailableInstanceCapacityList = InstanceCapacity[];
|
|
5497
|
+
export type BareMetal = "included"|"required"|"excluded"|string;
|
|
5434
5498
|
export type BareMetalFlag = boolean;
|
|
5435
5499
|
export type BaselineBandwidthInMbps = number;
|
|
5500
|
+
export interface BaselineEbsBandwidthMbps {
|
|
5501
|
+
/**
|
|
5502
|
+
* The minimum baseline bandwidth, in Mbps. If this parameter is not specified, there is no minimum limit.
|
|
5503
|
+
*/
|
|
5504
|
+
Min?: Integer;
|
|
5505
|
+
/**
|
|
5506
|
+
* The maximum baseline bandwidth, in Mbps. If this parameter is not specified, there is no maximum limit.
|
|
5507
|
+
*/
|
|
5508
|
+
Max?: Integer;
|
|
5509
|
+
}
|
|
5510
|
+
export interface BaselineEbsBandwidthMbpsRequest {
|
|
5511
|
+
/**
|
|
5512
|
+
* The minimum baseline bandwidth, in Mbps. To specify no minimum limit, omit this parameter.
|
|
5513
|
+
*/
|
|
5514
|
+
Min?: Integer;
|
|
5515
|
+
/**
|
|
5516
|
+
* The maximum baseline bandwidth, in Mbps. To specify no maximum limit, omit this parameter.
|
|
5517
|
+
*/
|
|
5518
|
+
Max?: Integer;
|
|
5519
|
+
}
|
|
5436
5520
|
export type BaselineIops = number;
|
|
5437
5521
|
export type BaselineThroughputInMBps = number;
|
|
5438
5522
|
export type BatchState = "submitted"|"active"|"cancelled"|"failed"|"cancelled_running"|"cancelled_terminating"|"modifying"|string;
|
|
@@ -5534,6 +5618,7 @@ declare namespace EC2 {
|
|
|
5534
5618
|
}
|
|
5535
5619
|
export type BundleTaskList = BundleTask[];
|
|
5536
5620
|
export type BundleTaskState = "pending"|"waiting-for-shutdown"|"bundling"|"storing"|"cancelling"|"complete"|"failed"|string;
|
|
5621
|
+
export type BurstablePerformance = "included"|"required"|"excluded"|string;
|
|
5537
5622
|
export type BurstablePerformanceFlag = boolean;
|
|
5538
5623
|
export interface ByoipCidr {
|
|
5539
5624
|
/**
|
|
@@ -6717,6 +6802,8 @@ declare namespace EC2 {
|
|
|
6717
6802
|
export type CopyTagsFromSource = "volume"|string;
|
|
6718
6803
|
export type CoreCount = number;
|
|
6719
6804
|
export type CoreCountList = CoreCount[];
|
|
6805
|
+
export type CpuManufacturer = "intel"|"amd"|"amazon-web-services"|string;
|
|
6806
|
+
export type CpuManufacturerSet = CpuManufacturer[];
|
|
6720
6807
|
export interface CpuOptions {
|
|
6721
6808
|
/**
|
|
6722
6809
|
* The number of CPU cores for the instance.
|
|
@@ -11675,7 +11762,7 @@ declare namespace EC2 {
|
|
|
11675
11762
|
}
|
|
11676
11763
|
export interface DescribeInstancesRequest {
|
|
11677
11764
|
/**
|
|
11678
|
-
* The filters. affinity - The affinity setting for an instance running on a Dedicated Host (default | host). architecture - The instance architecture (i386 | x86_64 | arm64). availability-zone - The Availability Zone of the instance. block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2010-09-15T17:15:20.000Z. block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached). block-device-mapping.volume-id - The volume ID of the EBS volume. client-token - The idempotency token you provided when you launched the instance. dns-name - The public DNS name of the instance. group-id - The ID of the security group for the instance. EC2-Classic only. group-name - The name of the security group for the instance. EC2-Classic only. hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation. host-id - The ID of the Dedicated Host on which the instance is running, if applicable. hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors. iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN. image-id - The ID of the image used to launch the instance. instance-id - The ID of the instance. instance-lifecycle - Indicates whether this is a Spot Instance or a Scheduled Instance (spot | scheduled). instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped). instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped). instance-type - The type of instance (for example, t2.micro). instance.group-id - The ID of the security group for the instance. instance.group-name - The name of the security group for the instance. ip-address - The public IPv4 address of the instance. kernel-id - The kernel ID. key-name - The name of the key pair used when the instance was launched. launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on). launch-time - The time when the instance was launched. metadata-options.http-tokens - The metadata request authorization state (optional | required) metadata-options.http-put-response-hop-limit - The http metadata request put response hop limit (integer, possible values 1 to 64) metadata-options.http-endpoint - Enable or disable metadata access on http endpoint (enabled | disabled) monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled). network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface. network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address. network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface. network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface. network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface. network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface. network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface. network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address. network-interface.attachment.attachment-id - The ID of the interface attachment. network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached. network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached. network-interface.attachment.device-index - The device index to which the network interface is attached. network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached). network-interface.attachment.attach-time - The time that the network interface was attached to an instance. network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated. network-interface.availability-zone - The Availability Zone for the network interface. network-interface.description - The description of the network interface. network-interface.group-id - The ID of a security group associated with the network interface. network-interface.group-name - The name of a security group associated with the network interface. network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface. network-interface.mac-address - The MAC address of the network interface. network-interface.network-interface-id - The ID of the network interface. network-interface.owner-id - The ID of the owner of the network interface. network-interface.private-dns-name - The private DNS name of the network interface. network-interface.requester-id - The requester ID for the network interface. network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services. network-interface.status - The status of the network interface (available) | in-use). network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC. network-interface.subnet-id - The ID of the subnet for the network interface. network-interface.vpc-id - The ID of the VPC for the network interface. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The Amazon Web Services account ID of the instance owner. placement-group-name - The name of the placement group for the instance. placement-partition-number - The partition in which the instance is located. platform - The platform. To list only Windows instances, use windows. private-dns-name - The private IPv4 DNS name of the instance. private-ip-address - The private IPv4 address of the instance. product-code - The product code associated with the AMI used to launch the instance. product-code.type - The type of product code (devpay | marketplace). ramdisk-id - The RAM disk ID. reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter. requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on). reservation-id - The ID of the instance's reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC. spot-instance-request-id - The ID of the Spot Instance request. state-reason-code - The reason code for the state change. state-reason-message - A message that describes the state change. subnet-id - The ID of the subnet for the instance. 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. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value. tenancy - The tenancy of an instance (dedicated | default | host). virtualization-type - The virtualization type of the instance (paravirtual | hvm). vpc-id - The ID of the VPC that the instance is running in.
|
|
11765
|
+
* The filters. affinity - The affinity setting for an instance running on a Dedicated Host (default | host). architecture - The instance architecture (i386 | x86_64 | arm64). availability-zone - The Availability Zone of the instance. block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2010-09-15T17:15:20.000Z. block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached). block-device-mapping.volume-id - The volume ID of the EBS volume. client-token - The idempotency token you provided when you launched the instance. dns-name - The public DNS name of the instance. group-id - The ID of the security group for the instance. EC2-Classic only. group-name - The name of the security group for the instance. EC2-Classic only. hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation. host-id - The ID of the Dedicated Host on which the instance is running, if applicable. hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors. iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN. image-id - The ID of the image used to launch the instance. instance-id - The ID of the instance. instance-lifecycle - Indicates whether this is a Spot Instance or a Scheduled Instance (spot | scheduled). instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped). instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped). instance-type - The type of instance (for example, t2.micro). instance.group-id - The ID of the security group for the instance. instance.group-name - The name of the security group for the instance. ip-address - The public IPv4 address of the instance. kernel-id - The kernel ID. key-name - The name of the key pair used when the instance was launched. launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on). launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. metadata-options.http-tokens - The metadata request authorization state (optional | required) metadata-options.http-put-response-hop-limit - The http metadata request put response hop limit (integer, possible values 1 to 64) metadata-options.http-endpoint - Enable or disable metadata access on http endpoint (enabled | disabled) monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled). network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface. network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address. network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface. network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface. network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface. network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface. network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface. network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address. network-interface.attachment.attachment-id - The ID of the interface attachment. network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached. network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached. network-interface.attachment.device-index - The device index to which the network interface is attached. network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached). network-interface.attachment.attach-time - The time that the network interface was attached to an instance. network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated. network-interface.availability-zone - The Availability Zone for the network interface. network-interface.description - The description of the network interface. network-interface.group-id - The ID of a security group associated with the network interface. network-interface.group-name - The name of a security group associated with the network interface. network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface. network-interface.mac-address - The MAC address of the network interface. network-interface.network-interface-id - The ID of the network interface. network-interface.owner-id - The ID of the owner of the network interface. network-interface.private-dns-name - The private DNS name of the network interface. network-interface.requester-id - The requester ID for the network interface. network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services. network-interface.status - The status of the network interface (available) | in-use). network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC. network-interface.subnet-id - The ID of the subnet for the network interface. network-interface.vpc-id - The ID of the VPC for the network interface. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The Amazon Web Services account ID of the instance owner. placement-group-name - The name of the placement group for the instance. placement-partition-number - The partition in which the instance is located. platform - The platform. To list only Windows instances, use windows. private-dns-name - The private IPv4 DNS name of the instance. private-ip-address - The private IPv4 address of the instance. product-code - The product code associated with the AMI used to launch the instance. product-code.type - The type of product code (devpay | marketplace). ramdisk-id - The RAM disk ID. reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter. requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on). reservation-id - The ID of the instance's reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC. spot-instance-request-id - The ID of the Spot Instance request. state-reason-code - The reason code for the state change. state-reason-message - A message that describes the state change. subnet-id - The ID of the subnet for the instance. 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. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value. tenancy - The tenancy of an instance (dedicated | default | host). virtualization-type - The virtualization type of the instance (paravirtual | hvm). vpc-id - The ID of the VPC that the instance is running in.
|
|
11679
11766
|
*/
|
|
11680
11767
|
Filters?: FilterList;
|
|
11681
11768
|
/**
|
|
@@ -15333,6 +15420,8 @@ declare namespace EC2 {
|
|
|
15333
15420
|
}
|
|
15334
15421
|
export type EventType = "instanceChange"|"fleetRequestChange"|"error"|"information"|string;
|
|
15335
15422
|
export type ExcessCapacityTerminationPolicy = "noTermination"|"default"|string;
|
|
15423
|
+
export type ExcludedInstanceType = string;
|
|
15424
|
+
export type ExcludedInstanceTypeSet = ExcludedInstanceType[];
|
|
15336
15425
|
export type ExecutableByStringList = String[];
|
|
15337
15426
|
export interface Explanation {
|
|
15338
15427
|
/**
|
|
@@ -16001,7 +16090,7 @@ declare namespace EC2 {
|
|
|
16001
16090
|
}
|
|
16002
16091
|
export interface FleetLaunchTemplateOverrides {
|
|
16003
16092
|
/**
|
|
16004
|
-
* The instance type.
|
|
16093
|
+
* The instance type. If you specify InstanceTypes, you can't specify InstanceRequirements.
|
|
16005
16094
|
*/
|
|
16006
16095
|
InstanceType?: InstanceType;
|
|
16007
16096
|
/**
|
|
@@ -16028,12 +16117,16 @@ declare namespace EC2 {
|
|
|
16028
16117
|
* The location where the instance launched, if applicable.
|
|
16029
16118
|
*/
|
|
16030
16119
|
Placement?: PlacementResponse;
|
|
16120
|
+
/**
|
|
16121
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify InstanceTypes.
|
|
16122
|
+
*/
|
|
16123
|
+
InstanceRequirements?: InstanceRequirements;
|
|
16031
16124
|
}
|
|
16032
16125
|
export type FleetLaunchTemplateOverridesList = FleetLaunchTemplateOverrides[];
|
|
16033
16126
|
export type FleetLaunchTemplateOverridesListRequest = FleetLaunchTemplateOverridesRequest[];
|
|
16034
16127
|
export interface FleetLaunchTemplateOverridesRequest {
|
|
16035
16128
|
/**
|
|
16036
|
-
* The instance type.
|
|
16129
|
+
* The instance type. If you specify InstanceTypes, you can't specify InstanceRequirements.
|
|
16037
16130
|
*/
|
|
16038
16131
|
InstanceType?: InstanceType;
|
|
16039
16132
|
/**
|
|
@@ -16060,6 +16153,10 @@ declare namespace EC2 {
|
|
|
16060
16153
|
* The location where the instance launched, if applicable.
|
|
16061
16154
|
*/
|
|
16062
16155
|
Placement?: Placement;
|
|
16156
|
+
/**
|
|
16157
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify InstanceTypes.
|
|
16158
|
+
*/
|
|
16159
|
+
InstanceRequirements?: InstanceRequirementsRequest;
|
|
16063
16160
|
}
|
|
16064
16161
|
export interface FleetLaunchTemplateSpecification {
|
|
16065
16162
|
/**
|
|
@@ -16629,6 +16726,42 @@ declare namespace EC2 {
|
|
|
16629
16726
|
*/
|
|
16630
16727
|
TotalUpfrontPrice?: String;
|
|
16631
16728
|
}
|
|
16729
|
+
export interface GetInstanceTypesFromInstanceRequirementsRequest {
|
|
16730
|
+
/**
|
|
16731
|
+
* 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.
|
|
16732
|
+
*/
|
|
16733
|
+
DryRun?: Boolean;
|
|
16734
|
+
/**
|
|
16735
|
+
* The processor architecture type.
|
|
16736
|
+
*/
|
|
16737
|
+
ArchitectureTypes: ArchitectureTypeSet;
|
|
16738
|
+
/**
|
|
16739
|
+
* The virtualization type.
|
|
16740
|
+
*/
|
|
16741
|
+
VirtualizationTypes: VirtualizationTypeSet;
|
|
16742
|
+
/**
|
|
16743
|
+
* The attributes required for the instance types.
|
|
16744
|
+
*/
|
|
16745
|
+
InstanceRequirements: InstanceRequirementsRequest;
|
|
16746
|
+
/**
|
|
16747
|
+
* The maximum number of results to return in a single call. Specify a value between 1 and
 1000. The default value is 1000. To retrieve the remaining results, make another call with
 the returned NextToken value.
|
|
16748
|
+
*/
|
|
16749
|
+
MaxResults?: Integer;
|
|
16750
|
+
/**
|
|
16751
|
+
* The token for the next set of results.
|
|
16752
|
+
*/
|
|
16753
|
+
NextToken?: String;
|
|
16754
|
+
}
|
|
16755
|
+
export interface GetInstanceTypesFromInstanceRequirementsResult {
|
|
16756
|
+
/**
|
|
16757
|
+
* The instance types with the specified instance attributes.
|
|
16758
|
+
*/
|
|
16759
|
+
InstanceTypes?: InstanceTypeInfoFromInstanceRequirementsSet;
|
|
16760
|
+
/**
|
|
16761
|
+
* The token for the next set of results.
|
|
16762
|
+
*/
|
|
16763
|
+
NextToken?: String;
|
|
16764
|
+
}
|
|
16632
16765
|
export interface GetLaunchTemplateDataRequest {
|
|
16633
16766
|
/**
|
|
16634
16767
|
* 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.
|
|
@@ -16794,6 +16927,54 @@ declare namespace EC2 {
|
|
|
16794
16927
|
*/
|
|
16795
16928
|
SerialConsoleAccessEnabled?: Boolean;
|
|
16796
16929
|
}
|
|
16930
|
+
export interface GetSpotPlacementScoresRequest {
|
|
16931
|
+
/**
|
|
16932
|
+
* The instance types. We recommend that you specify at least three instance types. If you specify one or two instance types, or specify variations of a single instance type (for example, an m3.xlarge with and without instance storage), the returned placement score will always be low. If you specify InstanceTypes, you can't specify InstanceRequirementsWithMetadata.
|
|
16933
|
+
*/
|
|
16934
|
+
InstanceTypes?: InstanceTypes;
|
|
16935
|
+
/**
|
|
16936
|
+
* The target capacity.
|
|
16937
|
+
*/
|
|
16938
|
+
TargetCapacity: SpotPlacementScoresTargetCapacity;
|
|
16939
|
+
/**
|
|
16940
|
+
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
16941
|
+
*/
|
|
16942
|
+
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
16943
|
+
/**
|
|
16944
|
+
* Specify true so that the response returns a list of scored Availability Zones. Otherwise, the response returns a list of scored Regions. A list of scored Availability Zones is useful if you want to launch all of your Spot capacity into a single Availability Zone.
|
|
16945
|
+
*/
|
|
16946
|
+
SingleAvailabilityZone?: Boolean;
|
|
16947
|
+
/**
|
|
16948
|
+
* The Regions used to narrow down the list of Regions to be scored. Enter the Region code, for example, us-east-1.
|
|
16949
|
+
*/
|
|
16950
|
+
RegionNames?: RegionNames;
|
|
16951
|
+
/**
|
|
16952
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirementsWithMetadata, you can't specify InstanceTypes.
|
|
16953
|
+
*/
|
|
16954
|
+
InstanceRequirementsWithMetadata?: InstanceRequirementsWithMetadataRequest;
|
|
16955
|
+
/**
|
|
16956
|
+
* 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.
|
|
16957
|
+
*/
|
|
16958
|
+
DryRun?: Boolean;
|
|
16959
|
+
/**
|
|
16960
|
+
* The maximum number of results to return in a single call. Specify a value between 1 and
 1000. The default value is 1000. To retrieve the remaining results, make another call with
 the returned NextToken value.
|
|
16961
|
+
*/
|
|
16962
|
+
MaxResults?: SpotPlacementScoresMaxResults;
|
|
16963
|
+
/**
|
|
16964
|
+
* The token for the next set of results.
|
|
16965
|
+
*/
|
|
16966
|
+
NextToken?: String;
|
|
16967
|
+
}
|
|
16968
|
+
export interface GetSpotPlacementScoresResult {
|
|
16969
|
+
/**
|
|
16970
|
+
* The Spot placement score for the top 10 Regions or Availability Zones, scored on a scale from 1 to 10. Each score
 reflects how likely it is that each Region or Availability Zone will succeed at fulfilling the specified target capacity
 at the time of the Spot placement score request. A score of 10 means that your Spot capacity request is highly likely to succeed in that Region or Availability Zone. If you request a Spot placement score for Regions, a high score assumes that your fleet request will be configured to use all Availability Zones and the capacity-optimized allocation strategy. If you request a Spot placement score for Availability Zones, a high score assumes that your fleet request will be configured to use a single Availability Zone and the capacity-optimized allocation strategy. Different
 Regions or Availability Zones might return the same score. The Spot placement score serves as a recommendation only. No score guarantees that your Spot request will be fully or partially fulfilled.
|
|
16971
|
+
*/
|
|
16972
|
+
SpotPlacementScores?: SpotPlacementScores;
|
|
16973
|
+
/**
|
|
16974
|
+
* The token for the next set of results.
|
|
16975
|
+
*/
|
|
16976
|
+
NextToken?: String;
|
|
16977
|
+
}
|
|
16797
16978
|
export type GetSubnetCidrReservationsMaxResults = number;
|
|
16798
16979
|
export interface GetSubnetCidrReservationsRequest {
|
|
16799
16980
|
/**
|
|
@@ -18660,6 +18841,8 @@ declare namespace EC2 {
|
|
|
18660
18841
|
*/
|
|
18661
18842
|
CpuCredits?: String;
|
|
18662
18843
|
}
|
|
18844
|
+
export type InstanceGeneration = "current"|"previous"|string;
|
|
18845
|
+
export type InstanceGenerationSet = InstanceGeneration[];
|
|
18663
18846
|
export type InstanceHealthStatus = "healthy"|"unhealthy"|string;
|
|
18664
18847
|
export type InstanceId = string;
|
|
18665
18848
|
export type InstanceIdList = InstanceId[];
|
|
@@ -18980,6 +19163,192 @@ declare namespace EC2 {
|
|
|
18980
19163
|
PrivateIpAddress?: String;
|
|
18981
19164
|
}
|
|
18982
19165
|
export type InstancePrivateIpAddressList = InstancePrivateIpAddress[];
|
|
19166
|
+
export interface InstanceRequirements {
|
|
19167
|
+
/**
|
|
19168
|
+
* The minimum and maximum number of vCPUs.
|
|
19169
|
+
*/
|
|
19170
|
+
VCpuCount?: VCpuCountRange;
|
|
19171
|
+
/**
|
|
19172
|
+
* The minimum and maximum amount of memory, in MiB.
|
|
19173
|
+
*/
|
|
19174
|
+
MemoryMiB?: MemoryMiB;
|
|
19175
|
+
/**
|
|
19176
|
+
* The CPU manufacturers to include. For instance types with Intel CPUs, specify intel. For instance types with AMD CPUs, specify amd. For instance types with Amazon Web Services CPUs, specify amazon-web-services. Don't confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template. Default: Any manufacturer
|
|
19177
|
+
*/
|
|
19178
|
+
CpuManufacturers?: CpuManufacturerSet;
|
|
19179
|
+
/**
|
|
19180
|
+
* The minimum and maximum amount of memory per vCPU, in GiB. Default: No minimum or maximum limits
|
|
19181
|
+
*/
|
|
19182
|
+
MemoryGiBPerVCpu?: MemoryGiBPerVCpu;
|
|
19183
|
+
/**
|
|
19184
|
+
* 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 (all C5a and C5n instance types). If you specify c5a.*, Amazon EC2 excludes all the C5a instance types, but does not exclude the C5n instance types. Default: No excluded instance types
|
|
19185
|
+
*/
|
|
19186
|
+
ExcludedInstanceTypes?: ExcludedInstanceTypeSet;
|
|
19187
|
+
/**
|
|
19188
|
+
* Indicates whether current or previous generation instance types are included. The current generation instance types are recommended for use. Current generation instance types are typically the latest two to three generations in each instance family. For more information, see Instance types in the Amazon EC2 User Guide. For current generation instance types, specify current. For previous generation instance types, specify previous. Default: Current and previous generation instance types
|
|
19189
|
+
*/
|
|
19190
|
+
InstanceGenerations?: InstanceGenerationSet;
|
|
19191
|
+
/**
|
|
19192
|
+
* The price protection threshold for Spot Instances. This is the maximum you’ll pay for a Spot Instance, expressed as a percentage above the cheapest M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. To turn off price protection, specify a high value, such as 999999. This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements. Default: 100
|
|
19193
|
+
*/
|
|
19194
|
+
SpotMaxPricePercentageOverLowestPrice?: Integer;
|
|
19195
|
+
/**
|
|
19196
|
+
* The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance, expressed as a percentage above the cheapest M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. To turn off price protection, specify a high value, such as 999999. This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements. Default: 20
|
|
19197
|
+
*/
|
|
19198
|
+
OnDemandMaxPricePercentageOverLowestPrice?: Integer;
|
|
19199
|
+
/**
|
|
19200
|
+
* Indicates whether bare metal instance types must be included, excluded, or required. To include bare metal instance types, specify included. To require only bare metal instance types, specify required. To exclude bare metal instance types, specify excluded. Default: excluded
|
|
19201
|
+
*/
|
|
19202
|
+
BareMetal?: BareMetal;
|
|
19203
|
+
/**
|
|
19204
|
+
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see Burstable performance instances. To include burstable performance instance types, specify included. To require only burstable performance instance types, specify required. To exclude burstable performance instance types, specify excluded. Default: excluded
|
|
19205
|
+
*/
|
|
19206
|
+
BurstablePerformance?: BurstablePerformance;
|
|
19207
|
+
/**
|
|
19208
|
+
* Indicates whether instance types must support hibernation for On-Demand Instances. This parameter is not supported for GetSpotPlacementScores. Default: false
|
|
19209
|
+
*/
|
|
19210
|
+
RequireHibernateSupport?: Boolean;
|
|
19211
|
+
/**
|
|
19212
|
+
* The minimum and maximum number of network interfaces. Default: No minimum or maximum limits
|
|
19213
|
+
*/
|
|
19214
|
+
NetworkInterfaceCount?: NetworkInterfaceCount;
|
|
19215
|
+
/**
|
|
19216
|
+
* Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, Amazon EC2 instance store in the Amazon EC2 User Guide. To include instance types with instance store volumes, specify included. To require only instance types with instance store volumes, specify required. To exclude instance types with instance store volumes, specify excluded. Default: included
|
|
19217
|
+
*/
|
|
19218
|
+
LocalStorage?: LocalStorage;
|
|
19219
|
+
/**
|
|
19220
|
+
* The type of local storage that is required. For instance types with hard disk drive (HDD) storage, specify hdd. For instance types with solid state drive (SDD) storage, specify sdd. Default: hdd and sdd
|
|
19221
|
+
*/
|
|
19222
|
+
LocalStorageTypes?: LocalStorageTypeSet;
|
|
19223
|
+
/**
|
|
19224
|
+
* The minimum and maximum amount of total local storage, in GB. Default: No minimum or maximum limits
|
|
19225
|
+
*/
|
|
19226
|
+
TotalLocalStorageGB?: TotalLocalStorageGB;
|
|
19227
|
+
/**
|
|
19228
|
+
* The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide. Default: No minimum or maximum limits
|
|
19229
|
+
*/
|
|
19230
|
+
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbps;
|
|
19231
|
+
/**
|
|
19232
|
+
* The accelerator types that must be on the instance type. For instance types with GPU accelerators, specify gpu. For instance types with FPGA accelerators, specify fpga. For instance types with inference accelerators, specify inference. Default: Any accelerator type
|
|
19233
|
+
*/
|
|
19234
|
+
AcceleratorTypes?: AcceleratorTypeSet;
|
|
19235
|
+
/**
|
|
19236
|
+
* The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance. To exclude accelerator-enabled instance types, set Max to 0. Default: No minimum or maximum limits
|
|
19237
|
+
*/
|
|
19238
|
+
AcceleratorCount?: AcceleratorCount;
|
|
19239
|
+
/**
|
|
19240
|
+
* Indicates whether instance types must have accelerators by specific manufacturers. For instance types with NVIDIA devices, specify nvidia. For instance types with AMD devices, specify amd. For instance types with Amazon Web Services devices, specify amazon-web-services. For instance types with Xilinx devices, specify xilinx. Default: Any manufacturer
|
|
19241
|
+
*/
|
|
19242
|
+
AcceleratorManufacturers?: AcceleratorManufacturerSet;
|
|
19243
|
+
/**
|
|
19244
|
+
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA V100 GPUs, specify v100. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with Xilinx VU9P FPGAs, specify vu9p. Default: Any accelerator
|
|
19245
|
+
*/
|
|
19246
|
+
AcceleratorNames?: AcceleratorNameSet;
|
|
19247
|
+
/**
|
|
19248
|
+
* The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
19249
|
+
*/
|
|
19250
|
+
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiB;
|
|
19251
|
+
}
|
|
19252
|
+
export interface InstanceRequirementsRequest {
|
|
19253
|
+
/**
|
|
19254
|
+
* The minimum and maximum number of vCPUs.
|
|
19255
|
+
*/
|
|
19256
|
+
VCpuCount: VCpuCountRangeRequest;
|
|
19257
|
+
/**
|
|
19258
|
+
* The minimum and maximum amount of memory, in MiB.
|
|
19259
|
+
*/
|
|
19260
|
+
MemoryMiB: MemoryMiBRequest;
|
|
19261
|
+
/**
|
|
19262
|
+
* The CPU manufacturers to include. For instance types with Intel CPUs, specify intel. For instance types with AMD CPUs, specify amd. For instance types with Amazon Web Services CPUs, specify amazon-web-services. Don't confuse the CPU manufacturer with the CPU architecture. Instances will be launched with a compatible CPU architecture based on the Amazon Machine Image (AMI) that you specify in your launch template. Default: Any manufacturer
|
|
19263
|
+
*/
|
|
19264
|
+
CpuManufacturers?: CpuManufacturerSet;
|
|
19265
|
+
/**
|
|
19266
|
+
* The minimum and maximum amount of memory per vCPU, in GiB. Default: No minimum or maximum limits
|
|
19267
|
+
*/
|
|
19268
|
+
MemoryGiBPerVCpu?: MemoryGiBPerVCpuRequest;
|
|
19269
|
+
/**
|
|
19270
|
+
* 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 (all C5a and C5n instance types). If you specify c5a.*, Amazon EC2 excludes all the C5a instance types, but does not exclude the C5n instance types. Default: No excluded instance types
|
|
19271
|
+
*/
|
|
19272
|
+
ExcludedInstanceTypes?: ExcludedInstanceTypeSet;
|
|
19273
|
+
/**
|
|
19274
|
+
* Indicates whether current or previous generation instance types are included. The current generation instance types are recommended for use. Current generation instance types are typically the latest two to three generations in each instance family. For more information, see Instance types in the Amazon EC2 User Guide. For current generation instance types, specify current. For previous generation instance types, specify previous. Default: Current and previous generation instance types
|
|
19275
|
+
*/
|
|
19276
|
+
InstanceGenerations?: InstanceGenerationSet;
|
|
19277
|
+
/**
|
|
19278
|
+
* The price protection threshold for Spot Instance. This is the maximum you’ll pay for an Spot Instance, expressed as a percentage above the cheapest M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. To turn off price protection, specify a high value, such as 999999. This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements. Default: 100
|
|
19279
|
+
*/
|
|
19280
|
+
SpotMaxPricePercentageOverLowestPrice?: Integer;
|
|
19281
|
+
/**
|
|
19282
|
+
* The price protection threshold for On-Demand Instances. This is the maximum you’ll pay for an On-Demand Instance, expressed as a percentage above the cheapest M, C, or R instance type with your specified attributes. When Amazon EC2 selects instance types with your attributes, it excludes instance types priced above your threshold. The parameter accepts an integer, which Amazon EC2 interprets as a percentage. To turn off price protection, specify a high value, such as 999999. This parameter is not supported for GetSpotPlacementScores and GetInstanceTypesFromInstanceRequirements. Default: 20
|
|
19283
|
+
*/
|
|
19284
|
+
OnDemandMaxPricePercentageOverLowestPrice?: Integer;
|
|
19285
|
+
/**
|
|
19286
|
+
* Indicates whether bare metal instance types must be included, excluded, or required. To include bare metal instance types, specify included. To require only bare metal instance types, specify required. To exclude bare metal instance types, specify excluded. Default: excluded
|
|
19287
|
+
*/
|
|
19288
|
+
BareMetal?: BareMetal;
|
|
19289
|
+
/**
|
|
19290
|
+
* Indicates whether burstable performance T instance types are included, excluded, or required. For more information, see Burstable performance instances. To include burstable performance instance types, specify included. To require only burstable performance instance types, specify required. To exclude burstable performance instance types, specify excluded. Default: excluded
|
|
19291
|
+
*/
|
|
19292
|
+
BurstablePerformance?: BurstablePerformance;
|
|
19293
|
+
/**
|
|
19294
|
+
* Indicates whether instance types must support hibernation for On-Demand Instances. This parameter is not supported for GetSpotPlacementScores. Default: false
|
|
19295
|
+
*/
|
|
19296
|
+
RequireHibernateSupport?: Boolean;
|
|
19297
|
+
/**
|
|
19298
|
+
* The minimum and maximum number of network interfaces. Default: No minimum or maximum limits
|
|
19299
|
+
*/
|
|
19300
|
+
NetworkInterfaceCount?: NetworkInterfaceCountRequest;
|
|
19301
|
+
/**
|
|
19302
|
+
* Indicates whether instance types with instance store volumes are included, excluded, or required. For more information, Amazon EC2 instance store in the Amazon EC2 User Guide. To include instance types with instance store volumes, specify included. To require only instance types with instance store volumes, specify required. To exclude instance types with instance store volumes, specify excluded. Default: included
|
|
19303
|
+
*/
|
|
19304
|
+
LocalStorage?: LocalStorage;
|
|
19305
|
+
/**
|
|
19306
|
+
* The type of local storage that is required. For instance types with hard disk drive (HDD) storage, specify hdd. For instance types with solid state drive (SDD) storage, specify sdd. Default: hdd and sdd
|
|
19307
|
+
*/
|
|
19308
|
+
LocalStorageTypes?: LocalStorageTypeSet;
|
|
19309
|
+
/**
|
|
19310
|
+
* The minimum and maximum amount of total local storage, in GB. Default: No minimum or maximum limits
|
|
19311
|
+
*/
|
|
19312
|
+
TotalLocalStorageGB?: TotalLocalStorageGBRequest;
|
|
19313
|
+
/**
|
|
19314
|
+
* The minimum and maximum baseline bandwidth to Amazon EBS, in Mbps. For more information, see Amazon EBS–optimized instances in the Amazon EC2 User Guide. Default: No minimum or maximum limits
|
|
19315
|
+
*/
|
|
19316
|
+
BaselineEbsBandwidthMbps?: BaselineEbsBandwidthMbpsRequest;
|
|
19317
|
+
/**
|
|
19318
|
+
* The accelerator types that must be on the instance type. To include instance types with GPU hardware, specify gpu. To include instance types with FPGA hardware, specify fpga. To include instance types with inference hardware, specify inference. Default: Any accelerator type
|
|
19319
|
+
*/
|
|
19320
|
+
AcceleratorTypes?: AcceleratorTypeSet;
|
|
19321
|
+
/**
|
|
19322
|
+
* The minimum and maximum number of accelerators (GPUs, FPGAs, or Amazon Web Services Inferentia chips) on an instance. To exclude accelerator-enabled instance types, set Max to 0. Default: No minimum or maximum limits
|
|
19323
|
+
*/
|
|
19324
|
+
AcceleratorCount?: AcceleratorCountRequest;
|
|
19325
|
+
/**
|
|
19326
|
+
* Indicates whether instance types must have accelerators by specific manufacturers. For instance types with NVIDIA devices, specify nvidia. For instance types with AMD devices, specify amd. For instance types with Amazon Web Services devices, specify amazon-web-services. For instance types with Xilinx devices, specify xilinx. Default: Any manufacturer
|
|
19327
|
+
*/
|
|
19328
|
+
AcceleratorManufacturers?: AcceleratorManufacturerSet;
|
|
19329
|
+
/**
|
|
19330
|
+
* The accelerators that must be on the instance type. For instance types with NVIDIA A100 GPUs, specify a100. For instance types with NVIDIA V100 GPUs, specify v100. For instance types with NVIDIA K80 GPUs, specify k80. For instance types with NVIDIA T4 GPUs, specify t4. For instance types with NVIDIA M60 GPUs, specify m60. For instance types with AMD Radeon Pro V520 GPUs, specify radeon-pro-v520. For instance types with Xilinx VU9P FPGAs, specify vu9p. Default: Any accelerator
|
|
19331
|
+
*/
|
|
19332
|
+
AcceleratorNames?: AcceleratorNameSet;
|
|
19333
|
+
/**
|
|
19334
|
+
* The minimum and maximum amount of total accelerator memory, in MiB. Default: No minimum or maximum limits
|
|
19335
|
+
*/
|
|
19336
|
+
AcceleratorTotalMemoryMiB?: AcceleratorTotalMemoryMiBRequest;
|
|
19337
|
+
}
|
|
19338
|
+
export interface InstanceRequirementsWithMetadataRequest {
|
|
19339
|
+
/**
|
|
19340
|
+
* The architecture type.
|
|
19341
|
+
*/
|
|
19342
|
+
ArchitectureTypes?: ArchitectureTypeSet;
|
|
19343
|
+
/**
|
|
19344
|
+
* The virtualization type.
|
|
19345
|
+
*/
|
|
19346
|
+
VirtualizationTypes?: VirtualizationTypeSet;
|
|
19347
|
+
/**
|
|
19348
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes.
|
|
19349
|
+
*/
|
|
19350
|
+
InstanceRequirements?: InstanceRequirementsRequest;
|
|
19351
|
+
}
|
|
18983
19352
|
export interface InstanceSpecification {
|
|
18984
19353
|
/**
|
|
18985
19354
|
* The instance to specify which volumes should be snapshotted.
|
|
@@ -19230,6 +19599,13 @@ declare namespace EC2 {
|
|
|
19230
19599
|
*/
|
|
19231
19600
|
SupportedBootModes?: BootModeTypeList;
|
|
19232
19601
|
}
|
|
19602
|
+
export interface InstanceTypeInfoFromInstanceRequirements {
|
|
19603
|
+
/**
|
|
19604
|
+
* The matching instance type.
|
|
19605
|
+
*/
|
|
19606
|
+
InstanceType?: String;
|
|
19607
|
+
}
|
|
19608
|
+
export type InstanceTypeInfoFromInstanceRequirementsSet = InstanceTypeInfoFromInstanceRequirements[];
|
|
19233
19609
|
export type InstanceTypeInfoList = InstanceTypeInfo[];
|
|
19234
19610
|
export type InstanceTypeList = InstanceType[];
|
|
19235
19611
|
export interface InstanceTypeOffering {
|
|
@@ -19247,6 +19623,7 @@ declare namespace EC2 {
|
|
|
19247
19623
|
Location?: Location;
|
|
19248
19624
|
}
|
|
19249
19625
|
export type InstanceTypeOfferingsList = InstanceTypeOffering[];
|
|
19626
|
+
export type InstanceTypes = String[];
|
|
19250
19627
|
export interface InstanceUsage {
|
|
19251
19628
|
/**
|
|
19252
19629
|
* The ID of the Amazon Web Services account that is making use of the Capacity Reservation.
|
|
@@ -20117,6 +20494,10 @@ declare namespace EC2 {
|
|
|
20117
20494
|
* The priority for the launch template override. The highest priority is launched first. If OnDemandAllocationStrategy is set to prioritized, Spot Fleet uses priority to determine which launch template override to use first in fulfilling On-Demand capacity. If the Spot AllocationStrategy is set to capacityOptimizedPrioritized, Spot Fleet uses priority on a best-effort basis to determine which launch template override to use in fulfilling Spot capacity, but optimizes for capacity first. Valid values are whole numbers starting at 0. The lower the number, the higher the priority. If no number is set, the launch template override has the lowest priority. You can set the same priority for different launch template overrides.
|
|
20118
20495
|
*/
|
|
20119
20496
|
Priority?: Double;
|
|
20497
|
+
/**
|
|
20498
|
+
* The instance requirements. When you specify instance requirements, Amazon EC2 will identify instance types with the provided requirements, and then use your On-Demand and Spot allocation strategies to launch instances from these instance types, in the same way as when you specify a list of instance types. If you specify InstanceRequirements, you can't specify InstanceTypes.
|
|
20499
|
+
*/
|
|
20500
|
+
InstanceRequirements?: InstanceRequirements;
|
|
20120
20501
|
}
|
|
20121
20502
|
export type LaunchTemplateOverridesList = LaunchTemplateOverrides[];
|
|
20122
20503
|
export interface LaunchTemplatePlacement {
|
|
@@ -20605,6 +20986,9 @@ declare namespace EC2 {
|
|
|
20605
20986
|
export type LocalGatewayVirtualInterfaceId = string;
|
|
20606
20987
|
export type LocalGatewayVirtualInterfaceIdSet = LocalGatewayVirtualInterfaceId[];
|
|
20607
20988
|
export type LocalGatewayVirtualInterfaceSet = LocalGatewayVirtualInterface[];
|
|
20989
|
+
export type LocalStorage = "included"|"required"|"excluded"|string;
|
|
20990
|
+
export type LocalStorageType = "hdd"|"ssd"|string;
|
|
20991
|
+
export type LocalStorageTypeSet = LocalStorageType[];
|
|
20608
20992
|
export type Location = string;
|
|
20609
20993
|
export type LocationType = "region"|"availability-zone"|"availability-zone-id"|string;
|
|
20610
20994
|
export type LogDestinationType = "cloud-watch-logs"|"s3"|string;
|
|
@@ -20663,12 +21047,52 @@ declare namespace EC2 {
|
|
|
20663
21047
|
export type MaximumNetworkCards = number;
|
|
20664
21048
|
export type MaximumThroughputInMBps = number;
|
|
20665
21049
|
export type MembershipType = "static"|"igmp"|string;
|
|
21050
|
+
export interface MemoryGiBPerVCpu {
|
|
21051
|
+
/**
|
|
21052
|
+
* The minimum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no minimum limit.
|
|
21053
|
+
*/
|
|
21054
|
+
Min?: Double;
|
|
21055
|
+
/**
|
|
21056
|
+
* The maximum amount of memory per vCPU, in GiB. If this parameter is not specified, there is no maximum limit.
|
|
21057
|
+
*/
|
|
21058
|
+
Max?: Double;
|
|
21059
|
+
}
|
|
21060
|
+
export interface MemoryGiBPerVCpuRequest {
|
|
21061
|
+
/**
|
|
21062
|
+
* The minimum amount of memory per vCPU, in GiB. To specify no minimum limit, omit this parameter.
|
|
21063
|
+
*/
|
|
21064
|
+
Min?: Double;
|
|
21065
|
+
/**
|
|
21066
|
+
* The maximum amount of memory per vCPU, in GiB. To specify no maximum limit, omit this parameter.
|
|
21067
|
+
*/
|
|
21068
|
+
Max?: Double;
|
|
21069
|
+
}
|
|
20666
21070
|
export interface MemoryInfo {
|
|
20667
21071
|
/**
|
|
20668
21072
|
* The size of the memory, in MiB.
|
|
20669
21073
|
*/
|
|
20670
21074
|
SizeInMiB?: MemorySize;
|
|
20671
21075
|
}
|
|
21076
|
+
export interface MemoryMiB {
|
|
21077
|
+
/**
|
|
21078
|
+
* The minimum amount of memory, in MiB. If this parameter is not specified, there is no minimum limit.
|
|
21079
|
+
*/
|
|
21080
|
+
Min?: Integer;
|
|
21081
|
+
/**
|
|
21082
|
+
* The maximum amount of memory, in MiB. If this parameter is not specified, there is no maximum limit.
|
|
21083
|
+
*/
|
|
21084
|
+
Max?: Integer;
|
|
21085
|
+
}
|
|
21086
|
+
export interface MemoryMiBRequest {
|
|
21087
|
+
/**
|
|
21088
|
+
* The minimum amount of memory, in MiB. To specify no minimum limit, specify 0.
|
|
21089
|
+
*/
|
|
21090
|
+
Min: Integer;
|
|
21091
|
+
/**
|
|
21092
|
+
* The maximum amount of memory, in MiB. To specify no maximum limit, omit this parameter.
|
|
21093
|
+
*/
|
|
21094
|
+
Max?: Integer;
|
|
21095
|
+
}
|
|
20672
21096
|
export type MemorySize = number;
|
|
20673
21097
|
export type MillisecondDateTime = Date;
|
|
20674
21098
|
export interface ModifyAddressAttributeRequest {
|
|
@@ -20765,6 +21189,10 @@ declare namespace EC2 {
|
|
|
20765
21189
|
* 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.
|
|
20766
21190
|
*/
|
|
20767
21191
|
DryRun?: Boolean;
|
|
21192
|
+
/**
|
|
21193
|
+
* Reserved for future use.
|
|
21194
|
+
*/
|
|
21195
|
+
AdditionalInfo?: String;
|
|
20768
21196
|
}
|
|
20769
21197
|
export interface ModifyCapacityReservationResult {
|
|
20770
21198
|
/**
|
|
@@ -22714,6 +23142,26 @@ declare namespace EC2 {
|
|
|
22714
23142
|
}
|
|
22715
23143
|
export type NetworkInterfaceAttachmentId = string;
|
|
22716
23144
|
export type NetworkInterfaceAttribute = "description"|"groupSet"|"sourceDestCheck"|"attachment"|string;
|
|
23145
|
+
export interface NetworkInterfaceCount {
|
|
23146
|
+
/**
|
|
23147
|
+
* The minimum number of network interfaces. If this parameter is not specified, there is no minimum limit.
|
|
23148
|
+
*/
|
|
23149
|
+
Min?: Integer;
|
|
23150
|
+
/**
|
|
23151
|
+
* The maximum number of network interfaces. If this parameter is not specified, there is no maximum limit.
|
|
23152
|
+
*/
|
|
23153
|
+
Max?: Integer;
|
|
23154
|
+
}
|
|
23155
|
+
export interface NetworkInterfaceCountRequest {
|
|
23156
|
+
/**
|
|
23157
|
+
* The minimum number of network interfaces. To specify no minimum limit, omit this parameter.
|
|
23158
|
+
*/
|
|
23159
|
+
Min?: Integer;
|
|
23160
|
+
/**
|
|
23161
|
+
* The maximum number of network interfaces. To specify no maximum limit, omit this parameter.
|
|
23162
|
+
*/
|
|
23163
|
+
Max?: Integer;
|
|
23164
|
+
}
|
|
22717
23165
|
export type NetworkInterfaceCreationType = "efa"|"branch"|"trunk"|string;
|
|
22718
23166
|
export type NetworkInterfaceId = string;
|
|
22719
23167
|
export type NetworkInterfaceIdList = NetworkInterfaceId[];
|
|
@@ -23673,6 +24121,7 @@ declare namespace EC2 {
|
|
|
23673
24121
|
}
|
|
23674
24122
|
export type RegionList = Region[];
|
|
23675
24123
|
export type RegionNameStringList = String[];
|
|
24124
|
+
export type RegionNames = String[];
|
|
23676
24125
|
export interface RegisterImageRequest {
|
|
23677
24126
|
/**
|
|
23678
24127
|
* The full path to your AMI manifest in Amazon S3 storage. The specified bucket must have the aws-exec-read canned access control list (ACL) to ensure that it can be accessed by Amazon EC2. For more information, see Canned ACLs in the Amazon S3 Service Developer Guide.
|
|
@@ -24229,7 +24678,7 @@ declare namespace EC2 {
|
|
|
24229
24678
|
*/
|
|
24230
24679
|
ImageId?: ImageId;
|
|
24231
24680
|
/**
|
|
24232
|
-
* The instance type. For more information, see Instance Types in the Amazon Elastic Compute Cloud User Guide.
|
|
24681
|
+
* The instance type. For more information, see Instance Types in the Amazon Elastic Compute Cloud User Guide. If you specify InstanceTypes, you can't specify InstanceRequirements.
|
|
24233
24682
|
*/
|
|
24234
24683
|
InstanceType?: InstanceType;
|
|
24235
24684
|
/**
|
|
@@ -24312,6 +24761,10 @@ declare namespace EC2 {
|
|
|
24312
24761
|
* Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves. For more information, see What is Amazon Web Services Nitro Enclaves? in the Amazon Web Services Nitro Enclaves User Guide. You can't enable Amazon Web Services Nitro Enclaves and hibernation on the same instance.
|
|
24313
24762
|
*/
|
|
24314
24763
|
EnclaveOptions?: LaunchTemplateEnclaveOptionsRequest;
|
|
24764
|
+
/**
|
|
24765
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes. If you specify InstanceRequirements, you can't specify InstanceTypes.
|
|
24766
|
+
*/
|
|
24767
|
+
InstanceRequirements?: InstanceRequirementsRequest;
|
|
24315
24768
|
}
|
|
24316
24769
|
export interface RequestSpotFleetRequest {
|
|
24317
24770
|
/**
|
|
@@ -25052,6 +25505,10 @@ declare namespace EC2 {
|
|
|
25052
25505
|
* Indicates whether the instance is enabled for Amazon Web Services Nitro Enclaves.
|
|
25053
25506
|
*/
|
|
25054
25507
|
EnclaveOptions?: LaunchTemplateEnclaveOptions;
|
|
25508
|
+
/**
|
|
25509
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with these attributes. If you specify InstanceRequirements, you can't specify InstanceTypes.
|
|
25510
|
+
*/
|
|
25511
|
+
InstanceRequirements?: InstanceRequirements;
|
|
25055
25512
|
}
|
|
25056
25513
|
export type RestorableByStringList = String[];
|
|
25057
25514
|
export interface RestoreAddressToClassicRequest {
|
|
@@ -26699,6 +27156,10 @@ declare namespace EC2 {
|
|
|
26699
27156
|
* The tags to apply during creation.
|
|
26700
27157
|
*/
|
|
26701
27158
|
TagSpecifications?: SpotFleetTagSpecificationList;
|
|
27159
|
+
/**
|
|
27160
|
+
* The attributes for the instance types. When you specify instance attributes, Amazon EC2 will identify instance types with those attributes. If you specify InstanceRequirements, you can't specify InstanceTypes.
|
|
27161
|
+
*/
|
|
27162
|
+
InstanceRequirements?: InstanceRequirements;
|
|
26702
27163
|
}
|
|
26703
27164
|
export interface SpotFleetMonitoring {
|
|
26704
27165
|
/**
|
|
@@ -26829,6 +27290,10 @@ declare namespace EC2 {
|
|
|
26829
27290
|
* Reserved.
|
|
26830
27291
|
*/
|
|
26831
27292
|
Context?: String;
|
|
27293
|
+
/**
|
|
27294
|
+
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
27295
|
+
*/
|
|
27296
|
+
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
26832
27297
|
/**
|
|
26833
27298
|
* The key-value pair for tagging the Spot Fleet request on creation. The value for ResourceType must be spot-fleet-request, otherwise the Spot Fleet request fails. To tag instances at launch, specify the tags in the launch template (valid only if you use LaunchTemplateConfigs) or in the SpotFleetTagSpecification (valid only if you use LaunchSpecifications). For information about tagging after launch, see Tagging Your Resources.
|
|
26834
27299
|
*/
|
|
@@ -27066,6 +27531,23 @@ declare namespace EC2 {
|
|
|
27066
27531
|
*/
|
|
27067
27532
|
Tenancy?: Tenancy;
|
|
27068
27533
|
}
|
|
27534
|
+
export interface SpotPlacementScore {
|
|
27535
|
+
/**
|
|
27536
|
+
* The Region.
|
|
27537
|
+
*/
|
|
27538
|
+
Region?: String;
|
|
27539
|
+
/**
|
|
27540
|
+
* The Availability Zone.
|
|
27541
|
+
*/
|
|
27542
|
+
AvailabilityZoneId?: String;
|
|
27543
|
+
/**
|
|
27544
|
+
* The placement score, on a scale from 1 to 10. A score of 10 indicates that your Spot request is highly likely to succeed in this Region or Availability Zone. A score of 1 indicates that your Spot request is not likely to succeed.
|
|
27545
|
+
*/
|
|
27546
|
+
Score?: Integer;
|
|
27547
|
+
}
|
|
27548
|
+
export type SpotPlacementScores = SpotPlacementScore[];
|
|
27549
|
+
export type SpotPlacementScoresMaxResults = number;
|
|
27550
|
+
export type SpotPlacementScoresTargetCapacity = number;
|
|
27069
27551
|
export interface SpotPrice {
|
|
27070
27552
|
/**
|
|
27071
27553
|
* The Availability Zone.
|
|
@@ -27514,6 +27996,10 @@ declare namespace EC2 {
|
|
|
27514
27996
|
* The default TotalTargetCapacity, which is either Spot or On-Demand.
|
|
27515
27997
|
*/
|
|
27516
27998
|
DefaultTargetCapacityType?: DefaultTargetCapacityType;
|
|
27999
|
+
/**
|
|
28000
|
+
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
28001
|
+
*/
|
|
28002
|
+
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
27517
28003
|
}
|
|
27518
28004
|
export interface TargetCapacitySpecificationRequest {
|
|
27519
28005
|
/**
|
|
@@ -27532,7 +28018,12 @@ declare namespace EC2 {
|
|
|
27532
28018
|
* The default TotalTargetCapacity, which is either Spot or On-Demand.
|
|
27533
28019
|
*/
|
|
27534
28020
|
DefaultTargetCapacityType?: DefaultTargetCapacityType;
|
|
28021
|
+
/**
|
|
28022
|
+
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
28023
|
+
*/
|
|
28024
|
+
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
27535
28025
|
}
|
|
28026
|
+
export type TargetCapacityUnitType = "vcpu"|"memory-mib"|"units"|string;
|
|
27536
28027
|
export interface TargetConfiguration {
|
|
27537
28028
|
/**
|
|
27538
28029
|
* The number of instances the Convertible Reserved Instance offering can be applied to. This parameter is reserved and cannot be specified in a request
|
|
@@ -27672,6 +28163,26 @@ declare namespace EC2 {
|
|
|
27672
28163
|
}
|
|
27673
28164
|
export type ThreadsPerCore = number;
|
|
27674
28165
|
export type ThreadsPerCoreList = ThreadsPerCore[];
|
|
28166
|
+
export interface TotalLocalStorageGB {
|
|
28167
|
+
/**
|
|
28168
|
+
* The minimum amount of total local storage, in GB. If this parameter is not specified, there is no minimum limit.
|
|
28169
|
+
*/
|
|
28170
|
+
Min?: Double;
|
|
28171
|
+
/**
|
|
28172
|
+
* The maximum amount of total local storage, in GB. If this parameter is not specified, there is no maximum limit.
|
|
28173
|
+
*/
|
|
28174
|
+
Max?: Double;
|
|
28175
|
+
}
|
|
28176
|
+
export interface TotalLocalStorageGBRequest {
|
|
28177
|
+
/**
|
|
28178
|
+
* The minimum amount of total local storage, in GB. To specify no minimum limit, omit this parameter.
|
|
28179
|
+
*/
|
|
28180
|
+
Min?: Double;
|
|
28181
|
+
/**
|
|
28182
|
+
* The maximum amount of total local storage, in GB. To specify no maximum limit, omit this parameter.
|
|
28183
|
+
*/
|
|
28184
|
+
Max?: Double;
|
|
28185
|
+
}
|
|
27675
28186
|
export type TrafficDirection = "ingress"|"egress"|string;
|
|
27676
28187
|
export interface TrafficMirrorFilter {
|
|
27677
28188
|
/**
|
|
@@ -28988,6 +29499,26 @@ declare namespace EC2 {
|
|
|
28988
29499
|
export type UserIdGroupPairSet = UserIdGroupPair[];
|
|
28989
29500
|
export type UserIdStringList = String[];
|
|
28990
29501
|
export type VCpuCount = number;
|
|
29502
|
+
export interface VCpuCountRange {
|
|
29503
|
+
/**
|
|
29504
|
+
* The minimum number of vCPUs. If the value is 0, there is no minimum limit.
|
|
29505
|
+
*/
|
|
29506
|
+
Min?: Integer;
|
|
29507
|
+
/**
|
|
29508
|
+
* The maximum number of vCPUs. If this parameter is not specified, there is no maximum limit.
|
|
29509
|
+
*/
|
|
29510
|
+
Max?: Integer;
|
|
29511
|
+
}
|
|
29512
|
+
export interface VCpuCountRangeRequest {
|
|
29513
|
+
/**
|
|
29514
|
+
* The minimum number of vCPUs. To specify no minimum limit, specify 0.
|
|
29515
|
+
*/
|
|
29516
|
+
Min: Integer;
|
|
29517
|
+
/**
|
|
29518
|
+
* The maximum number of vCPUs. To specify no maximum limit, omit this parameter.
|
|
29519
|
+
*/
|
|
29520
|
+
Max?: Integer;
|
|
29521
|
+
}
|
|
28991
29522
|
export interface VCpuInfo {
|
|
28992
29523
|
/**
|
|
28993
29524
|
* The default number of vCPUs for the instance type.
|
|
@@ -29058,6 +29589,7 @@ declare namespace EC2 {
|
|
|
29058
29589
|
export type VgwTelemetryList = VgwTelemetry[];
|
|
29059
29590
|
export type VirtualizationType = "hvm"|"paravirtual"|string;
|
|
29060
29591
|
export type VirtualizationTypeList = VirtualizationType[];
|
|
29592
|
+
export type VirtualizationTypeSet = VirtualizationType[];
|
|
29061
29593
|
export interface Volume {
|
|
29062
29594
|
/**
|
|
29063
29595
|
* Information about the volume attachments.
|
|
@@ -29700,6 +30232,18 @@ declare namespace EC2 {
|
|
|
29700
30232
|
* The ID of the transit gateway associated with the VPN connection.
|
|
29701
30233
|
*/
|
|
29702
30234
|
TransitGatewayId?: String;
|
|
30235
|
+
/**
|
|
30236
|
+
* The ARN of the core network.
|
|
30237
|
+
*/
|
|
30238
|
+
CoreNetworkArn?: String;
|
|
30239
|
+
/**
|
|
30240
|
+
* The ARN of the core network attachment.
|
|
30241
|
+
*/
|
|
30242
|
+
CoreNetworkAttachmentArn?: String;
|
|
30243
|
+
/**
|
|
30244
|
+
* The current state of the gateway association.
|
|
30245
|
+
*/
|
|
30246
|
+
GatewayAssociationState?: String;
|
|
29703
30247
|
/**
|
|
29704
30248
|
* The VPN connection options.
|
|
29705
30249
|
*/
|