@aws-sdk/client-ec2 3.301.0 → 3.303.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/README.md +16 -0
- package/dist-cjs/EC2.js +30 -0
- package/dist-cjs/commands/GetVpnTunnelReplacementStatusCommand.js +45 -0
- package/dist-cjs/commands/ReplaceVpnTunnelCommand.js +45 -0
- package/dist-cjs/commands/index.js +2 -0
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-cjs/models/models_0.js +1126 -1192
- package/dist-cjs/models/models_1.js +397 -469
- package/dist-cjs/models/models_2.js +280 -336
- package/dist-cjs/models/models_3.js +241 -286
- package/dist-cjs/models/models_4.js +197 -235
- package/dist-cjs/models/models_5.js +77 -91
- package/dist-cjs/models/models_6.js +65 -79
- package/dist-cjs/protocols/Aws_ec2.js +180 -15
- package/dist-es/EC2.js +30 -0
- package/dist-es/commands/GetVpnTunnelReplacementStatusCommand.js +41 -0
- package/dist-es/commands/ReplaceVpnTunnelCommand.js +41 -0
- package/dist-es/commands/index.js +2 -0
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-es/models/models_0.js +1126 -1192
- package/dist-es/models/models_1.js +397 -469
- package/dist-es/models/models_2.js +280 -336
- package/dist-es/models/models_3.js +241 -286
- package/dist-es/models/models_4.js +197 -235
- package/dist-es/models/models_5.js +77 -91
- package/dist-es/models/models_6.js +65 -79
- package/dist-es/protocols/Aws_ec2.js +161 -0
- package/dist-types/EC2.d.ts +16 -0
- package/dist-types/EC2Client.d.ts +4 -2
- package/dist-types/commands/CreateVpnConnectionCommand.d.ts +1 -0
- package/dist-types/commands/GetVpnTunnelReplacementStatusCommand.d.ts +65 -0
- package/dist-types/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/commands/ModifyVpnTunnelOptionsCommand.d.ts +2 -0
- package/dist-types/commands/ReplaceVpnTunnelCommand.d.ts +66 -0
- package/dist-types/commands/StartInstancesCommand.d.ts +2 -1
- package/dist-types/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/dist-types/commands/StartNetworkInsightsAnalysisCommand.d.ts +1 -2
- package/dist-types/commands/index.d.ts +2 -0
- package/dist-types/models/models_0.d.ts +1464 -1134
- package/dist-types/models/models_1.d.ts +757 -397
- package/dist-types/models/models_2.d.ts +568 -280
- package/dist-types/models/models_3.d.ts +466 -241
- package/dist-types/models/models_4.d.ts +387 -197
- package/dist-types/models/models_5.d.ts +212 -191
- package/dist-types/models/models_6.d.ts +290 -159
- package/dist-types/models/models_7.d.ts +95 -3
- package/dist-types/protocols/Aws_ec2.d.ts +6 -0
- package/dist-types/ts3.4/EC2.d.ts +34 -0
- package/dist-types/ts3.4/EC2Client.d.ts +12 -0
- package/dist-types/ts3.4/commands/GetVpnTunnelReplacementStatusCommand.d.ts +41 -0
- package/dist-types/ts3.4/commands/ImportSnapshotCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/ReplaceVpnTunnelCommand.d.ts +37 -0
- package/dist-types/ts3.4/commands/StartInstancesCommand.d.ts +2 -4
- package/dist-types/ts3.4/commands/StartNetworkInsightsAccessScopeAnalysisCommand.d.ts +1 -1
- package/dist-types/ts3.4/commands/StartNetworkInsightsAnalysisCommand.d.ts +4 -2
- package/dist-types/ts3.4/commands/index.d.ts +2 -0
- package/dist-types/ts3.4/models/models_0.d.ts +1244 -1126
- package/dist-types/ts3.4/models/models_1.d.ts +523 -397
- package/dist-types/ts3.4/models/models_2.d.ts +381 -280
- package/dist-types/ts3.4/models/models_3.d.ts +324 -241
- package/dist-types/ts3.4/models/models_4.d.ts +261 -197
- package/dist-types/ts3.4/models/models_5.d.ts +123 -101
- package/dist-types/ts3.4/models/models_6.d.ts +126 -91
- package/dist-types/ts3.4/models/models_7.d.ts +37 -3
- package/dist-types/ts3.4/protocols/Aws_ec2.d.ts +24 -0
- package/package.json +36 -36
|
@@ -6,23 +6,27 @@ export interface AcceleratorCountRequest {
|
|
|
6
6
|
Min?: number;
|
|
7
7
|
Max?: number;
|
|
8
8
|
}
|
|
9
|
-
export declare
|
|
10
|
-
AMAZON_WEB_SERVICES
|
|
11
|
-
AMD
|
|
12
|
-
NVIDIA
|
|
13
|
-
XILINX
|
|
14
|
-
}
|
|
15
|
-
export
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
9
|
+
export declare const AcceleratorManufacturer: {
|
|
10
|
+
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
11
|
+
readonly AMD: "amd";
|
|
12
|
+
readonly NVIDIA: "nvidia";
|
|
13
|
+
readonly XILINX: "xilinx";
|
|
14
|
+
};
|
|
15
|
+
export type AcceleratorManufacturer =
|
|
16
|
+
(typeof AcceleratorManufacturer)[keyof typeof AcceleratorManufacturer];
|
|
17
|
+
export declare const AcceleratorName: {
|
|
18
|
+
readonly A100: "a100";
|
|
19
|
+
readonly INFERENTIA: "inferentia";
|
|
20
|
+
readonly K520: "k520";
|
|
21
|
+
readonly K80: "k80";
|
|
22
|
+
readonly M60: "m60";
|
|
23
|
+
readonly RADEON_PRO_V520: "radeon-pro-v520";
|
|
24
|
+
readonly T4: "t4";
|
|
25
|
+
readonly V100: "v100";
|
|
26
|
+
readonly VU9P: "vu9p";
|
|
27
|
+
};
|
|
28
|
+
export type AcceleratorName =
|
|
29
|
+
(typeof AcceleratorName)[keyof typeof AcceleratorName];
|
|
26
30
|
export interface AcceleratorTotalMemoryMiB {
|
|
27
31
|
Min?: number;
|
|
28
32
|
Max?: number;
|
|
@@ -31,98 +35,101 @@ export interface AcceleratorTotalMemoryMiBRequest {
|
|
|
31
35
|
Min?: number;
|
|
32
36
|
Max?: number;
|
|
33
37
|
}
|
|
34
|
-
export declare
|
|
35
|
-
FPGA
|
|
36
|
-
GPU
|
|
37
|
-
INFERENCE
|
|
38
|
-
}
|
|
39
|
-
export
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
38
|
+
export declare const AcceleratorType: {
|
|
39
|
+
readonly FPGA: "fpga";
|
|
40
|
+
readonly GPU: "gpu";
|
|
41
|
+
readonly INFERENCE: "inference";
|
|
42
|
+
};
|
|
43
|
+
export type AcceleratorType =
|
|
44
|
+
(typeof AcceleratorType)[keyof typeof AcceleratorType];
|
|
45
|
+
export declare const ResourceType: {
|
|
46
|
+
readonly capacity_reservation: "capacity-reservation";
|
|
47
|
+
readonly capacity_reservation_fleet: "capacity-reservation-fleet";
|
|
48
|
+
readonly carrier_gateway: "carrier-gateway";
|
|
49
|
+
readonly client_vpn_endpoint: "client-vpn-endpoint";
|
|
50
|
+
readonly coip_pool: "coip-pool";
|
|
51
|
+
readonly customer_gateway: "customer-gateway";
|
|
52
|
+
readonly dedicated_host: "dedicated-host";
|
|
53
|
+
readonly dhcp_options: "dhcp-options";
|
|
54
|
+
readonly egress_only_internet_gateway: "egress-only-internet-gateway";
|
|
55
|
+
readonly elastic_gpu: "elastic-gpu";
|
|
56
|
+
readonly elastic_ip: "elastic-ip";
|
|
57
|
+
readonly export_image_task: "export-image-task";
|
|
58
|
+
readonly export_instance_task: "export-instance-task";
|
|
59
|
+
readonly fleet: "fleet";
|
|
60
|
+
readonly fpga_image: "fpga-image";
|
|
61
|
+
readonly host_reservation: "host-reservation";
|
|
62
|
+
readonly image: "image";
|
|
63
|
+
readonly import_image_task: "import-image-task";
|
|
64
|
+
readonly import_snapshot_task: "import-snapshot-task";
|
|
65
|
+
readonly instance: "instance";
|
|
66
|
+
readonly instance_event_window: "instance-event-window";
|
|
67
|
+
readonly internet_gateway: "internet-gateway";
|
|
68
|
+
readonly ipam: "ipam";
|
|
69
|
+
readonly ipam_pool: "ipam-pool";
|
|
70
|
+
readonly ipam_resource_discovery: "ipam-resource-discovery";
|
|
71
|
+
readonly ipam_resource_discovery_association: "ipam-resource-discovery-association";
|
|
72
|
+
readonly ipam_scope: "ipam-scope";
|
|
73
|
+
readonly ipv4pool_ec2: "ipv4pool-ec2";
|
|
74
|
+
readonly ipv6pool_ec2: "ipv6pool-ec2";
|
|
75
|
+
readonly key_pair: "key-pair";
|
|
76
|
+
readonly launch_template: "launch-template";
|
|
77
|
+
readonly local_gateway: "local-gateway";
|
|
78
|
+
readonly local_gateway_route_table: "local-gateway-route-table";
|
|
79
|
+
readonly local_gateway_route_table_virtual_interface_group_association: "local-gateway-route-table-virtual-interface-group-association";
|
|
80
|
+
readonly local_gateway_route_table_vpc_association: "local-gateway-route-table-vpc-association";
|
|
81
|
+
readonly local_gateway_virtual_interface: "local-gateway-virtual-interface";
|
|
82
|
+
readonly local_gateway_virtual_interface_group: "local-gateway-virtual-interface-group";
|
|
83
|
+
readonly natgateway: "natgateway";
|
|
84
|
+
readonly network_acl: "network-acl";
|
|
85
|
+
readonly network_insights_access_scope: "network-insights-access-scope";
|
|
86
|
+
readonly network_insights_access_scope_analysis: "network-insights-access-scope-analysis";
|
|
87
|
+
readonly network_insights_analysis: "network-insights-analysis";
|
|
88
|
+
readonly network_insights_path: "network-insights-path";
|
|
89
|
+
readonly network_interface: "network-interface";
|
|
90
|
+
readonly placement_group: "placement-group";
|
|
91
|
+
readonly prefix_list: "prefix-list";
|
|
92
|
+
readonly replace_root_volume_task: "replace-root-volume-task";
|
|
93
|
+
readonly reserved_instances: "reserved-instances";
|
|
94
|
+
readonly route_table: "route-table";
|
|
95
|
+
readonly security_group: "security-group";
|
|
96
|
+
readonly security_group_rule: "security-group-rule";
|
|
97
|
+
readonly snapshot: "snapshot";
|
|
98
|
+
readonly spot_fleet_request: "spot-fleet-request";
|
|
99
|
+
readonly spot_instances_request: "spot-instances-request";
|
|
100
|
+
readonly subnet: "subnet";
|
|
101
|
+
readonly subnet_cidr_reservation: "subnet-cidr-reservation";
|
|
102
|
+
readonly traffic_mirror_filter: "traffic-mirror-filter";
|
|
103
|
+
readonly traffic_mirror_filter_rule: "traffic-mirror-filter-rule";
|
|
104
|
+
readonly traffic_mirror_session: "traffic-mirror-session";
|
|
105
|
+
readonly traffic_mirror_target: "traffic-mirror-target";
|
|
106
|
+
readonly transit_gateway: "transit-gateway";
|
|
107
|
+
readonly transit_gateway_attachment: "transit-gateway-attachment";
|
|
108
|
+
readonly transit_gateway_connect_peer: "transit-gateway-connect-peer";
|
|
109
|
+
readonly transit_gateway_multicast_domain: "transit-gateway-multicast-domain";
|
|
110
|
+
readonly transit_gateway_policy_table: "transit-gateway-policy-table";
|
|
111
|
+
readonly transit_gateway_route_table: "transit-gateway-route-table";
|
|
112
|
+
readonly transit_gateway_route_table_announcement: "transit-gateway-route-table-announcement";
|
|
113
|
+
readonly verified_access_endpoint: "verified-access-endpoint";
|
|
114
|
+
readonly verified_access_group: "verified-access-group";
|
|
115
|
+
readonly verified_access_instance: "verified-access-instance";
|
|
116
|
+
readonly verified_access_policy: "verified-access-policy";
|
|
117
|
+
readonly verified_access_trust_provider: "verified-access-trust-provider";
|
|
118
|
+
readonly volume: "volume";
|
|
119
|
+
readonly vpc: "vpc";
|
|
120
|
+
readonly vpc_block_public_access_exclusion: "vpc-block-public-access-exclusion";
|
|
121
|
+
readonly vpc_endpoint: "vpc-endpoint";
|
|
122
|
+
readonly vpc_endpoint_connection: "vpc-endpoint-connection";
|
|
123
|
+
readonly vpc_endpoint_connection_device_type: "vpc-endpoint-connection-device-type";
|
|
124
|
+
readonly vpc_endpoint_service: "vpc-endpoint-service";
|
|
125
|
+
readonly vpc_endpoint_service_permission: "vpc-endpoint-service-permission";
|
|
126
|
+
readonly vpc_flow_log: "vpc-flow-log";
|
|
127
|
+
readonly vpc_peering_connection: "vpc-peering-connection";
|
|
128
|
+
readonly vpn_connection: "vpn-connection";
|
|
129
|
+
readonly vpn_connection_device_type: "vpn-connection-device-type";
|
|
130
|
+
readonly vpn_gateway: "vpn-gateway";
|
|
131
|
+
};
|
|
132
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
126
133
|
export interface Tag {
|
|
127
134
|
Key?: string;
|
|
128
135
|
Value?: string;
|
|
@@ -136,11 +143,13 @@ export interface AcceptAddressTransferRequest {
|
|
|
136
143
|
TagSpecifications?: TagSpecification[];
|
|
137
144
|
DryRun?: boolean;
|
|
138
145
|
}
|
|
139
|
-
export declare
|
|
140
|
-
accepted
|
|
141
|
-
disabled
|
|
142
|
-
pending
|
|
143
|
-
}
|
|
146
|
+
export declare const AddressTransferStatus: {
|
|
147
|
+
readonly accepted: "accepted";
|
|
148
|
+
readonly disabled: "disabled";
|
|
149
|
+
readonly pending: "pending";
|
|
150
|
+
};
|
|
151
|
+
export type AddressTransferStatus =
|
|
152
|
+
(typeof AddressTransferStatus)[keyof typeof AddressTransferStatus];
|
|
144
153
|
export interface AddressTransfer {
|
|
145
154
|
PublicIp?: string;
|
|
146
155
|
AllocationId?: string;
|
|
@@ -170,23 +179,27 @@ export interface AcceptTransitGatewayMulticastDomainAssociationsRequest {
|
|
|
170
179
|
SubnetIds?: string[];
|
|
171
180
|
DryRun?: boolean;
|
|
172
181
|
}
|
|
173
|
-
export declare
|
|
174
|
-
connect
|
|
175
|
-
direct_connect_gateway
|
|
176
|
-
peering
|
|
177
|
-
tgw_peering
|
|
178
|
-
vpc
|
|
179
|
-
vpn
|
|
180
|
-
}
|
|
181
|
-
export
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
182
|
+
export declare const TransitGatewayAttachmentResourceType: {
|
|
183
|
+
readonly connect: "connect";
|
|
184
|
+
readonly direct_connect_gateway: "direct-connect-gateway";
|
|
185
|
+
readonly peering: "peering";
|
|
186
|
+
readonly tgw_peering: "tgw-peering";
|
|
187
|
+
readonly vpc: "vpc";
|
|
188
|
+
readonly vpn: "vpn";
|
|
189
|
+
};
|
|
190
|
+
export type TransitGatewayAttachmentResourceType =
|
|
191
|
+
(typeof TransitGatewayAttachmentResourceType)[keyof typeof TransitGatewayAttachmentResourceType];
|
|
192
|
+
export declare const TransitGatewayMulitcastDomainAssociationState: {
|
|
193
|
+
readonly associated: "associated";
|
|
194
|
+
readonly associating: "associating";
|
|
195
|
+
readonly disassociated: "disassociated";
|
|
196
|
+
readonly disassociating: "disassociating";
|
|
197
|
+
readonly failed: "failed";
|
|
198
|
+
readonly pendingAcceptance: "pendingAcceptance";
|
|
199
|
+
readonly rejected: "rejected";
|
|
200
|
+
};
|
|
201
|
+
export type TransitGatewayMulitcastDomainAssociationState =
|
|
202
|
+
(typeof TransitGatewayMulitcastDomainAssociationState)[keyof typeof TransitGatewayMulitcastDomainAssociationState];
|
|
190
203
|
export interface SubnetAssociation {
|
|
191
204
|
SubnetId?: string;
|
|
192
205
|
State?: TransitGatewayMulitcastDomainAssociationState | string;
|
|
@@ -212,28 +225,32 @@ export interface PeeringTgwInfo {
|
|
|
212
225
|
OwnerId?: string;
|
|
213
226
|
Region?: string;
|
|
214
227
|
}
|
|
215
|
-
export declare
|
|
216
|
-
disable
|
|
217
|
-
enable
|
|
218
|
-
}
|
|
228
|
+
export declare const DynamicRoutingValue: {
|
|
229
|
+
readonly disable: "disable";
|
|
230
|
+
readonly enable: "enable";
|
|
231
|
+
};
|
|
232
|
+
export type DynamicRoutingValue =
|
|
233
|
+
(typeof DynamicRoutingValue)[keyof typeof DynamicRoutingValue];
|
|
219
234
|
export interface TransitGatewayPeeringAttachmentOptions {
|
|
220
235
|
DynamicRouting?: DynamicRoutingValue | string;
|
|
221
236
|
}
|
|
222
|
-
export declare
|
|
223
|
-
available
|
|
224
|
-
deleted
|
|
225
|
-
deleting
|
|
226
|
-
failed
|
|
227
|
-
failing
|
|
228
|
-
initiating
|
|
229
|
-
initiatingRequest
|
|
230
|
-
modifying
|
|
231
|
-
pending
|
|
232
|
-
pendingAcceptance
|
|
233
|
-
rejected
|
|
234
|
-
rejecting
|
|
235
|
-
rollingBack
|
|
236
|
-
}
|
|
237
|
+
export declare const TransitGatewayAttachmentState: {
|
|
238
|
+
readonly available: "available";
|
|
239
|
+
readonly deleted: "deleted";
|
|
240
|
+
readonly deleting: "deleting";
|
|
241
|
+
readonly failed: "failed";
|
|
242
|
+
readonly failing: "failing";
|
|
243
|
+
readonly initiating: "initiating";
|
|
244
|
+
readonly initiatingRequest: "initiatingRequest";
|
|
245
|
+
readonly modifying: "modifying";
|
|
246
|
+
readonly pending: "pending";
|
|
247
|
+
readonly pendingAcceptance: "pendingAcceptance";
|
|
248
|
+
readonly rejected: "rejected";
|
|
249
|
+
readonly rejecting: "rejecting";
|
|
250
|
+
readonly rollingBack: "rollingBack";
|
|
251
|
+
};
|
|
252
|
+
export type TransitGatewayAttachmentState =
|
|
253
|
+
(typeof TransitGatewayAttachmentState)[keyof typeof TransitGatewayAttachmentState];
|
|
237
254
|
export interface PeeringAttachmentStatus {
|
|
238
255
|
Code?: string;
|
|
239
256
|
Message?: string;
|
|
@@ -256,18 +273,24 @@ export interface AcceptTransitGatewayVpcAttachmentRequest {
|
|
|
256
273
|
TransitGatewayAttachmentId: string | undefined;
|
|
257
274
|
DryRun?: boolean;
|
|
258
275
|
}
|
|
259
|
-
export declare
|
|
260
|
-
disable
|
|
261
|
-
enable
|
|
262
|
-
}
|
|
263
|
-
export
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
276
|
+
export declare const ApplianceModeSupportValue: {
|
|
277
|
+
readonly disable: "disable";
|
|
278
|
+
readonly enable: "enable";
|
|
279
|
+
};
|
|
280
|
+
export type ApplianceModeSupportValue =
|
|
281
|
+
(typeof ApplianceModeSupportValue)[keyof typeof ApplianceModeSupportValue];
|
|
282
|
+
export declare const DnsSupportValue: {
|
|
283
|
+
readonly disable: "disable";
|
|
284
|
+
readonly enable: "enable";
|
|
285
|
+
};
|
|
286
|
+
export type DnsSupportValue =
|
|
287
|
+
(typeof DnsSupportValue)[keyof typeof DnsSupportValue];
|
|
288
|
+
export declare const Ipv6SupportValue: {
|
|
289
|
+
readonly disable: "disable";
|
|
290
|
+
readonly enable: "enable";
|
|
291
|
+
};
|
|
292
|
+
export type Ipv6SupportValue =
|
|
293
|
+
(typeof Ipv6SupportValue)[keyof typeof Ipv6SupportValue];
|
|
271
294
|
export interface TransitGatewayVpcAttachmentOptions {
|
|
272
295
|
DnsSupport?: DnsSupportValue | string;
|
|
273
296
|
Ipv6Support?: Ipv6SupportValue | string;
|
|
@@ -327,17 +350,19 @@ export interface VpcPeeringConnectionVpcInfo {
|
|
|
327
350
|
VpcId?: string;
|
|
328
351
|
Region?: string;
|
|
329
352
|
}
|
|
330
|
-
export declare
|
|
331
|
-
active
|
|
332
|
-
deleted
|
|
333
|
-
deleting
|
|
334
|
-
expired
|
|
335
|
-
failed
|
|
336
|
-
initiating_request
|
|
337
|
-
pending_acceptance
|
|
338
|
-
provisioning
|
|
339
|
-
rejected
|
|
340
|
-
}
|
|
353
|
+
export declare const VpcPeeringConnectionStateReasonCode: {
|
|
354
|
+
readonly active: "active";
|
|
355
|
+
readonly deleted: "deleted";
|
|
356
|
+
readonly deleting: "deleting";
|
|
357
|
+
readonly expired: "expired";
|
|
358
|
+
readonly failed: "failed";
|
|
359
|
+
readonly initiating_request: "initiating-request";
|
|
360
|
+
readonly pending_acceptance: "pending-acceptance";
|
|
361
|
+
readonly provisioning: "provisioning";
|
|
362
|
+
readonly rejected: "rejected";
|
|
363
|
+
};
|
|
364
|
+
export type VpcPeeringConnectionStateReasonCode =
|
|
365
|
+
(typeof VpcPeeringConnectionStateReasonCode)[keyof typeof VpcPeeringConnectionStateReasonCode];
|
|
341
366
|
export interface VpcPeeringConnectionStateReason {
|
|
342
367
|
Code?: VpcPeeringConnectionStateReasonCode | string;
|
|
343
368
|
Message?: string;
|
|
@@ -545,10 +570,11 @@ export interface AccessScopeAnalysisFinding {
|
|
|
545
570
|
FindingId?: string;
|
|
546
571
|
FindingComponents?: PathComponent[];
|
|
547
572
|
}
|
|
548
|
-
export declare
|
|
549
|
-
tcp
|
|
550
|
-
udp
|
|
551
|
-
}
|
|
573
|
+
export declare const Protocol: {
|
|
574
|
+
readonly tcp: "tcp";
|
|
575
|
+
readonly udp: "udp";
|
|
576
|
+
};
|
|
577
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
552
578
|
export interface PacketHeaderStatement {
|
|
553
579
|
SourceAddresses?: string[];
|
|
554
580
|
DestinationAddresses?: string[];
|
|
@@ -606,34 +632,41 @@ export interface AccountAttribute {
|
|
|
606
632
|
AttributeName?: string;
|
|
607
633
|
AttributeValues?: AccountAttributeValue[];
|
|
608
634
|
}
|
|
609
|
-
export declare
|
|
610
|
-
default_vpc
|
|
611
|
-
supported_platforms
|
|
612
|
-
}
|
|
613
|
-
export
|
|
614
|
-
|
|
615
|
-
|
|
616
|
-
|
|
635
|
+
export declare const AccountAttributeName: {
|
|
636
|
+
readonly default_vpc: "default-vpc";
|
|
637
|
+
readonly supported_platforms: "supported-platforms";
|
|
638
|
+
};
|
|
639
|
+
export type AccountAttributeName =
|
|
640
|
+
(typeof AccountAttributeName)[keyof typeof AccountAttributeName];
|
|
641
|
+
export declare const InstanceHealthStatus: {
|
|
642
|
+
readonly HEALTHY_STATUS: "healthy";
|
|
643
|
+
readonly UNHEALTHY_STATUS: "unhealthy";
|
|
644
|
+
};
|
|
645
|
+
export type InstanceHealthStatus =
|
|
646
|
+
(typeof InstanceHealthStatus)[keyof typeof InstanceHealthStatus];
|
|
617
647
|
export interface ActiveInstance {
|
|
618
648
|
InstanceId?: string;
|
|
619
649
|
InstanceType?: string;
|
|
620
650
|
SpotInstanceRequestId?: string;
|
|
621
651
|
InstanceHealth?: InstanceHealthStatus | string;
|
|
622
652
|
}
|
|
623
|
-
export declare
|
|
624
|
-
ERROR
|
|
625
|
-
FULFILLED
|
|
626
|
-
PENDING_FULFILLMENT
|
|
627
|
-
PENDING_TERMINATION
|
|
628
|
-
}
|
|
629
|
-
export
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
653
|
+
export declare const ActivityStatus: {
|
|
654
|
+
readonly ERROR: "error";
|
|
655
|
+
readonly FULFILLED: "fulfilled";
|
|
656
|
+
readonly PENDING_FULFILLMENT: "pending_fulfillment";
|
|
657
|
+
readonly PENDING_TERMINATION: "pending_termination";
|
|
658
|
+
};
|
|
659
|
+
export type ActivityStatus =
|
|
660
|
+
(typeof ActivityStatus)[keyof typeof ActivityStatus];
|
|
661
|
+
export declare const PrincipalType: {
|
|
662
|
+
readonly Account: "Account";
|
|
663
|
+
readonly All: "All";
|
|
664
|
+
readonly OrganizationUnit: "OrganizationUnit";
|
|
665
|
+
readonly Role: "Role";
|
|
666
|
+
readonly Service: "Service";
|
|
667
|
+
readonly User: "User";
|
|
668
|
+
};
|
|
669
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
637
670
|
export interface AddedPrincipal {
|
|
638
671
|
PrincipalType?: PrincipalType | string;
|
|
639
672
|
Principal?: string;
|
|
@@ -647,10 +680,11 @@ export interface AddPrefixListEntry {
|
|
|
647
680
|
Cidr: string | undefined;
|
|
648
681
|
Description?: string;
|
|
649
682
|
}
|
|
650
|
-
export declare
|
|
651
|
-
standard
|
|
652
|
-
vpc
|
|
653
|
-
}
|
|
683
|
+
export declare const DomainType: {
|
|
684
|
+
readonly standard: "standard";
|
|
685
|
+
readonly vpc: "vpc";
|
|
686
|
+
};
|
|
687
|
+
export type DomainType = (typeof DomainType)[keyof typeof DomainType];
|
|
654
688
|
export interface Address {
|
|
655
689
|
InstanceId?: string;
|
|
656
690
|
PublicIp?: string;
|
|
@@ -678,27 +712,32 @@ export interface AddressAttribute {
|
|
|
678
712
|
PtrRecord?: string;
|
|
679
713
|
PtrRecordUpdate?: PtrUpdateStatus;
|
|
680
714
|
}
|
|
681
|
-
export declare
|
|
682
|
-
domain_name
|
|
683
|
-
}
|
|
684
|
-
export
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
715
|
+
export declare const AddressAttributeName: {
|
|
716
|
+
readonly domain_name: "domain-name";
|
|
717
|
+
};
|
|
718
|
+
export type AddressAttributeName =
|
|
719
|
+
(typeof AddressAttributeName)[keyof typeof AddressAttributeName];
|
|
720
|
+
export declare const AddressFamily: {
|
|
721
|
+
readonly ipv4: "ipv4";
|
|
722
|
+
readonly ipv6: "ipv6";
|
|
723
|
+
};
|
|
724
|
+
export type AddressFamily = (typeof AddressFamily)[keyof typeof AddressFamily];
|
|
688
725
|
export interface AdvertiseByoipCidrRequest {
|
|
689
726
|
Cidr: string | undefined;
|
|
690
727
|
DryRun?: boolean;
|
|
691
728
|
}
|
|
692
|
-
export declare
|
|
693
|
-
advertised
|
|
694
|
-
deprovisioned
|
|
695
|
-
failed_deprovision
|
|
696
|
-
failed_provision
|
|
697
|
-
pending_deprovision
|
|
698
|
-
pending_provision
|
|
699
|
-
provisioned
|
|
700
|
-
provisioned_not_publicly_advertisable
|
|
701
|
-
}
|
|
729
|
+
export declare const ByoipCidrState: {
|
|
730
|
+
readonly advertised: "advertised";
|
|
731
|
+
readonly deprovisioned: "deprovisioned";
|
|
732
|
+
readonly failed_deprovision: "failed-deprovision";
|
|
733
|
+
readonly failed_provision: "failed-provision";
|
|
734
|
+
readonly pending_deprovision: "pending-deprovision";
|
|
735
|
+
readonly pending_provision: "pending-provision";
|
|
736
|
+
readonly provisioned: "provisioned";
|
|
737
|
+
readonly provisioned_not_publicly_advertisable: "provisioned-not-publicly-advertisable";
|
|
738
|
+
};
|
|
739
|
+
export type ByoipCidrState =
|
|
740
|
+
(typeof ByoipCidrState)[keyof typeof ByoipCidrState];
|
|
702
741
|
export interface ByoipCidr {
|
|
703
742
|
Cidr?: string;
|
|
704
743
|
Description?: string;
|
|
@@ -708,10 +747,11 @@ export interface ByoipCidr {
|
|
|
708
747
|
export interface AdvertiseByoipCidrResult {
|
|
709
748
|
ByoipCidr?: ByoipCidr;
|
|
710
749
|
}
|
|
711
|
-
export declare
|
|
712
|
-
default
|
|
713
|
-
host
|
|
714
|
-
}
|
|
750
|
+
export declare const Affinity: {
|
|
751
|
+
readonly default: "default";
|
|
752
|
+
readonly host: "host";
|
|
753
|
+
};
|
|
754
|
+
export type Affinity = (typeof Affinity)[keyof typeof Affinity];
|
|
715
755
|
export interface AllocateAddressRequest {
|
|
716
756
|
Domain?: DomainType | string;
|
|
717
757
|
Address?: string;
|
|
@@ -731,18 +771,22 @@ export interface AllocateAddressResult {
|
|
|
731
771
|
CustomerOwnedIpv4Pool?: string;
|
|
732
772
|
CarrierIp?: string;
|
|
733
773
|
}
|
|
734
|
-
export declare
|
|
735
|
-
off
|
|
736
|
-
on
|
|
737
|
-
}
|
|
738
|
-
export
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
774
|
+
export declare const AutoPlacement: {
|
|
775
|
+
readonly off: "off";
|
|
776
|
+
readonly on: "on";
|
|
777
|
+
};
|
|
778
|
+
export type AutoPlacement = (typeof AutoPlacement)[keyof typeof AutoPlacement];
|
|
779
|
+
export declare const HostMaintenance: {
|
|
780
|
+
readonly off: "off";
|
|
781
|
+
readonly on: "on";
|
|
782
|
+
};
|
|
783
|
+
export type HostMaintenance =
|
|
784
|
+
(typeof HostMaintenance)[keyof typeof HostMaintenance];
|
|
785
|
+
export declare const HostRecovery: {
|
|
786
|
+
readonly off: "off";
|
|
787
|
+
readonly on: "on";
|
|
788
|
+
};
|
|
789
|
+
export type HostRecovery = (typeof HostRecovery)[keyof typeof HostRecovery];
|
|
746
790
|
export interface AllocateHostsRequest {
|
|
747
791
|
AutoPlacement?: AutoPlacement | string;
|
|
748
792
|
AvailabilityZone: string | undefined;
|
|
@@ -768,12 +812,14 @@ export interface AllocateIpamPoolCidrRequest {
|
|
|
768
812
|
PreviewNextCidr?: boolean;
|
|
769
813
|
DisallowedCidrs?: string[];
|
|
770
814
|
}
|
|
771
|
-
export declare
|
|
772
|
-
custom
|
|
773
|
-
ec2_public_ipv4_pool
|
|
774
|
-
ipam_pool
|
|
775
|
-
vpc
|
|
776
|
-
}
|
|
815
|
+
export declare const IpamPoolAllocationResourceType: {
|
|
816
|
+
readonly custom: "custom";
|
|
817
|
+
readonly ec2_public_ipv4_pool: "ec2-public-ipv4-pool";
|
|
818
|
+
readonly ipam_pool: "ipam-pool";
|
|
819
|
+
readonly vpc: "vpc";
|
|
820
|
+
};
|
|
821
|
+
export type IpamPoolAllocationResourceType =
|
|
822
|
+
(typeof IpamPoolAllocationResourceType)[keyof typeof IpamPoolAllocationResourceType];
|
|
777
823
|
export interface IpamPoolAllocation {
|
|
778
824
|
Cidr?: string;
|
|
779
825
|
IpamPoolAllocationId?: string;
|
|
@@ -786,24 +832,30 @@ export interface IpamPoolAllocation {
|
|
|
786
832
|
export interface AllocateIpamPoolCidrResult {
|
|
787
833
|
IpamPoolAllocation?: IpamPoolAllocation;
|
|
788
834
|
}
|
|
789
|
-
export declare
|
|
790
|
-
available
|
|
791
|
-
pending
|
|
792
|
-
permanent_failure
|
|
793
|
-
released
|
|
794
|
-
released_permanent_failure
|
|
795
|
-
under_assessment
|
|
796
|
-
}
|
|
797
|
-
export
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
|
|
835
|
+
export declare const AllocationState: {
|
|
836
|
+
readonly available: "available";
|
|
837
|
+
readonly pending: "pending";
|
|
838
|
+
readonly permanent_failure: "permanent-failure";
|
|
839
|
+
readonly released: "released";
|
|
840
|
+
readonly released_permanent_failure: "released-permanent-failure";
|
|
841
|
+
readonly under_assessment: "under-assessment";
|
|
842
|
+
};
|
|
843
|
+
export type AllocationState =
|
|
844
|
+
(typeof AllocationState)[keyof typeof AllocationState];
|
|
845
|
+
export declare const AllocationStrategy: {
|
|
846
|
+
readonly CAPACITY_OPTIMIZED: "capacityOptimized";
|
|
847
|
+
readonly CAPACITY_OPTIMIZED_PRIORITIZED: "capacityOptimizedPrioritized";
|
|
848
|
+
readonly DIVERSIFIED: "diversified";
|
|
849
|
+
readonly LOWEST_PRICE: "lowestPrice";
|
|
850
|
+
readonly PRICE_CAPACITY_OPTIMIZED: "priceCapacityOptimized";
|
|
851
|
+
};
|
|
852
|
+
export type AllocationStrategy =
|
|
853
|
+
(typeof AllocationStrategy)[keyof typeof AllocationStrategy];
|
|
854
|
+
export declare const AllocationType: {
|
|
855
|
+
readonly used: "used";
|
|
856
|
+
};
|
|
857
|
+
export type AllocationType =
|
|
858
|
+
(typeof AllocationType)[keyof typeof AllocationType];
|
|
807
859
|
export interface AllowedPrincipal {
|
|
808
860
|
PrincipalType?: PrincipalType | string;
|
|
809
861
|
Principal?: string;
|
|
@@ -811,10 +863,12 @@ export interface AllowedPrincipal {
|
|
|
811
863
|
Tags?: Tag[];
|
|
812
864
|
ServiceId?: string;
|
|
813
865
|
}
|
|
814
|
-
export declare
|
|
815
|
-
off
|
|
816
|
-
on
|
|
817
|
-
}
|
|
866
|
+
export declare const AllowsMultipleInstanceTypes: {
|
|
867
|
+
readonly off: "off";
|
|
868
|
+
readonly on: "on";
|
|
869
|
+
};
|
|
870
|
+
export type AllowsMultipleInstanceTypes =
|
|
871
|
+
(typeof AllowsMultipleInstanceTypes)[keyof typeof AllowsMultipleInstanceTypes];
|
|
818
872
|
export interface AlternatePathHint {
|
|
819
873
|
ComponentId?: string;
|
|
820
874
|
ComponentArn?: string;
|
|
@@ -865,14 +919,16 @@ export interface AssignPrivateNatGatewayAddressRequest {
|
|
|
865
919
|
PrivateIpAddressCount?: number;
|
|
866
920
|
DryRun?: boolean;
|
|
867
921
|
}
|
|
868
|
-
export declare
|
|
869
|
-
ASSIGNING
|
|
870
|
-
ASSOCIATING
|
|
871
|
-
DISASSOCIATING
|
|
872
|
-
FAILED
|
|
873
|
-
SUCCEEDED
|
|
874
|
-
UNASSIGNING
|
|
875
|
-
}
|
|
922
|
+
export declare const NatGatewayAddressStatus: {
|
|
923
|
+
readonly ASSIGNING: "assigning";
|
|
924
|
+
readonly ASSOCIATING: "associating";
|
|
925
|
+
readonly DISASSOCIATING: "disassociating";
|
|
926
|
+
readonly FAILED: "failed";
|
|
927
|
+
readonly SUCCEEDED: "succeeded";
|
|
928
|
+
readonly UNASSIGNING: "unassigning";
|
|
929
|
+
};
|
|
930
|
+
export type NatGatewayAddressStatus =
|
|
931
|
+
(typeof NatGatewayAddressStatus)[keyof typeof NatGatewayAddressStatus];
|
|
876
932
|
export interface NatGatewayAddress {
|
|
877
933
|
AllocationId?: string;
|
|
878
934
|
NetworkInterfaceId?: string;
|
|
@@ -905,13 +961,15 @@ export interface AssociateClientVpnTargetNetworkRequest {
|
|
|
905
961
|
ClientToken?: string;
|
|
906
962
|
DryRun?: boolean;
|
|
907
963
|
}
|
|
908
|
-
export declare
|
|
909
|
-
associated
|
|
910
|
-
associating
|
|
911
|
-
association_failed
|
|
912
|
-
disassociated
|
|
913
|
-
disassociating
|
|
914
|
-
}
|
|
964
|
+
export declare const AssociationStatusCode: {
|
|
965
|
+
readonly associated: "associated";
|
|
966
|
+
readonly associating: "associating";
|
|
967
|
+
readonly association_failed: "association-failed";
|
|
968
|
+
readonly disassociated: "disassociated";
|
|
969
|
+
readonly disassociating: "disassociating";
|
|
970
|
+
};
|
|
971
|
+
export type AssociationStatusCode =
|
|
972
|
+
(typeof AssociationStatusCode)[keyof typeof AssociationStatusCode];
|
|
915
973
|
export interface AssociationStatus {
|
|
916
974
|
Code?: AssociationStatusCode | string;
|
|
917
975
|
Message?: string;
|
|
@@ -947,12 +1005,14 @@ export interface IamInstanceProfile {
|
|
|
947
1005
|
Arn?: string;
|
|
948
1006
|
Id?: string;
|
|
949
1007
|
}
|
|
950
|
-
export declare
|
|
951
|
-
ASSOCIATED
|
|
952
|
-
ASSOCIATING
|
|
953
|
-
DISASSOCIATED
|
|
954
|
-
DISASSOCIATING
|
|
955
|
-
}
|
|
1008
|
+
export declare const IamInstanceProfileAssociationState: {
|
|
1009
|
+
readonly ASSOCIATED: "associated";
|
|
1010
|
+
readonly ASSOCIATING: "associating";
|
|
1011
|
+
readonly DISASSOCIATED: "disassociated";
|
|
1012
|
+
readonly DISASSOCIATING: "disassociating";
|
|
1013
|
+
};
|
|
1014
|
+
export type IamInstanceProfileAssociationState =
|
|
1015
|
+
(typeof IamInstanceProfileAssociationState)[keyof typeof IamInstanceProfileAssociationState];
|
|
956
1016
|
export interface IamInstanceProfileAssociation {
|
|
957
1017
|
AssociationId?: string;
|
|
958
1018
|
InstanceId?: string;
|
|
@@ -978,21 +1038,24 @@ export interface InstanceEventWindowAssociationTarget {
|
|
|
978
1038
|
Tags?: Tag[];
|
|
979
1039
|
DedicatedHostIds?: string[];
|
|
980
1040
|
}
|
|
981
|
-
export declare
|
|
982
|
-
active
|
|
983
|
-
creating
|
|
984
|
-
deleted
|
|
985
|
-
deleting
|
|
986
|
-
}
|
|
987
|
-
export
|
|
988
|
-
|
|
989
|
-
|
|
990
|
-
|
|
991
|
-
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
1041
|
+
export declare const InstanceEventWindowState: {
|
|
1042
|
+
readonly active: "active";
|
|
1043
|
+
readonly creating: "creating";
|
|
1044
|
+
readonly deleted: "deleted";
|
|
1045
|
+
readonly deleting: "deleting";
|
|
1046
|
+
};
|
|
1047
|
+
export type InstanceEventWindowState =
|
|
1048
|
+
(typeof InstanceEventWindowState)[keyof typeof InstanceEventWindowState];
|
|
1049
|
+
export declare const WeekDay: {
|
|
1050
|
+
readonly friday: "friday";
|
|
1051
|
+
readonly monday: "monday";
|
|
1052
|
+
readonly saturday: "saturday";
|
|
1053
|
+
readonly sunday: "sunday";
|
|
1054
|
+
readonly thursday: "thursday";
|
|
1055
|
+
readonly tuesday: "tuesday";
|
|
1056
|
+
readonly wednesday: "wednesday";
|
|
1057
|
+
};
|
|
1058
|
+
export type WeekDay = (typeof WeekDay)[keyof typeof WeekDay];
|
|
996
1059
|
export interface InstanceEventWindowTimeRange {
|
|
997
1060
|
StartWeekDay?: WeekDay | string;
|
|
998
1061
|
StartHour?: number;
|
|
@@ -1018,21 +1081,25 @@ export interface AssociateIpamResourceDiscoveryRequest {
|
|
|
1018
1081
|
TagSpecifications?: TagSpecification[];
|
|
1019
1082
|
ClientToken?: string;
|
|
1020
1083
|
}
|
|
1021
|
-
export declare
|
|
1022
|
-
ACTIVE
|
|
1023
|
-
NOT_FOUND
|
|
1024
|
-
}
|
|
1025
|
-
export
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
|
|
1030
|
-
|
|
1031
|
-
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1084
|
+
export declare const IpamAssociatedResourceDiscoveryStatus: {
|
|
1085
|
+
readonly ACTIVE: "active";
|
|
1086
|
+
readonly NOT_FOUND: "not-found";
|
|
1087
|
+
};
|
|
1088
|
+
export type IpamAssociatedResourceDiscoveryStatus =
|
|
1089
|
+
(typeof IpamAssociatedResourceDiscoveryStatus)[keyof typeof IpamAssociatedResourceDiscoveryStatus];
|
|
1090
|
+
export declare const IpamResourceDiscoveryAssociationState: {
|
|
1091
|
+
readonly ASSOCIATE_COMPLETE: "associate-complete";
|
|
1092
|
+
readonly ASSOCIATE_FAILED: "associate-failed";
|
|
1093
|
+
readonly ASSOCIATE_IN_PROGRESS: "associate-in-progress";
|
|
1094
|
+
readonly DISASSOCIATE_COMPLETE: "disassociate-complete";
|
|
1095
|
+
readonly DISASSOCIATE_FAILED: "disassociate-failed";
|
|
1096
|
+
readonly DISASSOCIATE_IN_PROGRESS: "disassociate-in-progress";
|
|
1097
|
+
readonly ISOLATE_COMPLETE: "isolate-complete";
|
|
1098
|
+
readonly ISOLATE_IN_PROGRESS: "isolate-in-progress";
|
|
1099
|
+
readonly RESTORE_IN_PROGRESS: "restore-in-progress";
|
|
1100
|
+
};
|
|
1101
|
+
export type IpamResourceDiscoveryAssociationState =
|
|
1102
|
+
(typeof IpamResourceDiscoveryAssociationState)[keyof typeof IpamResourceDiscoveryAssociationState];
|
|
1036
1103
|
export interface IpamResourceDiscoveryAssociation {
|
|
1037
1104
|
OwnerId?: string;
|
|
1038
1105
|
IpamResourceDiscoveryAssociationId?: string;
|
|
@@ -1065,13 +1132,15 @@ export interface AssociateRouteTableRequest {
|
|
|
1065
1132
|
SubnetId?: string;
|
|
1066
1133
|
GatewayId?: string;
|
|
1067
1134
|
}
|
|
1068
|
-
export declare
|
|
1069
|
-
associated
|
|
1070
|
-
associating
|
|
1071
|
-
disassociated
|
|
1072
|
-
disassociating
|
|
1073
|
-
failed
|
|
1074
|
-
}
|
|
1135
|
+
export declare const RouteTableAssociationStateCode: {
|
|
1136
|
+
readonly associated: "associated";
|
|
1137
|
+
readonly associating: "associating";
|
|
1138
|
+
readonly disassociated: "disassociated";
|
|
1139
|
+
readonly disassociating: "disassociating";
|
|
1140
|
+
readonly failed: "failed";
|
|
1141
|
+
};
|
|
1142
|
+
export type RouteTableAssociationStateCode =
|
|
1143
|
+
(typeof RouteTableAssociationStateCode)[keyof typeof RouteTableAssociationStateCode];
|
|
1075
1144
|
export interface RouteTableAssociationState {
|
|
1076
1145
|
State?: RouteTableAssociationStateCode | string;
|
|
1077
1146
|
StatusMessage?: string;
|
|
@@ -1084,14 +1153,16 @@ export interface AssociateSubnetCidrBlockRequest {
|
|
|
1084
1153
|
Ipv6CidrBlock: string | undefined;
|
|
1085
1154
|
SubnetId: string | undefined;
|
|
1086
1155
|
}
|
|
1087
|
-
export declare
|
|
1088
|
-
associated
|
|
1089
|
-
associating
|
|
1090
|
-
disassociated
|
|
1091
|
-
disassociating
|
|
1092
|
-
failed
|
|
1093
|
-
failing
|
|
1094
|
-
}
|
|
1156
|
+
export declare const SubnetCidrBlockStateCode: {
|
|
1157
|
+
readonly associated: "associated";
|
|
1158
|
+
readonly associating: "associating";
|
|
1159
|
+
readonly disassociated: "disassociated";
|
|
1160
|
+
readonly disassociating: "disassociating";
|
|
1161
|
+
readonly failed: "failed";
|
|
1162
|
+
readonly failing: "failing";
|
|
1163
|
+
};
|
|
1164
|
+
export type SubnetCidrBlockStateCode =
|
|
1165
|
+
(typeof SubnetCidrBlockStateCode)[keyof typeof SubnetCidrBlockStateCode];
|
|
1095
1166
|
export interface SubnetCidrBlockState {
|
|
1096
1167
|
State?: SubnetCidrBlockStateCode | string;
|
|
1097
1168
|
StatusMessage?: string;
|
|
@@ -1119,12 +1190,14 @@ export interface AssociateTransitGatewayPolicyTableRequest {
|
|
|
1119
1190
|
TransitGatewayAttachmentId: string | undefined;
|
|
1120
1191
|
DryRun?: boolean;
|
|
1121
1192
|
}
|
|
1122
|
-
export declare
|
|
1123
|
-
associated
|
|
1124
|
-
associating
|
|
1125
|
-
disassociated
|
|
1126
|
-
disassociating
|
|
1127
|
-
}
|
|
1193
|
+
export declare const TransitGatewayAssociationState: {
|
|
1194
|
+
readonly associated: "associated";
|
|
1195
|
+
readonly associating: "associating";
|
|
1196
|
+
readonly disassociated: "disassociated";
|
|
1197
|
+
readonly disassociating: "disassociating";
|
|
1198
|
+
};
|
|
1199
|
+
export type TransitGatewayAssociationState =
|
|
1200
|
+
(typeof TransitGatewayAssociationState)[keyof typeof TransitGatewayAssociationState];
|
|
1128
1201
|
export interface TransitGatewayPolicyTableAssociation {
|
|
1129
1202
|
TransitGatewayPolicyTableId?: string;
|
|
1130
1203
|
TransitGatewayAttachmentId?: string;
|
|
@@ -1158,10 +1231,12 @@ export interface AssociateTrunkInterfaceRequest {
|
|
|
1158
1231
|
ClientToken?: string;
|
|
1159
1232
|
DryRun?: boolean;
|
|
1160
1233
|
}
|
|
1161
|
-
export declare
|
|
1162
|
-
GRE
|
|
1163
|
-
VLAN
|
|
1164
|
-
}
|
|
1234
|
+
export declare const InterfaceProtocolType: {
|
|
1235
|
+
readonly GRE: "GRE";
|
|
1236
|
+
readonly VLAN: "VLAN";
|
|
1237
|
+
};
|
|
1238
|
+
export type InterfaceProtocolType =
|
|
1239
|
+
(typeof InterfaceProtocolType)[keyof typeof InterfaceProtocolType];
|
|
1165
1240
|
export interface TrunkInterfaceAssociation {
|
|
1166
1241
|
AssociationId?: string;
|
|
1167
1242
|
BranchInterfaceId?: string;
|
|
@@ -1187,14 +1262,16 @@ export interface AssociateVpcCidrBlockRequest {
|
|
|
1187
1262
|
Ipv6IpamPoolId?: string;
|
|
1188
1263
|
Ipv6NetmaskLength?: number;
|
|
1189
1264
|
}
|
|
1190
|
-
export declare
|
|
1191
|
-
associated
|
|
1192
|
-
associating
|
|
1193
|
-
disassociated
|
|
1194
|
-
disassociating
|
|
1195
|
-
failed
|
|
1196
|
-
failing
|
|
1197
|
-
}
|
|
1265
|
+
export declare const VpcCidrBlockStateCode: {
|
|
1266
|
+
readonly associated: "associated";
|
|
1267
|
+
readonly associating: "associating";
|
|
1268
|
+
readonly disassociated: "disassociated";
|
|
1269
|
+
readonly disassociating: "disassociating";
|
|
1270
|
+
readonly failed: "failed";
|
|
1271
|
+
readonly failing: "failing";
|
|
1272
|
+
};
|
|
1273
|
+
export type VpcCidrBlockStateCode =
|
|
1274
|
+
(typeof VpcCidrBlockStateCode)[keyof typeof VpcCidrBlockStateCode];
|
|
1198
1275
|
export interface VpcCidrBlockState {
|
|
1199
1276
|
State?: VpcCidrBlockStateCode | string;
|
|
1200
1277
|
StatusMessage?: string;
|
|
@@ -1255,18 +1332,24 @@ export interface AttachVerifiedAccessTrustProviderRequest {
|
|
|
1255
1332
|
ClientToken?: string;
|
|
1256
1333
|
DryRun?: boolean;
|
|
1257
1334
|
}
|
|
1258
|
-
export declare
|
|
1259
|
-
crowdstrike
|
|
1260
|
-
jamf
|
|
1261
|
-
}
|
|
1262
|
-
export
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1335
|
+
export declare const DeviceTrustProviderType: {
|
|
1336
|
+
readonly crowdstrike: "crowdstrike";
|
|
1337
|
+
readonly jamf: "jamf";
|
|
1338
|
+
};
|
|
1339
|
+
export type DeviceTrustProviderType =
|
|
1340
|
+
(typeof DeviceTrustProviderType)[keyof typeof DeviceTrustProviderType];
|
|
1341
|
+
export declare const TrustProviderType: {
|
|
1342
|
+
readonly device: "device";
|
|
1343
|
+
readonly user: "user";
|
|
1344
|
+
};
|
|
1345
|
+
export type TrustProviderType =
|
|
1346
|
+
(typeof TrustProviderType)[keyof typeof TrustProviderType];
|
|
1347
|
+
export declare const UserTrustProviderType: {
|
|
1348
|
+
readonly iam_identity_center: "iam-identity-center";
|
|
1349
|
+
readonly oidc: "oidc";
|
|
1350
|
+
};
|
|
1351
|
+
export type UserTrustProviderType =
|
|
1352
|
+
(typeof UserTrustProviderType)[keyof typeof UserTrustProviderType];
|
|
1270
1353
|
export interface VerifiedAccessTrustProviderCondensed {
|
|
1271
1354
|
VerifiedAccessTrustProviderId?: string;
|
|
1272
1355
|
Description?: string;
|
|
@@ -1317,13 +1400,15 @@ export interface AttachVolumeRequest {
|
|
|
1317
1400
|
VolumeId: string | undefined;
|
|
1318
1401
|
DryRun?: boolean;
|
|
1319
1402
|
}
|
|
1320
|
-
export declare
|
|
1321
|
-
attached
|
|
1322
|
-
attaching
|
|
1323
|
-
busy
|
|
1324
|
-
detached
|
|
1325
|
-
detaching
|
|
1326
|
-
}
|
|
1403
|
+
export declare const VolumeAttachmentState: {
|
|
1404
|
+
readonly attached: "attached";
|
|
1405
|
+
readonly attaching: "attaching";
|
|
1406
|
+
readonly busy: "busy";
|
|
1407
|
+
readonly detached: "detached";
|
|
1408
|
+
readonly detaching: "detaching";
|
|
1409
|
+
};
|
|
1410
|
+
export type VolumeAttachmentState =
|
|
1411
|
+
(typeof VolumeAttachmentState)[keyof typeof VolumeAttachmentState];
|
|
1327
1412
|
export interface VolumeAttachment {
|
|
1328
1413
|
AttachTime?: Date;
|
|
1329
1414
|
Device?: string;
|
|
@@ -1337,12 +1422,14 @@ export interface AttachVpnGatewayRequest {
|
|
|
1337
1422
|
VpnGatewayId: string | undefined;
|
|
1338
1423
|
DryRun?: boolean;
|
|
1339
1424
|
}
|
|
1340
|
-
export declare
|
|
1341
|
-
attached
|
|
1342
|
-
attaching
|
|
1343
|
-
detached
|
|
1344
|
-
detaching
|
|
1345
|
-
}
|
|
1425
|
+
export declare const AttachmentStatus: {
|
|
1426
|
+
readonly attached: "attached";
|
|
1427
|
+
readonly attaching: "attaching";
|
|
1428
|
+
readonly detached: "detached";
|
|
1429
|
+
readonly detaching: "detaching";
|
|
1430
|
+
};
|
|
1431
|
+
export type AttachmentStatus =
|
|
1432
|
+
(typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
1346
1433
|
export interface VpcAttachment {
|
|
1347
1434
|
State?: AttachmentStatus | string;
|
|
1348
1435
|
VpcId?: string;
|
|
@@ -1359,12 +1446,14 @@ export interface AuthorizeClientVpnIngressRequest {
|
|
|
1359
1446
|
ClientToken?: string;
|
|
1360
1447
|
DryRun?: boolean;
|
|
1361
1448
|
}
|
|
1362
|
-
export declare
|
|
1363
|
-
active
|
|
1364
|
-
authorizing
|
|
1365
|
-
failed
|
|
1366
|
-
revoking
|
|
1367
|
-
}
|
|
1449
|
+
export declare const ClientVpnAuthorizationRuleStatusCode: {
|
|
1450
|
+
readonly active: "active";
|
|
1451
|
+
readonly authorizing: "authorizing";
|
|
1452
|
+
readonly failed: "failed";
|
|
1453
|
+
readonly revoking: "revoking";
|
|
1454
|
+
};
|
|
1455
|
+
export type ClientVpnAuthorizationRuleStatusCode =
|
|
1456
|
+
(typeof ClientVpnAuthorizationRuleStatusCode)[keyof typeof ClientVpnAuthorizationRuleStatusCode];
|
|
1368
1457
|
export interface ClientVpnAuthorizationRuleStatus {
|
|
1369
1458
|
Code?: ClientVpnAuthorizationRuleStatusCode | string;
|
|
1370
1459
|
Message?: string;
|
|
@@ -1476,15 +1565,17 @@ export interface BundleTaskError {
|
|
|
1476
1565
|
Code?: string;
|
|
1477
1566
|
Message?: string;
|
|
1478
1567
|
}
|
|
1479
|
-
export declare
|
|
1480
|
-
bundling
|
|
1481
|
-
cancelling
|
|
1482
|
-
complete
|
|
1483
|
-
failed
|
|
1484
|
-
pending
|
|
1485
|
-
storing
|
|
1486
|
-
waiting_for_shutdown
|
|
1487
|
-
}
|
|
1568
|
+
export declare const BundleTaskState: {
|
|
1569
|
+
readonly bundling: "bundling";
|
|
1570
|
+
readonly cancelling: "cancelling";
|
|
1571
|
+
readonly complete: "complete";
|
|
1572
|
+
readonly failed: "failed";
|
|
1573
|
+
readonly pending: "pending";
|
|
1574
|
+
readonly storing: "storing";
|
|
1575
|
+
readonly waiting_for_shutdown: "waiting-for-shutdown";
|
|
1576
|
+
};
|
|
1577
|
+
export type BundleTaskState =
|
|
1578
|
+
(typeof BundleTaskState)[keyof typeof BundleTaskState];
|
|
1488
1579
|
export interface BundleTask {
|
|
1489
1580
|
BundleId?: string;
|
|
1490
1581
|
BundleTaskError?: BundleTaskError;
|
|
@@ -1524,17 +1615,19 @@ export interface FailedCapacityReservationFleetCancellationResult {
|
|
|
1524
1615
|
CapacityReservationFleetId?: string;
|
|
1525
1616
|
CancelCapacityReservationFleetError?: CancelCapacityReservationFleetError;
|
|
1526
1617
|
}
|
|
1527
|
-
export declare
|
|
1528
|
-
ACTIVE
|
|
1529
|
-
CANCELLED
|
|
1530
|
-
CANCELLING
|
|
1531
|
-
EXPIRED
|
|
1532
|
-
EXPIRING
|
|
1533
|
-
FAILED
|
|
1534
|
-
MODIFYING
|
|
1535
|
-
PARTIALLY_FULFILLED
|
|
1536
|
-
SUBMITTED
|
|
1537
|
-
}
|
|
1618
|
+
export declare const CapacityReservationFleetState: {
|
|
1619
|
+
readonly ACTIVE: "active";
|
|
1620
|
+
readonly CANCELLED: "cancelled";
|
|
1621
|
+
readonly CANCELLING: "cancelling";
|
|
1622
|
+
readonly EXPIRED: "expired";
|
|
1623
|
+
readonly EXPIRING: "expiring";
|
|
1624
|
+
readonly FAILED: "failed";
|
|
1625
|
+
readonly MODIFYING: "modifying";
|
|
1626
|
+
readonly PARTIALLY_FULFILLED: "partially_fulfilled";
|
|
1627
|
+
readonly SUBMITTED: "submitted";
|
|
1628
|
+
};
|
|
1629
|
+
export type CapacityReservationFleetState =
|
|
1630
|
+
(typeof CapacityReservationFleetState)[keyof typeof CapacityReservationFleetState];
|
|
1538
1631
|
export interface CapacityReservationFleetCancellationState {
|
|
1539
1632
|
CurrentFleetState?: CapacityReservationFleetState | string;
|
|
1540
1633
|
PreviousFleetState?: CapacityReservationFleetState | string;
|
|
@@ -1572,31 +1665,35 @@ export interface CancelImportTaskResult {
|
|
|
1572
1665
|
export interface CancelReservedInstancesListingRequest {
|
|
1573
1666
|
ReservedInstancesListingId: string | undefined;
|
|
1574
1667
|
}
|
|
1575
|
-
export declare
|
|
1576
|
-
available
|
|
1577
|
-
cancelled
|
|
1578
|
-
pending
|
|
1579
|
-
sold
|
|
1580
|
-
}
|
|
1668
|
+
export declare const ListingState: {
|
|
1669
|
+
readonly available: "available";
|
|
1670
|
+
readonly cancelled: "cancelled";
|
|
1671
|
+
readonly pending: "pending";
|
|
1672
|
+
readonly sold: "sold";
|
|
1673
|
+
};
|
|
1674
|
+
export type ListingState = (typeof ListingState)[keyof typeof ListingState];
|
|
1581
1675
|
export interface InstanceCount {
|
|
1582
1676
|
InstanceCount?: number;
|
|
1583
1677
|
State?: ListingState | string;
|
|
1584
1678
|
}
|
|
1585
|
-
export declare
|
|
1586
|
-
USD
|
|
1587
|
-
}
|
|
1679
|
+
export declare const CurrencyCodeValues: {
|
|
1680
|
+
readonly USD: "USD";
|
|
1681
|
+
};
|
|
1682
|
+
export type CurrencyCodeValues =
|
|
1683
|
+
(typeof CurrencyCodeValues)[keyof typeof CurrencyCodeValues];
|
|
1588
1684
|
export interface PriceSchedule {
|
|
1589
1685
|
Active?: boolean;
|
|
1590
1686
|
CurrencyCode?: CurrencyCodeValues | string;
|
|
1591
1687
|
Price?: number;
|
|
1592
1688
|
Term?: number;
|
|
1593
1689
|
}
|
|
1594
|
-
export declare
|
|
1595
|
-
active
|
|
1596
|
-
cancelled
|
|
1597
|
-
closed
|
|
1598
|
-
pending
|
|
1599
|
-
}
|
|
1690
|
+
export declare const ListingStatus: {
|
|
1691
|
+
readonly active: "active";
|
|
1692
|
+
readonly cancelled: "cancelled";
|
|
1693
|
+
readonly closed: "closed";
|
|
1694
|
+
readonly pending: "pending";
|
|
1695
|
+
};
|
|
1696
|
+
export type ListingStatus = (typeof ListingStatus)[keyof typeof ListingStatus];
|
|
1600
1697
|
export interface ReservedInstancesListing {
|
|
1601
1698
|
ClientToken?: string;
|
|
1602
1699
|
CreateDate?: Date;
|
|
@@ -1617,26 +1714,29 @@ export interface CancelSpotFleetRequestsRequest {
|
|
|
1617
1714
|
SpotFleetRequestIds: string[] | undefined;
|
|
1618
1715
|
TerminateInstances: boolean | undefined;
|
|
1619
1716
|
}
|
|
1620
|
-
export declare
|
|
1621
|
-
ACTIVE
|
|
1622
|
-
CANCELLED
|
|
1623
|
-
CANCELLED_RUNNING
|
|
1624
|
-
CANCELLED_TERMINATING_INSTANCES
|
|
1625
|
-
FAILED
|
|
1626
|
-
MODIFYING
|
|
1627
|
-
SUBMITTED
|
|
1628
|
-
}
|
|
1717
|
+
export declare const BatchState: {
|
|
1718
|
+
readonly ACTIVE: "active";
|
|
1719
|
+
readonly CANCELLED: "cancelled";
|
|
1720
|
+
readonly CANCELLED_RUNNING: "cancelled_running";
|
|
1721
|
+
readonly CANCELLED_TERMINATING_INSTANCES: "cancelled_terminating";
|
|
1722
|
+
readonly FAILED: "failed";
|
|
1723
|
+
readonly MODIFYING: "modifying";
|
|
1724
|
+
readonly SUBMITTED: "submitted";
|
|
1725
|
+
};
|
|
1726
|
+
export type BatchState = (typeof BatchState)[keyof typeof BatchState];
|
|
1629
1727
|
export interface CancelSpotFleetRequestsSuccessItem {
|
|
1630
1728
|
CurrentSpotFleetRequestState?: BatchState | string;
|
|
1631
1729
|
PreviousSpotFleetRequestState?: BatchState | string;
|
|
1632
1730
|
SpotFleetRequestId?: string;
|
|
1633
1731
|
}
|
|
1634
|
-
export declare
|
|
1635
|
-
FLEET_REQUEST_ID_DOES_NOT_EXIST
|
|
1636
|
-
FLEET_REQUEST_ID_MALFORMED
|
|
1637
|
-
FLEET_REQUEST_NOT_IN_CANCELLABLE_STATE
|
|
1638
|
-
UNEXPECTED_ERROR
|
|
1639
|
-
}
|
|
1732
|
+
export declare const CancelBatchErrorCode: {
|
|
1733
|
+
readonly FLEET_REQUEST_ID_DOES_NOT_EXIST: "fleetRequestIdDoesNotExist";
|
|
1734
|
+
readonly FLEET_REQUEST_ID_MALFORMED: "fleetRequestIdMalformed";
|
|
1735
|
+
readonly FLEET_REQUEST_NOT_IN_CANCELLABLE_STATE: "fleetRequestNotInCancellableState";
|
|
1736
|
+
readonly UNEXPECTED_ERROR: "unexpectedError";
|
|
1737
|
+
};
|
|
1738
|
+
export type CancelBatchErrorCode =
|
|
1739
|
+
(typeof CancelBatchErrorCode)[keyof typeof CancelBatchErrorCode];
|
|
1640
1740
|
export interface CancelSpotFleetRequestsError {
|
|
1641
1741
|
Code?: CancelBatchErrorCode | string;
|
|
1642
1742
|
Message?: string;
|
|
@@ -1653,13 +1753,15 @@ export interface CancelSpotInstanceRequestsRequest {
|
|
|
1653
1753
|
DryRun?: boolean;
|
|
1654
1754
|
SpotInstanceRequestIds: string[] | undefined;
|
|
1655
1755
|
}
|
|
1656
|
-
export declare
|
|
1657
|
-
active
|
|
1658
|
-
cancelled
|
|
1659
|
-
closed
|
|
1660
|
-
completed
|
|
1661
|
-
open
|
|
1662
|
-
}
|
|
1756
|
+
export declare const CancelSpotInstanceRequestState: {
|
|
1757
|
+
readonly active: "active";
|
|
1758
|
+
readonly cancelled: "cancelled";
|
|
1759
|
+
readonly closed: "closed";
|
|
1760
|
+
readonly completed: "completed";
|
|
1761
|
+
readonly open: "open";
|
|
1762
|
+
};
|
|
1763
|
+
export type CancelSpotInstanceRequestState =
|
|
1764
|
+
(typeof CancelSpotInstanceRequestState)[keyof typeof CancelSpotInstanceRequestState];
|
|
1663
1765
|
export interface CancelledSpotInstanceRequest {
|
|
1664
1766
|
SpotInstanceRequestId?: string;
|
|
1665
1767
|
State?: CancelSpotInstanceRequestState | string;
|
|
@@ -1718,37 +1820,44 @@ export interface CopySnapshotResult {
|
|
|
1718
1820
|
SnapshotId?: string;
|
|
1719
1821
|
Tags?: Tag[];
|
|
1720
1822
|
}
|
|
1721
|
-
export declare
|
|
1722
|
-
limited
|
|
1723
|
-
unlimited
|
|
1724
|
-
}
|
|
1725
|
-
export
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1823
|
+
export declare const EndDateType: {
|
|
1824
|
+
readonly limited: "limited";
|
|
1825
|
+
readonly unlimited: "unlimited";
|
|
1826
|
+
};
|
|
1827
|
+
export type EndDateType = (typeof EndDateType)[keyof typeof EndDateType];
|
|
1828
|
+
export declare const InstanceMatchCriteria: {
|
|
1829
|
+
readonly open: "open";
|
|
1830
|
+
readonly targeted: "targeted";
|
|
1831
|
+
};
|
|
1832
|
+
export type InstanceMatchCriteria =
|
|
1833
|
+
(typeof InstanceMatchCriteria)[keyof typeof InstanceMatchCriteria];
|
|
1834
|
+
export declare const CapacityReservationInstancePlatform: {
|
|
1835
|
+
readonly LINUX_UNIX: "Linux/UNIX";
|
|
1836
|
+
readonly LINUX_WITH_SQL_SERVER_ENTERPRISE: "Linux with SQL Server Enterprise";
|
|
1837
|
+
readonly LINUX_WITH_SQL_SERVER_STANDARD: "Linux with SQL Server Standard";
|
|
1838
|
+
readonly LINUX_WITH_SQL_SERVER_WEB: "Linux with SQL Server Web";
|
|
1839
|
+
readonly RED_HAT_ENTERPRISE_LINUX: "Red Hat Enterprise Linux";
|
|
1840
|
+
readonly RHEL_WITH_HA: "RHEL with HA";
|
|
1841
|
+
readonly RHEL_WITH_HA_AND_SQL_SERVER_ENTERPRISE: "RHEL with HA and SQL Server Enterprise";
|
|
1842
|
+
readonly RHEL_WITH_HA_AND_SQL_SERVER_STANDARD: "RHEL with HA and SQL Server Standard";
|
|
1843
|
+
readonly RHEL_WITH_SQL_SERVER_ENTERPRISE: "RHEL with SQL Server Enterprise";
|
|
1844
|
+
readonly RHEL_WITH_SQL_SERVER_STANDARD: "RHEL with SQL Server Standard";
|
|
1845
|
+
readonly RHEL_WITH_SQL_SERVER_WEB: "RHEL with SQL Server Web";
|
|
1846
|
+
readonly SUSE_LINUX: "SUSE Linux";
|
|
1847
|
+
readonly WINDOWS: "Windows";
|
|
1848
|
+
readonly WINDOWS_WITH_SQL_SERVER: "Windows with SQL Server";
|
|
1849
|
+
readonly WINDOWS_WITH_SQL_SERVER_ENTERPRISE: "Windows with SQL Server Enterprise";
|
|
1850
|
+
readonly WINDOWS_WITH_SQL_SERVER_STANDARD: "Windows with SQL Server Standard";
|
|
1851
|
+
readonly WINDOWS_WITH_SQL_SERVER_WEB: "Windows with SQL Server Web";
|
|
1852
|
+
};
|
|
1853
|
+
export type CapacityReservationInstancePlatform =
|
|
1854
|
+
(typeof CapacityReservationInstancePlatform)[keyof typeof CapacityReservationInstancePlatform];
|
|
1855
|
+
export declare const CapacityReservationTenancy: {
|
|
1856
|
+
readonly dedicated: "dedicated";
|
|
1857
|
+
readonly default: "default";
|
|
1858
|
+
};
|
|
1859
|
+
export type CapacityReservationTenancy =
|
|
1860
|
+
(typeof CapacityReservationTenancy)[keyof typeof CapacityReservationTenancy];
|
|
1752
1861
|
export interface CreateCapacityReservationRequest {
|
|
1753
1862
|
ClientToken?: string;
|
|
1754
1863
|
InstanceType: string | undefined;
|
|
@@ -1771,13 +1880,15 @@ export interface CapacityAllocation {
|
|
|
1771
1880
|
AllocationType?: AllocationType | string;
|
|
1772
1881
|
Count?: number;
|
|
1773
1882
|
}
|
|
1774
|
-
export declare
|
|
1775
|
-
active
|
|
1776
|
-
cancelled
|
|
1777
|
-
expired
|
|
1778
|
-
failed
|
|
1779
|
-
pending
|
|
1780
|
-
}
|
|
1883
|
+
export declare const CapacityReservationState: {
|
|
1884
|
+
readonly active: "active";
|
|
1885
|
+
readonly cancelled: "cancelled";
|
|
1886
|
+
readonly expired: "expired";
|
|
1887
|
+
readonly failed: "failed";
|
|
1888
|
+
readonly pending: "pending";
|
|
1889
|
+
};
|
|
1890
|
+
export type CapacityReservationState =
|
|
1891
|
+
(typeof CapacityReservationState)[keyof typeof CapacityReservationState];
|
|
1781
1892
|
export interface CapacityReservation {
|
|
1782
1893
|
CapacityReservationId?: string;
|
|
1783
1894
|
OwnerId?: string;
|
|
@@ -1806,649 +1917,652 @@ export interface CapacityReservation {
|
|
|
1806
1917
|
export interface CreateCapacityReservationResult {
|
|
1807
1918
|
CapacityReservation?: CapacityReservation;
|
|
1808
1919
|
}
|
|
1809
|
-
export declare
|
|
1810
|
-
open
|
|
1811
|
-
}
|
|
1812
|
-
export
|
|
1813
|
-
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
|
|
1826
|
-
|
|
1827
|
-
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
|
|
1834
|
-
|
|
1835
|
-
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
|
|
1842
|
-
|
|
1843
|
-
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
|
-
|
|
1853
|
-
|
|
1854
|
-
|
|
1855
|
-
|
|
1856
|
-
|
|
1857
|
-
|
|
1858
|
-
|
|
1859
|
-
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
|
-
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
|
|
1869
|
-
|
|
1870
|
-
|
|
1871
|
-
|
|
1872
|
-
|
|
1873
|
-
|
|
1874
|
-
|
|
1875
|
-
|
|
1876
|
-
|
|
1877
|
-
|
|
1878
|
-
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
|
|
1882
|
-
|
|
1883
|
-
|
|
1884
|
-
|
|
1885
|
-
|
|
1886
|
-
|
|
1887
|
-
|
|
1888
|
-
|
|
1889
|
-
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
1893
|
-
|
|
1894
|
-
|
|
1895
|
-
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
|
|
1910
|
-
|
|
1911
|
-
|
|
1912
|
-
|
|
1913
|
-
|
|
1914
|
-
|
|
1915
|
-
|
|
1916
|
-
|
|
1917
|
-
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
|
|
1921
|
-
|
|
1922
|
-
|
|
1923
|
-
|
|
1924
|
-
|
|
1925
|
-
|
|
1926
|
-
|
|
1927
|
-
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
1931
|
-
|
|
1932
|
-
|
|
1933
|
-
|
|
1934
|
-
|
|
1935
|
-
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
|
|
1950
|
-
|
|
1951
|
-
|
|
1952
|
-
|
|
1953
|
-
|
|
1954
|
-
|
|
1955
|
-
|
|
1956
|
-
|
|
1957
|
-
|
|
1958
|
-
|
|
1959
|
-
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
|
|
1966
|
-
|
|
1967
|
-
|
|
1968
|
-
|
|
1969
|
-
|
|
1970
|
-
|
|
1971
|
-
|
|
1972
|
-
|
|
1973
|
-
|
|
1974
|
-
|
|
1975
|
-
|
|
1976
|
-
|
|
1977
|
-
|
|
1978
|
-
|
|
1979
|
-
|
|
1980
|
-
|
|
1981
|
-
|
|
1982
|
-
|
|
1983
|
-
|
|
1984
|
-
|
|
1985
|
-
|
|
1986
|
-
|
|
1987
|
-
|
|
1988
|
-
|
|
1989
|
-
|
|
1990
|
-
|
|
1991
|
-
|
|
1992
|
-
|
|
1993
|
-
|
|
1994
|
-
|
|
1995
|
-
|
|
1996
|
-
|
|
1997
|
-
|
|
1998
|
-
|
|
1999
|
-
|
|
2000
|
-
|
|
2001
|
-
|
|
2002
|
-
|
|
2003
|
-
|
|
2004
|
-
|
|
2005
|
-
|
|
2006
|
-
|
|
2007
|
-
|
|
2008
|
-
|
|
2009
|
-
|
|
2010
|
-
|
|
2011
|
-
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
|
|
2017
|
-
|
|
2018
|
-
|
|
2019
|
-
|
|
2020
|
-
|
|
2021
|
-
|
|
2022
|
-
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
|
|
2033
|
-
|
|
2034
|
-
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
|
|
2041
|
-
|
|
2042
|
-
|
|
2043
|
-
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
|
|
2049
|
-
|
|
2050
|
-
|
|
2051
|
-
|
|
2052
|
-
|
|
2053
|
-
|
|
2054
|
-
|
|
2055
|
-
|
|
2056
|
-
|
|
2057
|
-
|
|
2058
|
-
|
|
2059
|
-
|
|
2060
|
-
|
|
2061
|
-
|
|
2062
|
-
|
|
2063
|
-
|
|
2064
|
-
|
|
2065
|
-
|
|
2066
|
-
|
|
2067
|
-
|
|
2068
|
-
|
|
2069
|
-
|
|
2070
|
-
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
|
|
2074
|
-
|
|
2075
|
-
|
|
2076
|
-
|
|
2077
|
-
|
|
2078
|
-
|
|
2079
|
-
|
|
2080
|
-
|
|
2081
|
-
|
|
2082
|
-
|
|
2083
|
-
|
|
2084
|
-
|
|
2085
|
-
|
|
2086
|
-
|
|
2087
|
-
|
|
2088
|
-
|
|
2089
|
-
|
|
2090
|
-
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
|
|
2094
|
-
|
|
2095
|
-
|
|
2096
|
-
|
|
2097
|
-
|
|
2098
|
-
|
|
2099
|
-
|
|
2100
|
-
|
|
2101
|
-
|
|
2102
|
-
|
|
2103
|
-
|
|
2104
|
-
|
|
2105
|
-
|
|
2106
|
-
|
|
2107
|
-
|
|
2108
|
-
|
|
2109
|
-
|
|
2110
|
-
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
|
|
2130
|
-
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
|
|
2134
|
-
|
|
2135
|
-
|
|
2136
|
-
|
|
2137
|
-
|
|
2138
|
-
|
|
2139
|
-
|
|
2140
|
-
|
|
2141
|
-
|
|
2142
|
-
|
|
2143
|
-
|
|
2144
|
-
|
|
2145
|
-
|
|
2146
|
-
|
|
2147
|
-
|
|
2148
|
-
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
|
|
2152
|
-
|
|
2153
|
-
|
|
2154
|
-
|
|
2155
|
-
|
|
2156
|
-
|
|
2157
|
-
|
|
2158
|
-
|
|
2159
|
-
|
|
2160
|
-
|
|
2161
|
-
|
|
2162
|
-
|
|
2163
|
-
|
|
2164
|
-
|
|
2165
|
-
|
|
2166
|
-
|
|
2167
|
-
|
|
2168
|
-
|
|
2169
|
-
|
|
2170
|
-
|
|
2171
|
-
|
|
2172
|
-
|
|
2173
|
-
|
|
2174
|
-
|
|
2175
|
-
|
|
2176
|
-
|
|
2177
|
-
|
|
2178
|
-
|
|
2179
|
-
|
|
2180
|
-
|
|
2181
|
-
|
|
2182
|
-
|
|
2183
|
-
|
|
2184
|
-
|
|
2185
|
-
|
|
2186
|
-
|
|
2187
|
-
|
|
2188
|
-
|
|
2189
|
-
|
|
2190
|
-
|
|
2191
|
-
|
|
2192
|
-
|
|
2193
|
-
|
|
2194
|
-
|
|
2195
|
-
|
|
2196
|
-
|
|
2197
|
-
|
|
2198
|
-
|
|
2199
|
-
|
|
2200
|
-
|
|
2201
|
-
|
|
2202
|
-
|
|
2203
|
-
|
|
2204
|
-
|
|
2205
|
-
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
-
|
|
2213
|
-
|
|
2214
|
-
|
|
2215
|
-
|
|
2216
|
-
|
|
2217
|
-
|
|
2218
|
-
|
|
2219
|
-
|
|
2220
|
-
|
|
2221
|
-
|
|
2222
|
-
|
|
2223
|
-
|
|
2224
|
-
|
|
2225
|
-
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2229
|
-
|
|
2230
|
-
|
|
2231
|
-
|
|
2232
|
-
|
|
2233
|
-
|
|
2234
|
-
|
|
2235
|
-
|
|
2236
|
-
|
|
2237
|
-
|
|
2238
|
-
|
|
2239
|
-
|
|
2240
|
-
|
|
2241
|
-
|
|
2242
|
-
|
|
2243
|
-
|
|
2244
|
-
|
|
2245
|
-
|
|
2246
|
-
|
|
2247
|
-
|
|
2248
|
-
|
|
2249
|
-
|
|
2250
|
-
|
|
2251
|
-
|
|
2252
|
-
|
|
2253
|
-
|
|
2254
|
-
|
|
2255
|
-
|
|
2256
|
-
|
|
2257
|
-
|
|
2258
|
-
|
|
2259
|
-
|
|
2260
|
-
|
|
2261
|
-
|
|
2262
|
-
|
|
2263
|
-
|
|
2264
|
-
|
|
2265
|
-
|
|
2266
|
-
|
|
2267
|
-
|
|
2268
|
-
|
|
2269
|
-
|
|
2270
|
-
|
|
2271
|
-
|
|
2272
|
-
|
|
2273
|
-
|
|
2274
|
-
|
|
2275
|
-
|
|
2276
|
-
|
|
2277
|
-
|
|
2278
|
-
|
|
2279
|
-
|
|
2280
|
-
|
|
2281
|
-
|
|
2282
|
-
|
|
2283
|
-
|
|
2284
|
-
|
|
2285
|
-
|
|
2286
|
-
|
|
2287
|
-
|
|
2288
|
-
|
|
2289
|
-
|
|
2290
|
-
|
|
2291
|
-
|
|
2292
|
-
|
|
2293
|
-
|
|
2294
|
-
|
|
2295
|
-
|
|
2296
|
-
|
|
2297
|
-
|
|
2298
|
-
|
|
2299
|
-
|
|
2300
|
-
|
|
2301
|
-
|
|
2302
|
-
|
|
2303
|
-
|
|
2304
|
-
|
|
2305
|
-
|
|
2306
|
-
|
|
2307
|
-
|
|
2308
|
-
|
|
2309
|
-
|
|
2310
|
-
|
|
2311
|
-
|
|
2312
|
-
|
|
2313
|
-
|
|
2314
|
-
|
|
2315
|
-
|
|
2316
|
-
|
|
2317
|
-
|
|
2318
|
-
|
|
2319
|
-
|
|
2320
|
-
|
|
2321
|
-
|
|
2322
|
-
|
|
2323
|
-
|
|
2324
|
-
|
|
2325
|
-
|
|
2326
|
-
|
|
2327
|
-
|
|
2328
|
-
|
|
2329
|
-
|
|
2330
|
-
|
|
2331
|
-
|
|
2332
|
-
|
|
2333
|
-
|
|
2334
|
-
|
|
2335
|
-
|
|
2336
|
-
|
|
2337
|
-
|
|
2338
|
-
|
|
2339
|
-
|
|
2340
|
-
|
|
2341
|
-
|
|
2342
|
-
|
|
2343
|
-
|
|
2344
|
-
|
|
2345
|
-
|
|
2346
|
-
|
|
2347
|
-
|
|
2348
|
-
|
|
2349
|
-
|
|
2350
|
-
|
|
2351
|
-
|
|
2352
|
-
|
|
2353
|
-
|
|
2354
|
-
|
|
2355
|
-
|
|
2356
|
-
|
|
2357
|
-
|
|
2358
|
-
|
|
2359
|
-
|
|
2360
|
-
|
|
2361
|
-
|
|
2362
|
-
|
|
2363
|
-
|
|
2364
|
-
|
|
2365
|
-
|
|
2366
|
-
|
|
2367
|
-
|
|
2368
|
-
|
|
2369
|
-
|
|
2370
|
-
|
|
2371
|
-
|
|
2372
|
-
|
|
2373
|
-
|
|
2374
|
-
|
|
2375
|
-
|
|
2376
|
-
|
|
2377
|
-
|
|
2378
|
-
|
|
2379
|
-
|
|
2380
|
-
|
|
2381
|
-
|
|
2382
|
-
|
|
2383
|
-
|
|
2384
|
-
|
|
2385
|
-
|
|
2386
|
-
|
|
2387
|
-
|
|
2388
|
-
|
|
2389
|
-
|
|
2390
|
-
|
|
2391
|
-
|
|
2392
|
-
|
|
2393
|
-
|
|
2394
|
-
|
|
2395
|
-
|
|
2396
|
-
|
|
2397
|
-
|
|
2398
|
-
|
|
2399
|
-
|
|
2400
|
-
|
|
2401
|
-
|
|
2402
|
-
|
|
2403
|
-
|
|
2404
|
-
|
|
2405
|
-
|
|
2406
|
-
|
|
2407
|
-
|
|
2408
|
-
|
|
2409
|
-
|
|
2410
|
-
|
|
2411
|
-
|
|
2412
|
-
|
|
2413
|
-
|
|
2414
|
-
|
|
2415
|
-
|
|
2416
|
-
|
|
2417
|
-
|
|
2418
|
-
|
|
2419
|
-
|
|
2420
|
-
|
|
2421
|
-
|
|
2422
|
-
|
|
2423
|
-
|
|
2424
|
-
|
|
2425
|
-
|
|
2426
|
-
|
|
2427
|
-
|
|
2428
|
-
|
|
2429
|
-
|
|
2430
|
-
|
|
2431
|
-
|
|
2432
|
-
|
|
2433
|
-
|
|
2434
|
-
|
|
2435
|
-
|
|
2436
|
-
|
|
2437
|
-
|
|
2438
|
-
|
|
2439
|
-
|
|
2440
|
-
|
|
2441
|
-
|
|
2442
|
-
|
|
2443
|
-
|
|
2444
|
-
|
|
2445
|
-
|
|
2446
|
-
|
|
2447
|
-
|
|
2448
|
-
|
|
2449
|
-
|
|
2450
|
-
|
|
2451
|
-
|
|
1920
|
+
export declare const FleetInstanceMatchCriteria: {
|
|
1921
|
+
readonly open: "open";
|
|
1922
|
+
};
|
|
1923
|
+
export type FleetInstanceMatchCriteria =
|
|
1924
|
+
(typeof FleetInstanceMatchCriteria)[keyof typeof FleetInstanceMatchCriteria];
|
|
1925
|
+
export declare const _InstanceType: {
|
|
1926
|
+
readonly a1_2xlarge: "a1.2xlarge";
|
|
1927
|
+
readonly a1_4xlarge: "a1.4xlarge";
|
|
1928
|
+
readonly a1_large: "a1.large";
|
|
1929
|
+
readonly a1_medium: "a1.medium";
|
|
1930
|
+
readonly a1_metal: "a1.metal";
|
|
1931
|
+
readonly a1_xlarge: "a1.xlarge";
|
|
1932
|
+
readonly c1_medium: "c1.medium";
|
|
1933
|
+
readonly c1_xlarge: "c1.xlarge";
|
|
1934
|
+
readonly c3_2xlarge: "c3.2xlarge";
|
|
1935
|
+
readonly c3_4xlarge: "c3.4xlarge";
|
|
1936
|
+
readonly c3_8xlarge: "c3.8xlarge";
|
|
1937
|
+
readonly c3_large: "c3.large";
|
|
1938
|
+
readonly c3_xlarge: "c3.xlarge";
|
|
1939
|
+
readonly c4_2xlarge: "c4.2xlarge";
|
|
1940
|
+
readonly c4_4xlarge: "c4.4xlarge";
|
|
1941
|
+
readonly c4_8xlarge: "c4.8xlarge";
|
|
1942
|
+
readonly c4_large: "c4.large";
|
|
1943
|
+
readonly c4_xlarge: "c4.xlarge";
|
|
1944
|
+
readonly c5_12xlarge: "c5.12xlarge";
|
|
1945
|
+
readonly c5_18xlarge: "c5.18xlarge";
|
|
1946
|
+
readonly c5_24xlarge: "c5.24xlarge";
|
|
1947
|
+
readonly c5_2xlarge: "c5.2xlarge";
|
|
1948
|
+
readonly c5_4xlarge: "c5.4xlarge";
|
|
1949
|
+
readonly c5_9xlarge: "c5.9xlarge";
|
|
1950
|
+
readonly c5_large: "c5.large";
|
|
1951
|
+
readonly c5_metal: "c5.metal";
|
|
1952
|
+
readonly c5_xlarge: "c5.xlarge";
|
|
1953
|
+
readonly c5a_12xlarge: "c5a.12xlarge";
|
|
1954
|
+
readonly c5a_16xlarge: "c5a.16xlarge";
|
|
1955
|
+
readonly c5a_24xlarge: "c5a.24xlarge";
|
|
1956
|
+
readonly c5a_2xlarge: "c5a.2xlarge";
|
|
1957
|
+
readonly c5a_4xlarge: "c5a.4xlarge";
|
|
1958
|
+
readonly c5a_8xlarge: "c5a.8xlarge";
|
|
1959
|
+
readonly c5a_large: "c5a.large";
|
|
1960
|
+
readonly c5a_xlarge: "c5a.xlarge";
|
|
1961
|
+
readonly c5ad_12xlarge: "c5ad.12xlarge";
|
|
1962
|
+
readonly c5ad_16xlarge: "c5ad.16xlarge";
|
|
1963
|
+
readonly c5ad_24xlarge: "c5ad.24xlarge";
|
|
1964
|
+
readonly c5ad_2xlarge: "c5ad.2xlarge";
|
|
1965
|
+
readonly c5ad_4xlarge: "c5ad.4xlarge";
|
|
1966
|
+
readonly c5ad_8xlarge: "c5ad.8xlarge";
|
|
1967
|
+
readonly c5ad_large: "c5ad.large";
|
|
1968
|
+
readonly c5ad_xlarge: "c5ad.xlarge";
|
|
1969
|
+
readonly c5d_12xlarge: "c5d.12xlarge";
|
|
1970
|
+
readonly c5d_18xlarge: "c5d.18xlarge";
|
|
1971
|
+
readonly c5d_24xlarge: "c5d.24xlarge";
|
|
1972
|
+
readonly c5d_2xlarge: "c5d.2xlarge";
|
|
1973
|
+
readonly c5d_4xlarge: "c5d.4xlarge";
|
|
1974
|
+
readonly c5d_9xlarge: "c5d.9xlarge";
|
|
1975
|
+
readonly c5d_large: "c5d.large";
|
|
1976
|
+
readonly c5d_metal: "c5d.metal";
|
|
1977
|
+
readonly c5d_xlarge: "c5d.xlarge";
|
|
1978
|
+
readonly c5n_18xlarge: "c5n.18xlarge";
|
|
1979
|
+
readonly c5n_2xlarge: "c5n.2xlarge";
|
|
1980
|
+
readonly c5n_4xlarge: "c5n.4xlarge";
|
|
1981
|
+
readonly c5n_9xlarge: "c5n.9xlarge";
|
|
1982
|
+
readonly c5n_large: "c5n.large";
|
|
1983
|
+
readonly c5n_metal: "c5n.metal";
|
|
1984
|
+
readonly c5n_xlarge: "c5n.xlarge";
|
|
1985
|
+
readonly c6a_12xlarge: "c6a.12xlarge";
|
|
1986
|
+
readonly c6a_16xlarge: "c6a.16xlarge";
|
|
1987
|
+
readonly c6a_24xlarge: "c6a.24xlarge";
|
|
1988
|
+
readonly c6a_2xlarge: "c6a.2xlarge";
|
|
1989
|
+
readonly c6a_32xlarge: "c6a.32xlarge";
|
|
1990
|
+
readonly c6a_48xlarge: "c6a.48xlarge";
|
|
1991
|
+
readonly c6a_4xlarge: "c6a.4xlarge";
|
|
1992
|
+
readonly c6a_8xlarge: "c6a.8xlarge";
|
|
1993
|
+
readonly c6a_large: "c6a.large";
|
|
1994
|
+
readonly c6a_metal: "c6a.metal";
|
|
1995
|
+
readonly c6a_xlarge: "c6a.xlarge";
|
|
1996
|
+
readonly c6g_12xlarge: "c6g.12xlarge";
|
|
1997
|
+
readonly c6g_16xlarge: "c6g.16xlarge";
|
|
1998
|
+
readonly c6g_2xlarge: "c6g.2xlarge";
|
|
1999
|
+
readonly c6g_4xlarge: "c6g.4xlarge";
|
|
2000
|
+
readonly c6g_8xlarge: "c6g.8xlarge";
|
|
2001
|
+
readonly c6g_large: "c6g.large";
|
|
2002
|
+
readonly c6g_medium: "c6g.medium";
|
|
2003
|
+
readonly c6g_metal: "c6g.metal";
|
|
2004
|
+
readonly c6g_xlarge: "c6g.xlarge";
|
|
2005
|
+
readonly c6gd_12xlarge: "c6gd.12xlarge";
|
|
2006
|
+
readonly c6gd_16xlarge: "c6gd.16xlarge";
|
|
2007
|
+
readonly c6gd_2xlarge: "c6gd.2xlarge";
|
|
2008
|
+
readonly c6gd_4xlarge: "c6gd.4xlarge";
|
|
2009
|
+
readonly c6gd_8xlarge: "c6gd.8xlarge";
|
|
2010
|
+
readonly c6gd_large: "c6gd.large";
|
|
2011
|
+
readonly c6gd_medium: "c6gd.medium";
|
|
2012
|
+
readonly c6gd_metal: "c6gd.metal";
|
|
2013
|
+
readonly c6gd_xlarge: "c6gd.xlarge";
|
|
2014
|
+
readonly c6gn_12xlarge: "c6gn.12xlarge";
|
|
2015
|
+
readonly c6gn_16xlarge: "c6gn.16xlarge";
|
|
2016
|
+
readonly c6gn_2xlarge: "c6gn.2xlarge";
|
|
2017
|
+
readonly c6gn_4xlarge: "c6gn.4xlarge";
|
|
2018
|
+
readonly c6gn_8xlarge: "c6gn.8xlarge";
|
|
2019
|
+
readonly c6gn_large: "c6gn.large";
|
|
2020
|
+
readonly c6gn_medium: "c6gn.medium";
|
|
2021
|
+
readonly c6gn_xlarge: "c6gn.xlarge";
|
|
2022
|
+
readonly c6i_12xlarge: "c6i.12xlarge";
|
|
2023
|
+
readonly c6i_16xlarge: "c6i.16xlarge";
|
|
2024
|
+
readonly c6i_24xlarge: "c6i.24xlarge";
|
|
2025
|
+
readonly c6i_2xlarge: "c6i.2xlarge";
|
|
2026
|
+
readonly c6i_32xlarge: "c6i.32xlarge";
|
|
2027
|
+
readonly c6i_4xlarge: "c6i.4xlarge";
|
|
2028
|
+
readonly c6i_8xlarge: "c6i.8xlarge";
|
|
2029
|
+
readonly c6i_large: "c6i.large";
|
|
2030
|
+
readonly c6i_metal: "c6i.metal";
|
|
2031
|
+
readonly c6i_xlarge: "c6i.xlarge";
|
|
2032
|
+
readonly c6id_12xlarge: "c6id.12xlarge";
|
|
2033
|
+
readonly c6id_16xlarge: "c6id.16xlarge";
|
|
2034
|
+
readonly c6id_24xlarge: "c6id.24xlarge";
|
|
2035
|
+
readonly c6id_2xlarge: "c6id.2xlarge";
|
|
2036
|
+
readonly c6id_32xlarge: "c6id.32xlarge";
|
|
2037
|
+
readonly c6id_4xlarge: "c6id.4xlarge";
|
|
2038
|
+
readonly c6id_8xlarge: "c6id.8xlarge";
|
|
2039
|
+
readonly c6id_large: "c6id.large";
|
|
2040
|
+
readonly c6id_metal: "c6id.metal";
|
|
2041
|
+
readonly c6id_xlarge: "c6id.xlarge";
|
|
2042
|
+
readonly c6in_12xlarge: "c6in.12xlarge";
|
|
2043
|
+
readonly c6in_16xlarge: "c6in.16xlarge";
|
|
2044
|
+
readonly c6in_24xlarge: "c6in.24xlarge";
|
|
2045
|
+
readonly c6in_2xlarge: "c6in.2xlarge";
|
|
2046
|
+
readonly c6in_32xlarge: "c6in.32xlarge";
|
|
2047
|
+
readonly c6in_4xlarge: "c6in.4xlarge";
|
|
2048
|
+
readonly c6in_8xlarge: "c6in.8xlarge";
|
|
2049
|
+
readonly c6in_large: "c6in.large";
|
|
2050
|
+
readonly c6in_xlarge: "c6in.xlarge";
|
|
2051
|
+
readonly c7g_12xlarge: "c7g.12xlarge";
|
|
2052
|
+
readonly c7g_16xlarge: "c7g.16xlarge";
|
|
2053
|
+
readonly c7g_2xlarge: "c7g.2xlarge";
|
|
2054
|
+
readonly c7g_4xlarge: "c7g.4xlarge";
|
|
2055
|
+
readonly c7g_8xlarge: "c7g.8xlarge";
|
|
2056
|
+
readonly c7g_large: "c7g.large";
|
|
2057
|
+
readonly c7g_medium: "c7g.medium";
|
|
2058
|
+
readonly c7g_metal: "c7g.metal";
|
|
2059
|
+
readonly c7g_xlarge: "c7g.xlarge";
|
|
2060
|
+
readonly cc1_4xlarge: "cc1.4xlarge";
|
|
2061
|
+
readonly cc2_8xlarge: "cc2.8xlarge";
|
|
2062
|
+
readonly cg1_4xlarge: "cg1.4xlarge";
|
|
2063
|
+
readonly cr1_8xlarge: "cr1.8xlarge";
|
|
2064
|
+
readonly d2_2xlarge: "d2.2xlarge";
|
|
2065
|
+
readonly d2_4xlarge: "d2.4xlarge";
|
|
2066
|
+
readonly d2_8xlarge: "d2.8xlarge";
|
|
2067
|
+
readonly d2_xlarge: "d2.xlarge";
|
|
2068
|
+
readonly d3_2xlarge: "d3.2xlarge";
|
|
2069
|
+
readonly d3_4xlarge: "d3.4xlarge";
|
|
2070
|
+
readonly d3_8xlarge: "d3.8xlarge";
|
|
2071
|
+
readonly d3_xlarge: "d3.xlarge";
|
|
2072
|
+
readonly d3en_12xlarge: "d3en.12xlarge";
|
|
2073
|
+
readonly d3en_2xlarge: "d3en.2xlarge";
|
|
2074
|
+
readonly d3en_4xlarge: "d3en.4xlarge";
|
|
2075
|
+
readonly d3en_6xlarge: "d3en.6xlarge";
|
|
2076
|
+
readonly d3en_8xlarge: "d3en.8xlarge";
|
|
2077
|
+
readonly d3en_xlarge: "d3en.xlarge";
|
|
2078
|
+
readonly dl1_24xlarge: "dl1.24xlarge";
|
|
2079
|
+
readonly f1_16xlarge: "f1.16xlarge";
|
|
2080
|
+
readonly f1_2xlarge: "f1.2xlarge";
|
|
2081
|
+
readonly f1_4xlarge: "f1.4xlarge";
|
|
2082
|
+
readonly g2_2xlarge: "g2.2xlarge";
|
|
2083
|
+
readonly g2_8xlarge: "g2.8xlarge";
|
|
2084
|
+
readonly g3_16xlarge: "g3.16xlarge";
|
|
2085
|
+
readonly g3_4xlarge: "g3.4xlarge";
|
|
2086
|
+
readonly g3_8xlarge: "g3.8xlarge";
|
|
2087
|
+
readonly g3s_xlarge: "g3s.xlarge";
|
|
2088
|
+
readonly g4ad_16xlarge: "g4ad.16xlarge";
|
|
2089
|
+
readonly g4ad_2xlarge: "g4ad.2xlarge";
|
|
2090
|
+
readonly g4ad_4xlarge: "g4ad.4xlarge";
|
|
2091
|
+
readonly g4ad_8xlarge: "g4ad.8xlarge";
|
|
2092
|
+
readonly g4ad_xlarge: "g4ad.xlarge";
|
|
2093
|
+
readonly g4dn_12xlarge: "g4dn.12xlarge";
|
|
2094
|
+
readonly g4dn_16xlarge: "g4dn.16xlarge";
|
|
2095
|
+
readonly g4dn_2xlarge: "g4dn.2xlarge";
|
|
2096
|
+
readonly g4dn_4xlarge: "g4dn.4xlarge";
|
|
2097
|
+
readonly g4dn_8xlarge: "g4dn.8xlarge";
|
|
2098
|
+
readonly g4dn_metal: "g4dn.metal";
|
|
2099
|
+
readonly g4dn_xlarge: "g4dn.xlarge";
|
|
2100
|
+
readonly g5_12xlarge: "g5.12xlarge";
|
|
2101
|
+
readonly g5_16xlarge: "g5.16xlarge";
|
|
2102
|
+
readonly g5_24xlarge: "g5.24xlarge";
|
|
2103
|
+
readonly g5_2xlarge: "g5.2xlarge";
|
|
2104
|
+
readonly g5_48xlarge: "g5.48xlarge";
|
|
2105
|
+
readonly g5_4xlarge: "g5.4xlarge";
|
|
2106
|
+
readonly g5_8xlarge: "g5.8xlarge";
|
|
2107
|
+
readonly g5_xlarge: "g5.xlarge";
|
|
2108
|
+
readonly g5g_16xlarge: "g5g.16xlarge";
|
|
2109
|
+
readonly g5g_2xlarge: "g5g.2xlarge";
|
|
2110
|
+
readonly g5g_4xlarge: "g5g.4xlarge";
|
|
2111
|
+
readonly g5g_8xlarge: "g5g.8xlarge";
|
|
2112
|
+
readonly g5g_metal: "g5g.metal";
|
|
2113
|
+
readonly g5g_xlarge: "g5g.xlarge";
|
|
2114
|
+
readonly h1_16xlarge: "h1.16xlarge";
|
|
2115
|
+
readonly h1_2xlarge: "h1.2xlarge";
|
|
2116
|
+
readonly h1_4xlarge: "h1.4xlarge";
|
|
2117
|
+
readonly h1_8xlarge: "h1.8xlarge";
|
|
2118
|
+
readonly hi1_4xlarge: "hi1.4xlarge";
|
|
2119
|
+
readonly hpc6a_48xlarge: "hpc6a.48xlarge";
|
|
2120
|
+
readonly hpc6id_32xlarge: "hpc6id.32xlarge";
|
|
2121
|
+
readonly hs1_8xlarge: "hs1.8xlarge";
|
|
2122
|
+
readonly i2_2xlarge: "i2.2xlarge";
|
|
2123
|
+
readonly i2_4xlarge: "i2.4xlarge";
|
|
2124
|
+
readonly i2_8xlarge: "i2.8xlarge";
|
|
2125
|
+
readonly i2_xlarge: "i2.xlarge";
|
|
2126
|
+
readonly i3_16xlarge: "i3.16xlarge";
|
|
2127
|
+
readonly i3_2xlarge: "i3.2xlarge";
|
|
2128
|
+
readonly i3_4xlarge: "i3.4xlarge";
|
|
2129
|
+
readonly i3_8xlarge: "i3.8xlarge";
|
|
2130
|
+
readonly i3_large: "i3.large";
|
|
2131
|
+
readonly i3_metal: "i3.metal";
|
|
2132
|
+
readonly i3_xlarge: "i3.xlarge";
|
|
2133
|
+
readonly i3en_12xlarge: "i3en.12xlarge";
|
|
2134
|
+
readonly i3en_24xlarge: "i3en.24xlarge";
|
|
2135
|
+
readonly i3en_2xlarge: "i3en.2xlarge";
|
|
2136
|
+
readonly i3en_3xlarge: "i3en.3xlarge";
|
|
2137
|
+
readonly i3en_6xlarge: "i3en.6xlarge";
|
|
2138
|
+
readonly i3en_large: "i3en.large";
|
|
2139
|
+
readonly i3en_metal: "i3en.metal";
|
|
2140
|
+
readonly i3en_xlarge: "i3en.xlarge";
|
|
2141
|
+
readonly i4i_16xlarge: "i4i.16xlarge";
|
|
2142
|
+
readonly i4i_2xlarge: "i4i.2xlarge";
|
|
2143
|
+
readonly i4i_32xlarge: "i4i.32xlarge";
|
|
2144
|
+
readonly i4i_4xlarge: "i4i.4xlarge";
|
|
2145
|
+
readonly i4i_8xlarge: "i4i.8xlarge";
|
|
2146
|
+
readonly i4i_large: "i4i.large";
|
|
2147
|
+
readonly i4i_metal: "i4i.metal";
|
|
2148
|
+
readonly i4i_xlarge: "i4i.xlarge";
|
|
2149
|
+
readonly im4gn_16xlarge: "im4gn.16xlarge";
|
|
2150
|
+
readonly im4gn_2xlarge: "im4gn.2xlarge";
|
|
2151
|
+
readonly im4gn_4xlarge: "im4gn.4xlarge";
|
|
2152
|
+
readonly im4gn_8xlarge: "im4gn.8xlarge";
|
|
2153
|
+
readonly im4gn_large: "im4gn.large";
|
|
2154
|
+
readonly im4gn_xlarge: "im4gn.xlarge";
|
|
2155
|
+
readonly inf1_24xlarge: "inf1.24xlarge";
|
|
2156
|
+
readonly inf1_2xlarge: "inf1.2xlarge";
|
|
2157
|
+
readonly inf1_6xlarge: "inf1.6xlarge";
|
|
2158
|
+
readonly inf1_xlarge: "inf1.xlarge";
|
|
2159
|
+
readonly is4gen_2xlarge: "is4gen.2xlarge";
|
|
2160
|
+
readonly is4gen_4xlarge: "is4gen.4xlarge";
|
|
2161
|
+
readonly is4gen_8xlarge: "is4gen.8xlarge";
|
|
2162
|
+
readonly is4gen_large: "is4gen.large";
|
|
2163
|
+
readonly is4gen_medium: "is4gen.medium";
|
|
2164
|
+
readonly is4gen_xlarge: "is4gen.xlarge";
|
|
2165
|
+
readonly m1_large: "m1.large";
|
|
2166
|
+
readonly m1_medium: "m1.medium";
|
|
2167
|
+
readonly m1_small: "m1.small";
|
|
2168
|
+
readonly m1_xlarge: "m1.xlarge";
|
|
2169
|
+
readonly m2_2xlarge: "m2.2xlarge";
|
|
2170
|
+
readonly m2_4xlarge: "m2.4xlarge";
|
|
2171
|
+
readonly m2_xlarge: "m2.xlarge";
|
|
2172
|
+
readonly m3_2xlarge: "m3.2xlarge";
|
|
2173
|
+
readonly m3_large: "m3.large";
|
|
2174
|
+
readonly m3_medium: "m3.medium";
|
|
2175
|
+
readonly m3_xlarge: "m3.xlarge";
|
|
2176
|
+
readonly m4_10xlarge: "m4.10xlarge";
|
|
2177
|
+
readonly m4_16xlarge: "m4.16xlarge";
|
|
2178
|
+
readonly m4_2xlarge: "m4.2xlarge";
|
|
2179
|
+
readonly m4_4xlarge: "m4.4xlarge";
|
|
2180
|
+
readonly m4_large: "m4.large";
|
|
2181
|
+
readonly m4_xlarge: "m4.xlarge";
|
|
2182
|
+
readonly m5_12xlarge: "m5.12xlarge";
|
|
2183
|
+
readonly m5_16xlarge: "m5.16xlarge";
|
|
2184
|
+
readonly m5_24xlarge: "m5.24xlarge";
|
|
2185
|
+
readonly m5_2xlarge: "m5.2xlarge";
|
|
2186
|
+
readonly m5_4xlarge: "m5.4xlarge";
|
|
2187
|
+
readonly m5_8xlarge: "m5.8xlarge";
|
|
2188
|
+
readonly m5_large: "m5.large";
|
|
2189
|
+
readonly m5_metal: "m5.metal";
|
|
2190
|
+
readonly m5_xlarge: "m5.xlarge";
|
|
2191
|
+
readonly m5a_12xlarge: "m5a.12xlarge";
|
|
2192
|
+
readonly m5a_16xlarge: "m5a.16xlarge";
|
|
2193
|
+
readonly m5a_24xlarge: "m5a.24xlarge";
|
|
2194
|
+
readonly m5a_2xlarge: "m5a.2xlarge";
|
|
2195
|
+
readonly m5a_4xlarge: "m5a.4xlarge";
|
|
2196
|
+
readonly m5a_8xlarge: "m5a.8xlarge";
|
|
2197
|
+
readonly m5a_large: "m5a.large";
|
|
2198
|
+
readonly m5a_xlarge: "m5a.xlarge";
|
|
2199
|
+
readonly m5ad_12xlarge: "m5ad.12xlarge";
|
|
2200
|
+
readonly m5ad_16xlarge: "m5ad.16xlarge";
|
|
2201
|
+
readonly m5ad_24xlarge: "m5ad.24xlarge";
|
|
2202
|
+
readonly m5ad_2xlarge: "m5ad.2xlarge";
|
|
2203
|
+
readonly m5ad_4xlarge: "m5ad.4xlarge";
|
|
2204
|
+
readonly m5ad_8xlarge: "m5ad.8xlarge";
|
|
2205
|
+
readonly m5ad_large: "m5ad.large";
|
|
2206
|
+
readonly m5ad_xlarge: "m5ad.xlarge";
|
|
2207
|
+
readonly m5d_12xlarge: "m5d.12xlarge";
|
|
2208
|
+
readonly m5d_16xlarge: "m5d.16xlarge";
|
|
2209
|
+
readonly m5d_24xlarge: "m5d.24xlarge";
|
|
2210
|
+
readonly m5d_2xlarge: "m5d.2xlarge";
|
|
2211
|
+
readonly m5d_4xlarge: "m5d.4xlarge";
|
|
2212
|
+
readonly m5d_8xlarge: "m5d.8xlarge";
|
|
2213
|
+
readonly m5d_large: "m5d.large";
|
|
2214
|
+
readonly m5d_metal: "m5d.metal";
|
|
2215
|
+
readonly m5d_xlarge: "m5d.xlarge";
|
|
2216
|
+
readonly m5dn_12xlarge: "m5dn.12xlarge";
|
|
2217
|
+
readonly m5dn_16xlarge: "m5dn.16xlarge";
|
|
2218
|
+
readonly m5dn_24xlarge: "m5dn.24xlarge";
|
|
2219
|
+
readonly m5dn_2xlarge: "m5dn.2xlarge";
|
|
2220
|
+
readonly m5dn_4xlarge: "m5dn.4xlarge";
|
|
2221
|
+
readonly m5dn_8xlarge: "m5dn.8xlarge";
|
|
2222
|
+
readonly m5dn_large: "m5dn.large";
|
|
2223
|
+
readonly m5dn_metal: "m5dn.metal";
|
|
2224
|
+
readonly m5dn_xlarge: "m5dn.xlarge";
|
|
2225
|
+
readonly m5n_12xlarge: "m5n.12xlarge";
|
|
2226
|
+
readonly m5n_16xlarge: "m5n.16xlarge";
|
|
2227
|
+
readonly m5n_24xlarge: "m5n.24xlarge";
|
|
2228
|
+
readonly m5n_2xlarge: "m5n.2xlarge";
|
|
2229
|
+
readonly m5n_4xlarge: "m5n.4xlarge";
|
|
2230
|
+
readonly m5n_8xlarge: "m5n.8xlarge";
|
|
2231
|
+
readonly m5n_large: "m5n.large";
|
|
2232
|
+
readonly m5n_metal: "m5n.metal";
|
|
2233
|
+
readonly m5n_xlarge: "m5n.xlarge";
|
|
2234
|
+
readonly m5zn_12xlarge: "m5zn.12xlarge";
|
|
2235
|
+
readonly m5zn_2xlarge: "m5zn.2xlarge";
|
|
2236
|
+
readonly m5zn_3xlarge: "m5zn.3xlarge";
|
|
2237
|
+
readonly m5zn_6xlarge: "m5zn.6xlarge";
|
|
2238
|
+
readonly m5zn_large: "m5zn.large";
|
|
2239
|
+
readonly m5zn_metal: "m5zn.metal";
|
|
2240
|
+
readonly m5zn_xlarge: "m5zn.xlarge";
|
|
2241
|
+
readonly m6a_12xlarge: "m6a.12xlarge";
|
|
2242
|
+
readonly m6a_16xlarge: "m6a.16xlarge";
|
|
2243
|
+
readonly m6a_24xlarge: "m6a.24xlarge";
|
|
2244
|
+
readonly m6a_2xlarge: "m6a.2xlarge";
|
|
2245
|
+
readonly m6a_32xlarge: "m6a.32xlarge";
|
|
2246
|
+
readonly m6a_48xlarge: "m6a.48xlarge";
|
|
2247
|
+
readonly m6a_4xlarge: "m6a.4xlarge";
|
|
2248
|
+
readonly m6a_8xlarge: "m6a.8xlarge";
|
|
2249
|
+
readonly m6a_large: "m6a.large";
|
|
2250
|
+
readonly m6a_metal: "m6a.metal";
|
|
2251
|
+
readonly m6a_xlarge: "m6a.xlarge";
|
|
2252
|
+
readonly m6g_12xlarge: "m6g.12xlarge";
|
|
2253
|
+
readonly m6g_16xlarge: "m6g.16xlarge";
|
|
2254
|
+
readonly m6g_2xlarge: "m6g.2xlarge";
|
|
2255
|
+
readonly m6g_4xlarge: "m6g.4xlarge";
|
|
2256
|
+
readonly m6g_8xlarge: "m6g.8xlarge";
|
|
2257
|
+
readonly m6g_large: "m6g.large";
|
|
2258
|
+
readonly m6g_medium: "m6g.medium";
|
|
2259
|
+
readonly m6g_metal: "m6g.metal";
|
|
2260
|
+
readonly m6g_xlarge: "m6g.xlarge";
|
|
2261
|
+
readonly m6gd_12xlarge: "m6gd.12xlarge";
|
|
2262
|
+
readonly m6gd_16xlarge: "m6gd.16xlarge";
|
|
2263
|
+
readonly m6gd_2xlarge: "m6gd.2xlarge";
|
|
2264
|
+
readonly m6gd_4xlarge: "m6gd.4xlarge";
|
|
2265
|
+
readonly m6gd_8xlarge: "m6gd.8xlarge";
|
|
2266
|
+
readonly m6gd_large: "m6gd.large";
|
|
2267
|
+
readonly m6gd_medium: "m6gd.medium";
|
|
2268
|
+
readonly m6gd_metal: "m6gd.metal";
|
|
2269
|
+
readonly m6gd_xlarge: "m6gd.xlarge";
|
|
2270
|
+
readonly m6i_12xlarge: "m6i.12xlarge";
|
|
2271
|
+
readonly m6i_16xlarge: "m6i.16xlarge";
|
|
2272
|
+
readonly m6i_24xlarge: "m6i.24xlarge";
|
|
2273
|
+
readonly m6i_2xlarge: "m6i.2xlarge";
|
|
2274
|
+
readonly m6i_32xlarge: "m6i.32xlarge";
|
|
2275
|
+
readonly m6i_4xlarge: "m6i.4xlarge";
|
|
2276
|
+
readonly m6i_8xlarge: "m6i.8xlarge";
|
|
2277
|
+
readonly m6i_large: "m6i.large";
|
|
2278
|
+
readonly m6i_metal: "m6i.metal";
|
|
2279
|
+
readonly m6i_xlarge: "m6i.xlarge";
|
|
2280
|
+
readonly m6id_12xlarge: "m6id.12xlarge";
|
|
2281
|
+
readonly m6id_16xlarge: "m6id.16xlarge";
|
|
2282
|
+
readonly m6id_24xlarge: "m6id.24xlarge";
|
|
2283
|
+
readonly m6id_2xlarge: "m6id.2xlarge";
|
|
2284
|
+
readonly m6id_32xlarge: "m6id.32xlarge";
|
|
2285
|
+
readonly m6id_4xlarge: "m6id.4xlarge";
|
|
2286
|
+
readonly m6id_8xlarge: "m6id.8xlarge";
|
|
2287
|
+
readonly m6id_large: "m6id.large";
|
|
2288
|
+
readonly m6id_metal: "m6id.metal";
|
|
2289
|
+
readonly m6id_xlarge: "m6id.xlarge";
|
|
2290
|
+
readonly m6idn_12xlarge: "m6idn.12xlarge";
|
|
2291
|
+
readonly m6idn_16xlarge: "m6idn.16xlarge";
|
|
2292
|
+
readonly m6idn_24xlarge: "m6idn.24xlarge";
|
|
2293
|
+
readonly m6idn_2xlarge: "m6idn.2xlarge";
|
|
2294
|
+
readonly m6idn_32xlarge: "m6idn.32xlarge";
|
|
2295
|
+
readonly m6idn_4xlarge: "m6idn.4xlarge";
|
|
2296
|
+
readonly m6idn_8xlarge: "m6idn.8xlarge";
|
|
2297
|
+
readonly m6idn_large: "m6idn.large";
|
|
2298
|
+
readonly m6idn_xlarge: "m6idn.xlarge";
|
|
2299
|
+
readonly m6in_12xlarge: "m6in.12xlarge";
|
|
2300
|
+
readonly m6in_16xlarge: "m6in.16xlarge";
|
|
2301
|
+
readonly m6in_24xlarge: "m6in.24xlarge";
|
|
2302
|
+
readonly m6in_2xlarge: "m6in.2xlarge";
|
|
2303
|
+
readonly m6in_32xlarge: "m6in.32xlarge";
|
|
2304
|
+
readonly m6in_4xlarge: "m6in.4xlarge";
|
|
2305
|
+
readonly m6in_8xlarge: "m6in.8xlarge";
|
|
2306
|
+
readonly m6in_large: "m6in.large";
|
|
2307
|
+
readonly m6in_xlarge: "m6in.xlarge";
|
|
2308
|
+
readonly m7g_12xlarge: "m7g.12xlarge";
|
|
2309
|
+
readonly m7g_16xlarge: "m7g.16xlarge";
|
|
2310
|
+
readonly m7g_2xlarge: "m7g.2xlarge";
|
|
2311
|
+
readonly m7g_4xlarge: "m7g.4xlarge";
|
|
2312
|
+
readonly m7g_8xlarge: "m7g.8xlarge";
|
|
2313
|
+
readonly m7g_large: "m7g.large";
|
|
2314
|
+
readonly m7g_medium: "m7g.medium";
|
|
2315
|
+
readonly m7g_metal: "m7g.metal";
|
|
2316
|
+
readonly m7g_xlarge: "m7g.xlarge";
|
|
2317
|
+
readonly mac1_metal: "mac1.metal";
|
|
2318
|
+
readonly mac2_metal: "mac2.metal";
|
|
2319
|
+
readonly p2_16xlarge: "p2.16xlarge";
|
|
2320
|
+
readonly p2_8xlarge: "p2.8xlarge";
|
|
2321
|
+
readonly p2_xlarge: "p2.xlarge";
|
|
2322
|
+
readonly p3_16xlarge: "p3.16xlarge";
|
|
2323
|
+
readonly p3_2xlarge: "p3.2xlarge";
|
|
2324
|
+
readonly p3_8xlarge: "p3.8xlarge";
|
|
2325
|
+
readonly p3dn_24xlarge: "p3dn.24xlarge";
|
|
2326
|
+
readonly p4d_24xlarge: "p4d.24xlarge";
|
|
2327
|
+
readonly p4de_24xlarge: "p4de.24xlarge";
|
|
2328
|
+
readonly r3_2xlarge: "r3.2xlarge";
|
|
2329
|
+
readonly r3_4xlarge: "r3.4xlarge";
|
|
2330
|
+
readonly r3_8xlarge: "r3.8xlarge";
|
|
2331
|
+
readonly r3_large: "r3.large";
|
|
2332
|
+
readonly r3_xlarge: "r3.xlarge";
|
|
2333
|
+
readonly r4_16xlarge: "r4.16xlarge";
|
|
2334
|
+
readonly r4_2xlarge: "r4.2xlarge";
|
|
2335
|
+
readonly r4_4xlarge: "r4.4xlarge";
|
|
2336
|
+
readonly r4_8xlarge: "r4.8xlarge";
|
|
2337
|
+
readonly r4_large: "r4.large";
|
|
2338
|
+
readonly r4_xlarge: "r4.xlarge";
|
|
2339
|
+
readonly r5_12xlarge: "r5.12xlarge";
|
|
2340
|
+
readonly r5_16xlarge: "r5.16xlarge";
|
|
2341
|
+
readonly r5_24xlarge: "r5.24xlarge";
|
|
2342
|
+
readonly r5_2xlarge: "r5.2xlarge";
|
|
2343
|
+
readonly r5_4xlarge: "r5.4xlarge";
|
|
2344
|
+
readonly r5_8xlarge: "r5.8xlarge";
|
|
2345
|
+
readonly r5_large: "r5.large";
|
|
2346
|
+
readonly r5_metal: "r5.metal";
|
|
2347
|
+
readonly r5_xlarge: "r5.xlarge";
|
|
2348
|
+
readonly r5a_12xlarge: "r5a.12xlarge";
|
|
2349
|
+
readonly r5a_16xlarge: "r5a.16xlarge";
|
|
2350
|
+
readonly r5a_24xlarge: "r5a.24xlarge";
|
|
2351
|
+
readonly r5a_2xlarge: "r5a.2xlarge";
|
|
2352
|
+
readonly r5a_4xlarge: "r5a.4xlarge";
|
|
2353
|
+
readonly r5a_8xlarge: "r5a.8xlarge";
|
|
2354
|
+
readonly r5a_large: "r5a.large";
|
|
2355
|
+
readonly r5a_xlarge: "r5a.xlarge";
|
|
2356
|
+
readonly r5ad_12xlarge: "r5ad.12xlarge";
|
|
2357
|
+
readonly r5ad_16xlarge: "r5ad.16xlarge";
|
|
2358
|
+
readonly r5ad_24xlarge: "r5ad.24xlarge";
|
|
2359
|
+
readonly r5ad_2xlarge: "r5ad.2xlarge";
|
|
2360
|
+
readonly r5ad_4xlarge: "r5ad.4xlarge";
|
|
2361
|
+
readonly r5ad_8xlarge: "r5ad.8xlarge";
|
|
2362
|
+
readonly r5ad_large: "r5ad.large";
|
|
2363
|
+
readonly r5ad_xlarge: "r5ad.xlarge";
|
|
2364
|
+
readonly r5b_12xlarge: "r5b.12xlarge";
|
|
2365
|
+
readonly r5b_16xlarge: "r5b.16xlarge";
|
|
2366
|
+
readonly r5b_24xlarge: "r5b.24xlarge";
|
|
2367
|
+
readonly r5b_2xlarge: "r5b.2xlarge";
|
|
2368
|
+
readonly r5b_4xlarge: "r5b.4xlarge";
|
|
2369
|
+
readonly r5b_8xlarge: "r5b.8xlarge";
|
|
2370
|
+
readonly r5b_large: "r5b.large";
|
|
2371
|
+
readonly r5b_metal: "r5b.metal";
|
|
2372
|
+
readonly r5b_xlarge: "r5b.xlarge";
|
|
2373
|
+
readonly r5d_12xlarge: "r5d.12xlarge";
|
|
2374
|
+
readonly r5d_16xlarge: "r5d.16xlarge";
|
|
2375
|
+
readonly r5d_24xlarge: "r5d.24xlarge";
|
|
2376
|
+
readonly r5d_2xlarge: "r5d.2xlarge";
|
|
2377
|
+
readonly r5d_4xlarge: "r5d.4xlarge";
|
|
2378
|
+
readonly r5d_8xlarge: "r5d.8xlarge";
|
|
2379
|
+
readonly r5d_large: "r5d.large";
|
|
2380
|
+
readonly r5d_metal: "r5d.metal";
|
|
2381
|
+
readonly r5d_xlarge: "r5d.xlarge";
|
|
2382
|
+
readonly r5dn_12xlarge: "r5dn.12xlarge";
|
|
2383
|
+
readonly r5dn_16xlarge: "r5dn.16xlarge";
|
|
2384
|
+
readonly r5dn_24xlarge: "r5dn.24xlarge";
|
|
2385
|
+
readonly r5dn_2xlarge: "r5dn.2xlarge";
|
|
2386
|
+
readonly r5dn_4xlarge: "r5dn.4xlarge";
|
|
2387
|
+
readonly r5dn_8xlarge: "r5dn.8xlarge";
|
|
2388
|
+
readonly r5dn_large: "r5dn.large";
|
|
2389
|
+
readonly r5dn_metal: "r5dn.metal";
|
|
2390
|
+
readonly r5dn_xlarge: "r5dn.xlarge";
|
|
2391
|
+
readonly r5n_12xlarge: "r5n.12xlarge";
|
|
2392
|
+
readonly r5n_16xlarge: "r5n.16xlarge";
|
|
2393
|
+
readonly r5n_24xlarge: "r5n.24xlarge";
|
|
2394
|
+
readonly r5n_2xlarge: "r5n.2xlarge";
|
|
2395
|
+
readonly r5n_4xlarge: "r5n.4xlarge";
|
|
2396
|
+
readonly r5n_8xlarge: "r5n.8xlarge";
|
|
2397
|
+
readonly r5n_large: "r5n.large";
|
|
2398
|
+
readonly r5n_metal: "r5n.metal";
|
|
2399
|
+
readonly r5n_xlarge: "r5n.xlarge";
|
|
2400
|
+
readonly r6a_12xlarge: "r6a.12xlarge";
|
|
2401
|
+
readonly r6a_16xlarge: "r6a.16xlarge";
|
|
2402
|
+
readonly r6a_24xlarge: "r6a.24xlarge";
|
|
2403
|
+
readonly r6a_2xlarge: "r6a.2xlarge";
|
|
2404
|
+
readonly r6a_32xlarge: "r6a.32xlarge";
|
|
2405
|
+
readonly r6a_48xlarge: "r6a.48xlarge";
|
|
2406
|
+
readonly r6a_4xlarge: "r6a.4xlarge";
|
|
2407
|
+
readonly r6a_8xlarge: "r6a.8xlarge";
|
|
2408
|
+
readonly r6a_large: "r6a.large";
|
|
2409
|
+
readonly r6a_metal: "r6a.metal";
|
|
2410
|
+
readonly r6a_xlarge: "r6a.xlarge";
|
|
2411
|
+
readonly r6g_12xlarge: "r6g.12xlarge";
|
|
2412
|
+
readonly r6g_16xlarge: "r6g.16xlarge";
|
|
2413
|
+
readonly r6g_2xlarge: "r6g.2xlarge";
|
|
2414
|
+
readonly r6g_4xlarge: "r6g.4xlarge";
|
|
2415
|
+
readonly r6g_8xlarge: "r6g.8xlarge";
|
|
2416
|
+
readonly r6g_large: "r6g.large";
|
|
2417
|
+
readonly r6g_medium: "r6g.medium";
|
|
2418
|
+
readonly r6g_metal: "r6g.metal";
|
|
2419
|
+
readonly r6g_xlarge: "r6g.xlarge";
|
|
2420
|
+
readonly r6gd_12xlarge: "r6gd.12xlarge";
|
|
2421
|
+
readonly r6gd_16xlarge: "r6gd.16xlarge";
|
|
2422
|
+
readonly r6gd_2xlarge: "r6gd.2xlarge";
|
|
2423
|
+
readonly r6gd_4xlarge: "r6gd.4xlarge";
|
|
2424
|
+
readonly r6gd_8xlarge: "r6gd.8xlarge";
|
|
2425
|
+
readonly r6gd_large: "r6gd.large";
|
|
2426
|
+
readonly r6gd_medium: "r6gd.medium";
|
|
2427
|
+
readonly r6gd_metal: "r6gd.metal";
|
|
2428
|
+
readonly r6gd_xlarge: "r6gd.xlarge";
|
|
2429
|
+
readonly r6i_12xlarge: "r6i.12xlarge";
|
|
2430
|
+
readonly r6i_16xlarge: "r6i.16xlarge";
|
|
2431
|
+
readonly r6i_24xlarge: "r6i.24xlarge";
|
|
2432
|
+
readonly r6i_2xlarge: "r6i.2xlarge";
|
|
2433
|
+
readonly r6i_32xlarge: "r6i.32xlarge";
|
|
2434
|
+
readonly r6i_4xlarge: "r6i.4xlarge";
|
|
2435
|
+
readonly r6i_8xlarge: "r6i.8xlarge";
|
|
2436
|
+
readonly r6i_large: "r6i.large";
|
|
2437
|
+
readonly r6i_metal: "r6i.metal";
|
|
2438
|
+
readonly r6i_xlarge: "r6i.xlarge";
|
|
2439
|
+
readonly r6id_12xlarge: "r6id.12xlarge";
|
|
2440
|
+
readonly r6id_16xlarge: "r6id.16xlarge";
|
|
2441
|
+
readonly r6id_24xlarge: "r6id.24xlarge";
|
|
2442
|
+
readonly r6id_2xlarge: "r6id.2xlarge";
|
|
2443
|
+
readonly r6id_32xlarge: "r6id.32xlarge";
|
|
2444
|
+
readonly r6id_4xlarge: "r6id.4xlarge";
|
|
2445
|
+
readonly r6id_8xlarge: "r6id.8xlarge";
|
|
2446
|
+
readonly r6id_large: "r6id.large";
|
|
2447
|
+
readonly r6id_metal: "r6id.metal";
|
|
2448
|
+
readonly r6id_xlarge: "r6id.xlarge";
|
|
2449
|
+
readonly r6idn_12xlarge: "r6idn.12xlarge";
|
|
2450
|
+
readonly r6idn_16xlarge: "r6idn.16xlarge";
|
|
2451
|
+
readonly r6idn_24xlarge: "r6idn.24xlarge";
|
|
2452
|
+
readonly r6idn_2xlarge: "r6idn.2xlarge";
|
|
2453
|
+
readonly r6idn_32xlarge: "r6idn.32xlarge";
|
|
2454
|
+
readonly r6idn_4xlarge: "r6idn.4xlarge";
|
|
2455
|
+
readonly r6idn_8xlarge: "r6idn.8xlarge";
|
|
2456
|
+
readonly r6idn_large: "r6idn.large";
|
|
2457
|
+
readonly r6idn_xlarge: "r6idn.xlarge";
|
|
2458
|
+
readonly r6in_12xlarge: "r6in.12xlarge";
|
|
2459
|
+
readonly r6in_16xlarge: "r6in.16xlarge";
|
|
2460
|
+
readonly r6in_24xlarge: "r6in.24xlarge";
|
|
2461
|
+
readonly r6in_2xlarge: "r6in.2xlarge";
|
|
2462
|
+
readonly r6in_32xlarge: "r6in.32xlarge";
|
|
2463
|
+
readonly r6in_4xlarge: "r6in.4xlarge";
|
|
2464
|
+
readonly r6in_8xlarge: "r6in.8xlarge";
|
|
2465
|
+
readonly r6in_large: "r6in.large";
|
|
2466
|
+
readonly r6in_xlarge: "r6in.xlarge";
|
|
2467
|
+
readonly r7g_12xlarge: "r7g.12xlarge";
|
|
2468
|
+
readonly r7g_16xlarge: "r7g.16xlarge";
|
|
2469
|
+
readonly r7g_2xlarge: "r7g.2xlarge";
|
|
2470
|
+
readonly r7g_4xlarge: "r7g.4xlarge";
|
|
2471
|
+
readonly r7g_8xlarge: "r7g.8xlarge";
|
|
2472
|
+
readonly r7g_large: "r7g.large";
|
|
2473
|
+
readonly r7g_medium: "r7g.medium";
|
|
2474
|
+
readonly r7g_metal: "r7g.metal";
|
|
2475
|
+
readonly r7g_xlarge: "r7g.xlarge";
|
|
2476
|
+
readonly t1_micro: "t1.micro";
|
|
2477
|
+
readonly t2_2xlarge: "t2.2xlarge";
|
|
2478
|
+
readonly t2_large: "t2.large";
|
|
2479
|
+
readonly t2_medium: "t2.medium";
|
|
2480
|
+
readonly t2_micro: "t2.micro";
|
|
2481
|
+
readonly t2_nano: "t2.nano";
|
|
2482
|
+
readonly t2_small: "t2.small";
|
|
2483
|
+
readonly t2_xlarge: "t2.xlarge";
|
|
2484
|
+
readonly t3_2xlarge: "t3.2xlarge";
|
|
2485
|
+
readonly t3_large: "t3.large";
|
|
2486
|
+
readonly t3_medium: "t3.medium";
|
|
2487
|
+
readonly t3_micro: "t3.micro";
|
|
2488
|
+
readonly t3_nano: "t3.nano";
|
|
2489
|
+
readonly t3_small: "t3.small";
|
|
2490
|
+
readonly t3_xlarge: "t3.xlarge";
|
|
2491
|
+
readonly t3a_2xlarge: "t3a.2xlarge";
|
|
2492
|
+
readonly t3a_large: "t3a.large";
|
|
2493
|
+
readonly t3a_medium: "t3a.medium";
|
|
2494
|
+
readonly t3a_micro: "t3a.micro";
|
|
2495
|
+
readonly t3a_nano: "t3a.nano";
|
|
2496
|
+
readonly t3a_small: "t3a.small";
|
|
2497
|
+
readonly t3a_xlarge: "t3a.xlarge";
|
|
2498
|
+
readonly t4g_2xlarge: "t4g.2xlarge";
|
|
2499
|
+
readonly t4g_large: "t4g.large";
|
|
2500
|
+
readonly t4g_medium: "t4g.medium";
|
|
2501
|
+
readonly t4g_micro: "t4g.micro";
|
|
2502
|
+
readonly t4g_nano: "t4g.nano";
|
|
2503
|
+
readonly t4g_small: "t4g.small";
|
|
2504
|
+
readonly t4g_xlarge: "t4g.xlarge";
|
|
2505
|
+
readonly trn1_2xlarge: "trn1.2xlarge";
|
|
2506
|
+
readonly trn1_32xlarge: "trn1.32xlarge";
|
|
2507
|
+
readonly u_12tb1_112xlarge: "u-12tb1.112xlarge";
|
|
2508
|
+
readonly u_12tb1_metal: "u-12tb1.metal";
|
|
2509
|
+
readonly u_18tb1_112xlarge: "u-18tb1.112xlarge";
|
|
2510
|
+
readonly u_18tb1_metal: "u-18tb1.metal";
|
|
2511
|
+
readonly u_24tb1_112xlarge: "u-24tb1.112xlarge";
|
|
2512
|
+
readonly u_24tb1_metal: "u-24tb1.metal";
|
|
2513
|
+
readonly u_3tb1_56xlarge: "u-3tb1.56xlarge";
|
|
2514
|
+
readonly u_6tb1_112xlarge: "u-6tb1.112xlarge";
|
|
2515
|
+
readonly u_6tb1_56xlarge: "u-6tb1.56xlarge";
|
|
2516
|
+
readonly u_6tb1_metal: "u-6tb1.metal";
|
|
2517
|
+
readonly u_9tb1_112xlarge: "u-9tb1.112xlarge";
|
|
2518
|
+
readonly u_9tb1_metal: "u-9tb1.metal";
|
|
2519
|
+
readonly vt1_24xlarge: "vt1.24xlarge";
|
|
2520
|
+
readonly vt1_3xlarge: "vt1.3xlarge";
|
|
2521
|
+
readonly vt1_6xlarge: "vt1.6xlarge";
|
|
2522
|
+
readonly x1_16xlarge: "x1.16xlarge";
|
|
2523
|
+
readonly x1_32xlarge: "x1.32xlarge";
|
|
2524
|
+
readonly x1e_16xlarge: "x1e.16xlarge";
|
|
2525
|
+
readonly x1e_2xlarge: "x1e.2xlarge";
|
|
2526
|
+
readonly x1e_32xlarge: "x1e.32xlarge";
|
|
2527
|
+
readonly x1e_4xlarge: "x1e.4xlarge";
|
|
2528
|
+
readonly x1e_8xlarge: "x1e.8xlarge";
|
|
2529
|
+
readonly x1e_xlarge: "x1e.xlarge";
|
|
2530
|
+
readonly x2gd_12xlarge: "x2gd.12xlarge";
|
|
2531
|
+
readonly x2gd_16xlarge: "x2gd.16xlarge";
|
|
2532
|
+
readonly x2gd_2xlarge: "x2gd.2xlarge";
|
|
2533
|
+
readonly x2gd_4xlarge: "x2gd.4xlarge";
|
|
2534
|
+
readonly x2gd_8xlarge: "x2gd.8xlarge";
|
|
2535
|
+
readonly x2gd_large: "x2gd.large";
|
|
2536
|
+
readonly x2gd_medium: "x2gd.medium";
|
|
2537
|
+
readonly x2gd_metal: "x2gd.metal";
|
|
2538
|
+
readonly x2gd_xlarge: "x2gd.xlarge";
|
|
2539
|
+
readonly x2idn_16xlarge: "x2idn.16xlarge";
|
|
2540
|
+
readonly x2idn_24xlarge: "x2idn.24xlarge";
|
|
2541
|
+
readonly x2idn_32xlarge: "x2idn.32xlarge";
|
|
2542
|
+
readonly x2idn_metal: "x2idn.metal";
|
|
2543
|
+
readonly x2iedn_16xlarge: "x2iedn.16xlarge";
|
|
2544
|
+
readonly x2iedn_24xlarge: "x2iedn.24xlarge";
|
|
2545
|
+
readonly x2iedn_2xlarge: "x2iedn.2xlarge";
|
|
2546
|
+
readonly x2iedn_32xlarge: "x2iedn.32xlarge";
|
|
2547
|
+
readonly x2iedn_4xlarge: "x2iedn.4xlarge";
|
|
2548
|
+
readonly x2iedn_8xlarge: "x2iedn.8xlarge";
|
|
2549
|
+
readonly x2iedn_metal: "x2iedn.metal";
|
|
2550
|
+
readonly x2iedn_xlarge: "x2iedn.xlarge";
|
|
2551
|
+
readonly x2iezn_12xlarge: "x2iezn.12xlarge";
|
|
2552
|
+
readonly x2iezn_2xlarge: "x2iezn.2xlarge";
|
|
2553
|
+
readonly x2iezn_4xlarge: "x2iezn.4xlarge";
|
|
2554
|
+
readonly x2iezn_6xlarge: "x2iezn.6xlarge";
|
|
2555
|
+
readonly x2iezn_8xlarge: "x2iezn.8xlarge";
|
|
2556
|
+
readonly x2iezn_metal: "x2iezn.metal";
|
|
2557
|
+
readonly z1d_12xlarge: "z1d.12xlarge";
|
|
2558
|
+
readonly z1d_2xlarge: "z1d.2xlarge";
|
|
2559
|
+
readonly z1d_3xlarge: "z1d.3xlarge";
|
|
2560
|
+
readonly z1d_6xlarge: "z1d.6xlarge";
|
|
2561
|
+
readonly z1d_large: "z1d.large";
|
|
2562
|
+
readonly z1d_metal: "z1d.metal";
|
|
2563
|
+
readonly z1d_xlarge: "z1d.xlarge";
|
|
2564
|
+
};
|
|
2565
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
2452
2566
|
export interface ReservationFleetInstanceSpecification {
|
|
2453
2567
|
InstanceType?: _InstanceType | string;
|
|
2454
2568
|
InstancePlatform?: CapacityReservationInstancePlatform | string;
|
|
@@ -2458,9 +2572,11 @@ export interface ReservationFleetInstanceSpecification {
|
|
|
2458
2572
|
EbsOptimized?: boolean;
|
|
2459
2573
|
Priority?: number;
|
|
2460
2574
|
}
|
|
2461
|
-
export declare
|
|
2462
|
-
default
|
|
2463
|
-
}
|
|
2575
|
+
export declare const FleetCapacityReservationTenancy: {
|
|
2576
|
+
readonly default: "default";
|
|
2577
|
+
};
|
|
2578
|
+
export type FleetCapacityReservationTenancy =
|
|
2579
|
+
(typeof FleetCapacityReservationTenancy)[keyof typeof FleetCapacityReservationTenancy];
|
|
2464
2580
|
export interface CreateCapacityReservationFleetRequest {
|
|
2465
2581
|
AllocationStrategy?: string;
|
|
2466
2582
|
ClientToken?: string;
|
|
@@ -2506,12 +2622,14 @@ export interface CreateCarrierGatewayRequest {
|
|
|
2506
2622
|
DryRun?: boolean;
|
|
2507
2623
|
ClientToken?: string;
|
|
2508
2624
|
}
|
|
2509
|
-
export declare
|
|
2510
|
-
available
|
|
2511
|
-
deleted
|
|
2512
|
-
deleting
|
|
2513
|
-
pending
|
|
2514
|
-
}
|
|
2625
|
+
export declare const CarrierGatewayState: {
|
|
2626
|
+
readonly available: "available";
|
|
2627
|
+
readonly deleted: "deleted";
|
|
2628
|
+
readonly deleting: "deleting";
|
|
2629
|
+
readonly pending: "pending";
|
|
2630
|
+
};
|
|
2631
|
+
export type CarrierGatewayState =
|
|
2632
|
+
(typeof CarrierGatewayState)[keyof typeof CarrierGatewayState];
|
|
2515
2633
|
export interface CarrierGateway {
|
|
2516
2634
|
CarrierGatewayId?: string;
|
|
2517
2635
|
VpcId?: string;
|