@aws-sdk/client-ec2 3.301.0 → 3.304.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 +388 -198
- package/dist-types/models/models_5.d.ts +214 -192
- package/dist-types/models/models_6.d.ts +299 -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
|
@@ -36,27 +36,37 @@ export interface AcceleratorCountRequest {
|
|
|
36
36
|
}
|
|
37
37
|
/**
|
|
38
38
|
* @public
|
|
39
|
+
* @enum
|
|
39
40
|
*/
|
|
40
|
-
export declare
|
|
41
|
-
AMAZON_WEB_SERVICES
|
|
42
|
-
AMD
|
|
43
|
-
NVIDIA
|
|
44
|
-
XILINX
|
|
45
|
-
}
|
|
41
|
+
export declare const AcceleratorManufacturer: {
|
|
42
|
+
readonly AMAZON_WEB_SERVICES: "amazon-web-services";
|
|
43
|
+
readonly AMD: "amd";
|
|
44
|
+
readonly NVIDIA: "nvidia";
|
|
45
|
+
readonly XILINX: "xilinx";
|
|
46
|
+
};
|
|
46
47
|
/**
|
|
47
48
|
* @public
|
|
48
49
|
*/
|
|
49
|
-
export
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
50
|
+
export type AcceleratorManufacturer = (typeof AcceleratorManufacturer)[keyof typeof AcceleratorManufacturer];
|
|
51
|
+
/**
|
|
52
|
+
* @public
|
|
53
|
+
* @enum
|
|
54
|
+
*/
|
|
55
|
+
export declare const AcceleratorName: {
|
|
56
|
+
readonly A100: "a100";
|
|
57
|
+
readonly INFERENTIA: "inferentia";
|
|
58
|
+
readonly K520: "k520";
|
|
59
|
+
readonly K80: "k80";
|
|
60
|
+
readonly M60: "m60";
|
|
61
|
+
readonly RADEON_PRO_V520: "radeon-pro-v520";
|
|
62
|
+
readonly T4: "t4";
|
|
63
|
+
readonly V100: "v100";
|
|
64
|
+
readonly VU9P: "vu9p";
|
|
65
|
+
};
|
|
66
|
+
/**
|
|
67
|
+
* @public
|
|
68
|
+
*/
|
|
69
|
+
export type AcceleratorName = (typeof AcceleratorName)[keyof typeof AcceleratorName];
|
|
60
70
|
/**
|
|
61
71
|
* @public
|
|
62
72
|
* <p>The minimum and maximum amount of total accelerator memory, in MiB.</p>
|
|
@@ -91,102 +101,112 @@ export interface AcceleratorTotalMemoryMiBRequest {
|
|
|
91
101
|
}
|
|
92
102
|
/**
|
|
93
103
|
* @public
|
|
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
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
104
|
+
* @enum
|
|
105
|
+
*/
|
|
106
|
+
export declare const AcceleratorType: {
|
|
107
|
+
readonly FPGA: "fpga";
|
|
108
|
+
readonly GPU: "gpu";
|
|
109
|
+
readonly INFERENCE: "inference";
|
|
110
|
+
};
|
|
111
|
+
/**
|
|
112
|
+
* @public
|
|
113
|
+
*/
|
|
114
|
+
export type AcceleratorType = (typeof AcceleratorType)[keyof typeof AcceleratorType];
|
|
115
|
+
/**
|
|
116
|
+
* @public
|
|
117
|
+
* @enum
|
|
118
|
+
*/
|
|
119
|
+
export declare const ResourceType: {
|
|
120
|
+
readonly capacity_reservation: "capacity-reservation";
|
|
121
|
+
readonly capacity_reservation_fleet: "capacity-reservation-fleet";
|
|
122
|
+
readonly carrier_gateway: "carrier-gateway";
|
|
123
|
+
readonly client_vpn_endpoint: "client-vpn-endpoint";
|
|
124
|
+
readonly coip_pool: "coip-pool";
|
|
125
|
+
readonly customer_gateway: "customer-gateway";
|
|
126
|
+
readonly dedicated_host: "dedicated-host";
|
|
127
|
+
readonly dhcp_options: "dhcp-options";
|
|
128
|
+
readonly egress_only_internet_gateway: "egress-only-internet-gateway";
|
|
129
|
+
readonly elastic_gpu: "elastic-gpu";
|
|
130
|
+
readonly elastic_ip: "elastic-ip";
|
|
131
|
+
readonly export_image_task: "export-image-task";
|
|
132
|
+
readonly export_instance_task: "export-instance-task";
|
|
133
|
+
readonly fleet: "fleet";
|
|
134
|
+
readonly fpga_image: "fpga-image";
|
|
135
|
+
readonly host_reservation: "host-reservation";
|
|
136
|
+
readonly image: "image";
|
|
137
|
+
readonly import_image_task: "import-image-task";
|
|
138
|
+
readonly import_snapshot_task: "import-snapshot-task";
|
|
139
|
+
readonly instance: "instance";
|
|
140
|
+
readonly instance_event_window: "instance-event-window";
|
|
141
|
+
readonly internet_gateway: "internet-gateway";
|
|
142
|
+
readonly ipam: "ipam";
|
|
143
|
+
readonly ipam_pool: "ipam-pool";
|
|
144
|
+
readonly ipam_resource_discovery: "ipam-resource-discovery";
|
|
145
|
+
readonly ipam_resource_discovery_association: "ipam-resource-discovery-association";
|
|
146
|
+
readonly ipam_scope: "ipam-scope";
|
|
147
|
+
readonly ipv4pool_ec2: "ipv4pool-ec2";
|
|
148
|
+
readonly ipv6pool_ec2: "ipv6pool-ec2";
|
|
149
|
+
readonly key_pair: "key-pair";
|
|
150
|
+
readonly launch_template: "launch-template";
|
|
151
|
+
readonly local_gateway: "local-gateway";
|
|
152
|
+
readonly local_gateway_route_table: "local-gateway-route-table";
|
|
153
|
+
readonly local_gateway_route_table_virtual_interface_group_association: "local-gateway-route-table-virtual-interface-group-association";
|
|
154
|
+
readonly local_gateway_route_table_vpc_association: "local-gateway-route-table-vpc-association";
|
|
155
|
+
readonly local_gateway_virtual_interface: "local-gateway-virtual-interface";
|
|
156
|
+
readonly local_gateway_virtual_interface_group: "local-gateway-virtual-interface-group";
|
|
157
|
+
readonly natgateway: "natgateway";
|
|
158
|
+
readonly network_acl: "network-acl";
|
|
159
|
+
readonly network_insights_access_scope: "network-insights-access-scope";
|
|
160
|
+
readonly network_insights_access_scope_analysis: "network-insights-access-scope-analysis";
|
|
161
|
+
readonly network_insights_analysis: "network-insights-analysis";
|
|
162
|
+
readonly network_insights_path: "network-insights-path";
|
|
163
|
+
readonly network_interface: "network-interface";
|
|
164
|
+
readonly placement_group: "placement-group";
|
|
165
|
+
readonly prefix_list: "prefix-list";
|
|
166
|
+
readonly replace_root_volume_task: "replace-root-volume-task";
|
|
167
|
+
readonly reserved_instances: "reserved-instances";
|
|
168
|
+
readonly route_table: "route-table";
|
|
169
|
+
readonly security_group: "security-group";
|
|
170
|
+
readonly security_group_rule: "security-group-rule";
|
|
171
|
+
readonly snapshot: "snapshot";
|
|
172
|
+
readonly spot_fleet_request: "spot-fleet-request";
|
|
173
|
+
readonly spot_instances_request: "spot-instances-request";
|
|
174
|
+
readonly subnet: "subnet";
|
|
175
|
+
readonly subnet_cidr_reservation: "subnet-cidr-reservation";
|
|
176
|
+
readonly traffic_mirror_filter: "traffic-mirror-filter";
|
|
177
|
+
readonly traffic_mirror_filter_rule: "traffic-mirror-filter-rule";
|
|
178
|
+
readonly traffic_mirror_session: "traffic-mirror-session";
|
|
179
|
+
readonly traffic_mirror_target: "traffic-mirror-target";
|
|
180
|
+
readonly transit_gateway: "transit-gateway";
|
|
181
|
+
readonly transit_gateway_attachment: "transit-gateway-attachment";
|
|
182
|
+
readonly transit_gateway_connect_peer: "transit-gateway-connect-peer";
|
|
183
|
+
readonly transit_gateway_multicast_domain: "transit-gateway-multicast-domain";
|
|
184
|
+
readonly transit_gateway_policy_table: "transit-gateway-policy-table";
|
|
185
|
+
readonly transit_gateway_route_table: "transit-gateway-route-table";
|
|
186
|
+
readonly transit_gateway_route_table_announcement: "transit-gateway-route-table-announcement";
|
|
187
|
+
readonly verified_access_endpoint: "verified-access-endpoint";
|
|
188
|
+
readonly verified_access_group: "verified-access-group";
|
|
189
|
+
readonly verified_access_instance: "verified-access-instance";
|
|
190
|
+
readonly verified_access_policy: "verified-access-policy";
|
|
191
|
+
readonly verified_access_trust_provider: "verified-access-trust-provider";
|
|
192
|
+
readonly volume: "volume";
|
|
193
|
+
readonly vpc: "vpc";
|
|
194
|
+
readonly vpc_block_public_access_exclusion: "vpc-block-public-access-exclusion";
|
|
195
|
+
readonly vpc_endpoint: "vpc-endpoint";
|
|
196
|
+
readonly vpc_endpoint_connection: "vpc-endpoint-connection";
|
|
197
|
+
readonly vpc_endpoint_connection_device_type: "vpc-endpoint-connection-device-type";
|
|
198
|
+
readonly vpc_endpoint_service: "vpc-endpoint-service";
|
|
199
|
+
readonly vpc_endpoint_service_permission: "vpc-endpoint-service-permission";
|
|
200
|
+
readonly vpc_flow_log: "vpc-flow-log";
|
|
201
|
+
readonly vpc_peering_connection: "vpc-peering-connection";
|
|
202
|
+
readonly vpn_connection: "vpn-connection";
|
|
203
|
+
readonly vpn_connection_device_type: "vpn-connection-device-type";
|
|
204
|
+
readonly vpn_gateway: "vpn-gateway";
|
|
205
|
+
};
|
|
206
|
+
/**
|
|
207
|
+
* @public
|
|
208
|
+
*/
|
|
209
|
+
export type ResourceType = (typeof ResourceType)[keyof typeof ResourceType];
|
|
190
210
|
/**
|
|
191
211
|
* @public
|
|
192
212
|
* <p>Describes a tag.</p>
|
|
@@ -248,12 +268,17 @@ export interface AcceptAddressTransferRequest {
|
|
|
248
268
|
}
|
|
249
269
|
/**
|
|
250
270
|
* @public
|
|
271
|
+
* @enum
|
|
251
272
|
*/
|
|
252
|
-
export declare
|
|
253
|
-
accepted
|
|
254
|
-
disabled
|
|
255
|
-
pending
|
|
256
|
-
}
|
|
273
|
+
export declare const AddressTransferStatus: {
|
|
274
|
+
readonly accepted: "accepted";
|
|
275
|
+
readonly disabled: "disabled";
|
|
276
|
+
readonly pending: "pending";
|
|
277
|
+
};
|
|
278
|
+
/**
|
|
279
|
+
* @public
|
|
280
|
+
*/
|
|
281
|
+
export type AddressTransferStatus = (typeof AddressTransferStatus)[keyof typeof AddressTransferStatus];
|
|
257
282
|
/**
|
|
258
283
|
* @public
|
|
259
284
|
* <p>Details on the Elastic IP address transfer. For more information, see <a href="https://docs.aws.amazon.com/vpc/latest/userguide/vpc-eips.html#transfer-EIPs-intro">Transfer Elastic IP addresses</a> in the <i>Amazon Virtual Private Cloud User Guide</i>.</p>
|
|
@@ -367,27 +392,37 @@ export interface AcceptTransitGatewayMulticastDomainAssociationsRequest {
|
|
|
367
392
|
}
|
|
368
393
|
/**
|
|
369
394
|
* @public
|
|
395
|
+
* @enum
|
|
370
396
|
*/
|
|
371
|
-
export declare
|
|
372
|
-
connect
|
|
373
|
-
direct_connect_gateway
|
|
374
|
-
peering
|
|
375
|
-
tgw_peering
|
|
376
|
-
vpc
|
|
377
|
-
vpn
|
|
378
|
-
}
|
|
397
|
+
export declare const TransitGatewayAttachmentResourceType: {
|
|
398
|
+
readonly connect: "connect";
|
|
399
|
+
readonly direct_connect_gateway: "direct-connect-gateway";
|
|
400
|
+
readonly peering: "peering";
|
|
401
|
+
readonly tgw_peering: "tgw-peering";
|
|
402
|
+
readonly vpc: "vpc";
|
|
403
|
+
readonly vpn: "vpn";
|
|
404
|
+
};
|
|
379
405
|
/**
|
|
380
406
|
* @public
|
|
381
407
|
*/
|
|
382
|
-
export
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
|
|
390
|
-
|
|
408
|
+
export type TransitGatewayAttachmentResourceType = (typeof TransitGatewayAttachmentResourceType)[keyof typeof TransitGatewayAttachmentResourceType];
|
|
409
|
+
/**
|
|
410
|
+
* @public
|
|
411
|
+
* @enum
|
|
412
|
+
*/
|
|
413
|
+
export declare const TransitGatewayMulitcastDomainAssociationState: {
|
|
414
|
+
readonly associated: "associated";
|
|
415
|
+
readonly associating: "associating";
|
|
416
|
+
readonly disassociated: "disassociated";
|
|
417
|
+
readonly disassociating: "disassociating";
|
|
418
|
+
readonly failed: "failed";
|
|
419
|
+
readonly pendingAcceptance: "pendingAcceptance";
|
|
420
|
+
readonly rejected: "rejected";
|
|
421
|
+
};
|
|
422
|
+
/**
|
|
423
|
+
* @public
|
|
424
|
+
*/
|
|
425
|
+
export type TransitGatewayMulitcastDomainAssociationState = (typeof TransitGatewayMulitcastDomainAssociationState)[keyof typeof TransitGatewayMulitcastDomainAssociationState];
|
|
391
426
|
/**
|
|
392
427
|
* @public
|
|
393
428
|
* <p>Describes the subnet association with the transit gateway multicast domain.</p>
|
|
@@ -480,11 +515,16 @@ export interface PeeringTgwInfo {
|
|
|
480
515
|
}
|
|
481
516
|
/**
|
|
482
517
|
* @public
|
|
518
|
+
* @enum
|
|
483
519
|
*/
|
|
484
|
-
export declare
|
|
485
|
-
disable
|
|
486
|
-
enable
|
|
487
|
-
}
|
|
520
|
+
export declare const DynamicRoutingValue: {
|
|
521
|
+
readonly disable: "disable";
|
|
522
|
+
readonly enable: "enable";
|
|
523
|
+
};
|
|
524
|
+
/**
|
|
525
|
+
* @public
|
|
526
|
+
*/
|
|
527
|
+
export type DynamicRoutingValue = (typeof DynamicRoutingValue)[keyof typeof DynamicRoutingValue];
|
|
488
528
|
/**
|
|
489
529
|
* @public
|
|
490
530
|
* <p>Describes dynamic routing for the transit gateway peering attachment.</p>
|
|
@@ -497,22 +537,27 @@ export interface TransitGatewayPeeringAttachmentOptions {
|
|
|
497
537
|
}
|
|
498
538
|
/**
|
|
499
539
|
* @public
|
|
540
|
+
* @enum
|
|
500
541
|
*/
|
|
501
|
-
export declare
|
|
502
|
-
available
|
|
503
|
-
deleted
|
|
504
|
-
deleting
|
|
505
|
-
failed
|
|
506
|
-
failing
|
|
507
|
-
initiating
|
|
508
|
-
initiatingRequest
|
|
509
|
-
modifying
|
|
510
|
-
pending
|
|
511
|
-
pendingAcceptance
|
|
512
|
-
rejected
|
|
513
|
-
rejecting
|
|
514
|
-
rollingBack
|
|
515
|
-
}
|
|
542
|
+
export declare const TransitGatewayAttachmentState: {
|
|
543
|
+
readonly available: "available";
|
|
544
|
+
readonly deleted: "deleted";
|
|
545
|
+
readonly deleting: "deleting";
|
|
546
|
+
readonly failed: "failed";
|
|
547
|
+
readonly failing: "failing";
|
|
548
|
+
readonly initiating: "initiating";
|
|
549
|
+
readonly initiatingRequest: "initiatingRequest";
|
|
550
|
+
readonly modifying: "modifying";
|
|
551
|
+
readonly pending: "pending";
|
|
552
|
+
readonly pendingAcceptance: "pendingAcceptance";
|
|
553
|
+
readonly rejected: "rejected";
|
|
554
|
+
readonly rejecting: "rejecting";
|
|
555
|
+
readonly rollingBack: "rollingBack";
|
|
556
|
+
};
|
|
557
|
+
/**
|
|
558
|
+
* @public
|
|
559
|
+
*/
|
|
560
|
+
export type TransitGatewayAttachmentState = (typeof TransitGatewayAttachmentState)[keyof typeof TransitGatewayAttachmentState];
|
|
516
561
|
/**
|
|
517
562
|
* @public
|
|
518
563
|
* <p>The status of the transit gateway peering attachment.</p>
|
|
@@ -595,25 +640,40 @@ export interface AcceptTransitGatewayVpcAttachmentRequest {
|
|
|
595
640
|
}
|
|
596
641
|
/**
|
|
597
642
|
* @public
|
|
643
|
+
* @enum
|
|
598
644
|
*/
|
|
599
|
-
export declare
|
|
600
|
-
disable
|
|
601
|
-
enable
|
|
602
|
-
}
|
|
645
|
+
export declare const ApplianceModeSupportValue: {
|
|
646
|
+
readonly disable: "disable";
|
|
647
|
+
readonly enable: "enable";
|
|
648
|
+
};
|
|
603
649
|
/**
|
|
604
650
|
* @public
|
|
605
651
|
*/
|
|
606
|
-
export
|
|
607
|
-
disable = "disable",
|
|
608
|
-
enable = "enable"
|
|
609
|
-
}
|
|
652
|
+
export type ApplianceModeSupportValue = (typeof ApplianceModeSupportValue)[keyof typeof ApplianceModeSupportValue];
|
|
610
653
|
/**
|
|
611
654
|
* @public
|
|
655
|
+
* @enum
|
|
612
656
|
*/
|
|
613
|
-
export declare
|
|
614
|
-
disable
|
|
615
|
-
enable
|
|
616
|
-
}
|
|
657
|
+
export declare const DnsSupportValue: {
|
|
658
|
+
readonly disable: "disable";
|
|
659
|
+
readonly enable: "enable";
|
|
660
|
+
};
|
|
661
|
+
/**
|
|
662
|
+
* @public
|
|
663
|
+
*/
|
|
664
|
+
export type DnsSupportValue = (typeof DnsSupportValue)[keyof typeof DnsSupportValue];
|
|
665
|
+
/**
|
|
666
|
+
* @public
|
|
667
|
+
* @enum
|
|
668
|
+
*/
|
|
669
|
+
export declare const Ipv6SupportValue: {
|
|
670
|
+
readonly disable: "disable";
|
|
671
|
+
readonly enable: "enable";
|
|
672
|
+
};
|
|
673
|
+
/**
|
|
674
|
+
* @public
|
|
675
|
+
*/
|
|
676
|
+
export type Ipv6SupportValue = (typeof Ipv6SupportValue)[keyof typeof Ipv6SupportValue];
|
|
617
677
|
/**
|
|
618
678
|
* @public
|
|
619
679
|
* <p>Describes the VPC attachment options.</p>
|
|
@@ -833,18 +893,23 @@ export interface VpcPeeringConnectionVpcInfo {
|
|
|
833
893
|
}
|
|
834
894
|
/**
|
|
835
895
|
* @public
|
|
896
|
+
* @enum
|
|
836
897
|
*/
|
|
837
|
-
export declare
|
|
838
|
-
active
|
|
839
|
-
deleted
|
|
840
|
-
deleting
|
|
841
|
-
expired
|
|
842
|
-
failed
|
|
843
|
-
initiating_request
|
|
844
|
-
pending_acceptance
|
|
845
|
-
provisioning
|
|
846
|
-
rejected
|
|
847
|
-
}
|
|
898
|
+
export declare const VpcPeeringConnectionStateReasonCode: {
|
|
899
|
+
readonly active: "active";
|
|
900
|
+
readonly deleted: "deleted";
|
|
901
|
+
readonly deleting: "deleting";
|
|
902
|
+
readonly expired: "expired";
|
|
903
|
+
readonly failed: "failed";
|
|
904
|
+
readonly initiating_request: "initiating-request";
|
|
905
|
+
readonly pending_acceptance: "pending-acceptance";
|
|
906
|
+
readonly provisioning: "provisioning";
|
|
907
|
+
readonly rejected: "rejected";
|
|
908
|
+
};
|
|
909
|
+
/**
|
|
910
|
+
* @public
|
|
911
|
+
*/
|
|
912
|
+
export type VpcPeeringConnectionStateReasonCode = (typeof VpcPeeringConnectionStateReasonCode)[keyof typeof VpcPeeringConnectionStateReasonCode];
|
|
848
913
|
/**
|
|
849
914
|
* @public
|
|
850
915
|
* <p>Describes the status of a VPC peering connection.</p>
|
|
@@ -1678,11 +1743,16 @@ export interface AccessScopeAnalysisFinding {
|
|
|
1678
1743
|
}
|
|
1679
1744
|
/**
|
|
1680
1745
|
* @public
|
|
1746
|
+
* @enum
|
|
1681
1747
|
*/
|
|
1682
|
-
export declare
|
|
1683
|
-
tcp
|
|
1684
|
-
udp
|
|
1685
|
-
}
|
|
1748
|
+
export declare const Protocol: {
|
|
1749
|
+
readonly tcp: "tcp";
|
|
1750
|
+
readonly udp: "udp";
|
|
1751
|
+
};
|
|
1752
|
+
/**
|
|
1753
|
+
* @public
|
|
1754
|
+
*/
|
|
1755
|
+
export type Protocol = (typeof Protocol)[keyof typeof Protocol];
|
|
1686
1756
|
/**
|
|
1687
1757
|
* @public
|
|
1688
1758
|
* <p>Describes a packet header statement.</p>
|
|
@@ -1889,18 +1959,28 @@ export interface AccountAttribute {
|
|
|
1889
1959
|
}
|
|
1890
1960
|
/**
|
|
1891
1961
|
* @public
|
|
1962
|
+
* @enum
|
|
1892
1963
|
*/
|
|
1893
|
-
export declare
|
|
1894
|
-
default_vpc
|
|
1895
|
-
supported_platforms
|
|
1896
|
-
}
|
|
1964
|
+
export declare const AccountAttributeName: {
|
|
1965
|
+
readonly default_vpc: "default-vpc";
|
|
1966
|
+
readonly supported_platforms: "supported-platforms";
|
|
1967
|
+
};
|
|
1897
1968
|
/**
|
|
1898
1969
|
* @public
|
|
1899
1970
|
*/
|
|
1900
|
-
export
|
|
1901
|
-
|
|
1902
|
-
|
|
1903
|
-
|
|
1971
|
+
export type AccountAttributeName = (typeof AccountAttributeName)[keyof typeof AccountAttributeName];
|
|
1972
|
+
/**
|
|
1973
|
+
* @public
|
|
1974
|
+
* @enum
|
|
1975
|
+
*/
|
|
1976
|
+
export declare const InstanceHealthStatus: {
|
|
1977
|
+
readonly HEALTHY_STATUS: "healthy";
|
|
1978
|
+
readonly UNHEALTHY_STATUS: "unhealthy";
|
|
1979
|
+
};
|
|
1980
|
+
/**
|
|
1981
|
+
* @public
|
|
1982
|
+
*/
|
|
1983
|
+
export type InstanceHealthStatus = (typeof InstanceHealthStatus)[keyof typeof InstanceHealthStatus];
|
|
1904
1984
|
/**
|
|
1905
1985
|
* @public
|
|
1906
1986
|
* <p>Describes a running instance in a Spot Fleet.</p>
|
|
@@ -1927,24 +2007,34 @@ export interface ActiveInstance {
|
|
|
1927
2007
|
}
|
|
1928
2008
|
/**
|
|
1929
2009
|
* @public
|
|
2010
|
+
* @enum
|
|
1930
2011
|
*/
|
|
1931
|
-
export declare
|
|
1932
|
-
ERROR
|
|
1933
|
-
FULFILLED
|
|
1934
|
-
PENDING_FULFILLMENT
|
|
1935
|
-
PENDING_TERMINATION
|
|
1936
|
-
}
|
|
2012
|
+
export declare const ActivityStatus: {
|
|
2013
|
+
readonly ERROR: "error";
|
|
2014
|
+
readonly FULFILLED: "fulfilled";
|
|
2015
|
+
readonly PENDING_FULFILLMENT: "pending_fulfillment";
|
|
2016
|
+
readonly PENDING_TERMINATION: "pending_termination";
|
|
2017
|
+
};
|
|
1937
2018
|
/**
|
|
1938
2019
|
* @public
|
|
1939
2020
|
*/
|
|
1940
|
-
export
|
|
1941
|
-
|
|
1942
|
-
|
|
1943
|
-
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
2021
|
+
export type ActivityStatus = (typeof ActivityStatus)[keyof typeof ActivityStatus];
|
|
2022
|
+
/**
|
|
2023
|
+
* @public
|
|
2024
|
+
* @enum
|
|
2025
|
+
*/
|
|
2026
|
+
export declare const PrincipalType: {
|
|
2027
|
+
readonly Account: "Account";
|
|
2028
|
+
readonly All: "All";
|
|
2029
|
+
readonly OrganizationUnit: "OrganizationUnit";
|
|
2030
|
+
readonly Role: "Role";
|
|
2031
|
+
readonly Service: "Service";
|
|
2032
|
+
readonly User: "User";
|
|
2033
|
+
};
|
|
2034
|
+
/**
|
|
2035
|
+
* @public
|
|
2036
|
+
*/
|
|
2037
|
+
export type PrincipalType = (typeof PrincipalType)[keyof typeof PrincipalType];
|
|
1948
2038
|
/**
|
|
1949
2039
|
* @public
|
|
1950
2040
|
* <p>Describes a principal.</p>
|
|
@@ -1996,11 +2086,16 @@ export interface AddPrefixListEntry {
|
|
|
1996
2086
|
}
|
|
1997
2087
|
/**
|
|
1998
2088
|
* @public
|
|
2089
|
+
* @enum
|
|
1999
2090
|
*/
|
|
2000
|
-
export declare
|
|
2001
|
-
standard
|
|
2002
|
-
vpc
|
|
2003
|
-
}
|
|
2091
|
+
export declare const DomainType: {
|
|
2092
|
+
readonly standard: "standard";
|
|
2093
|
+
readonly vpc: "vpc";
|
|
2094
|
+
};
|
|
2095
|
+
/**
|
|
2096
|
+
* @public
|
|
2097
|
+
*/
|
|
2098
|
+
export type DomainType = (typeof DomainType)[keyof typeof DomainType];
|
|
2004
2099
|
/**
|
|
2005
2100
|
* @public
|
|
2006
2101
|
* <p>Describes an Elastic IP address, or a carrier IP address.</p>
|
|
@@ -2108,17 +2203,27 @@ export interface AddressAttribute {
|
|
|
2108
2203
|
}
|
|
2109
2204
|
/**
|
|
2110
2205
|
* @public
|
|
2206
|
+
* @enum
|
|
2111
2207
|
*/
|
|
2112
|
-
export declare
|
|
2113
|
-
domain_name
|
|
2114
|
-
}
|
|
2208
|
+
export declare const AddressAttributeName: {
|
|
2209
|
+
readonly domain_name: "domain-name";
|
|
2210
|
+
};
|
|
2115
2211
|
/**
|
|
2116
2212
|
* @public
|
|
2117
2213
|
*/
|
|
2118
|
-
export
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
|
|
2214
|
+
export type AddressAttributeName = (typeof AddressAttributeName)[keyof typeof AddressAttributeName];
|
|
2215
|
+
/**
|
|
2216
|
+
* @public
|
|
2217
|
+
* @enum
|
|
2218
|
+
*/
|
|
2219
|
+
export declare const AddressFamily: {
|
|
2220
|
+
readonly ipv4: "ipv4";
|
|
2221
|
+
readonly ipv6: "ipv6";
|
|
2222
|
+
};
|
|
2223
|
+
/**
|
|
2224
|
+
* @public
|
|
2225
|
+
*/
|
|
2226
|
+
export type AddressFamily = (typeof AddressFamily)[keyof typeof AddressFamily];
|
|
2122
2227
|
/**
|
|
2123
2228
|
* @public
|
|
2124
2229
|
*/
|
|
@@ -2137,17 +2242,22 @@ export interface AdvertiseByoipCidrRequest {
|
|
|
2137
2242
|
}
|
|
2138
2243
|
/**
|
|
2139
2244
|
* @public
|
|
2245
|
+
* @enum
|
|
2140
2246
|
*/
|
|
2141
|
-
export declare
|
|
2142
|
-
advertised
|
|
2143
|
-
deprovisioned
|
|
2144
|
-
failed_deprovision
|
|
2145
|
-
failed_provision
|
|
2146
|
-
pending_deprovision
|
|
2147
|
-
pending_provision
|
|
2148
|
-
provisioned
|
|
2149
|
-
provisioned_not_publicly_advertisable
|
|
2150
|
-
}
|
|
2247
|
+
export declare const ByoipCidrState: {
|
|
2248
|
+
readonly advertised: "advertised";
|
|
2249
|
+
readonly deprovisioned: "deprovisioned";
|
|
2250
|
+
readonly failed_deprovision: "failed-deprovision";
|
|
2251
|
+
readonly failed_provision: "failed-provision";
|
|
2252
|
+
readonly pending_deprovision: "pending-deprovision";
|
|
2253
|
+
readonly pending_provision: "pending-provision";
|
|
2254
|
+
readonly provisioned: "provisioned";
|
|
2255
|
+
readonly provisioned_not_publicly_advertisable: "provisioned-not-publicly-advertisable";
|
|
2256
|
+
};
|
|
2257
|
+
/**
|
|
2258
|
+
* @public
|
|
2259
|
+
*/
|
|
2260
|
+
export type ByoipCidrState = (typeof ByoipCidrState)[keyof typeof ByoipCidrState];
|
|
2151
2261
|
/**
|
|
2152
2262
|
* @public
|
|
2153
2263
|
* <p>Information about an address range that is provisioned for use with your Amazon Web Services resources
|
|
@@ -2182,11 +2292,16 @@ export interface AdvertiseByoipCidrResult {
|
|
|
2182
2292
|
}
|
|
2183
2293
|
/**
|
|
2184
2294
|
* @public
|
|
2295
|
+
* @enum
|
|
2185
2296
|
*/
|
|
2186
|
-
export declare
|
|
2187
|
-
default
|
|
2188
|
-
host
|
|
2189
|
-
}
|
|
2297
|
+
export declare const Affinity: {
|
|
2298
|
+
readonly default: "default";
|
|
2299
|
+
readonly host: "host";
|
|
2300
|
+
};
|
|
2301
|
+
/**
|
|
2302
|
+
* @public
|
|
2303
|
+
*/
|
|
2304
|
+
export type Affinity = (typeof Affinity)[keyof typeof Affinity];
|
|
2190
2305
|
/**
|
|
2191
2306
|
* @public
|
|
2192
2307
|
*/
|
|
@@ -2274,25 +2389,40 @@ export interface AllocateAddressResult {
|
|
|
2274
2389
|
}
|
|
2275
2390
|
/**
|
|
2276
2391
|
* @public
|
|
2392
|
+
* @enum
|
|
2277
2393
|
*/
|
|
2278
|
-
export declare
|
|
2279
|
-
off
|
|
2280
|
-
on
|
|
2281
|
-
}
|
|
2394
|
+
export declare const AutoPlacement: {
|
|
2395
|
+
readonly off: "off";
|
|
2396
|
+
readonly on: "on";
|
|
2397
|
+
};
|
|
2282
2398
|
/**
|
|
2283
2399
|
* @public
|
|
2284
2400
|
*/
|
|
2285
|
-
export
|
|
2286
|
-
off = "off",
|
|
2287
|
-
on = "on"
|
|
2288
|
-
}
|
|
2401
|
+
export type AutoPlacement = (typeof AutoPlacement)[keyof typeof AutoPlacement];
|
|
2289
2402
|
/**
|
|
2290
2403
|
* @public
|
|
2404
|
+
* @enum
|
|
2291
2405
|
*/
|
|
2292
|
-
export declare
|
|
2293
|
-
off
|
|
2294
|
-
on
|
|
2295
|
-
}
|
|
2406
|
+
export declare const HostMaintenance: {
|
|
2407
|
+
readonly off: "off";
|
|
2408
|
+
readonly on: "on";
|
|
2409
|
+
};
|
|
2410
|
+
/**
|
|
2411
|
+
* @public
|
|
2412
|
+
*/
|
|
2413
|
+
export type HostMaintenance = (typeof HostMaintenance)[keyof typeof HostMaintenance];
|
|
2414
|
+
/**
|
|
2415
|
+
* @public
|
|
2416
|
+
* @enum
|
|
2417
|
+
*/
|
|
2418
|
+
export declare const HostRecovery: {
|
|
2419
|
+
readonly off: "off";
|
|
2420
|
+
readonly on: "on";
|
|
2421
|
+
};
|
|
2422
|
+
/**
|
|
2423
|
+
* @public
|
|
2424
|
+
*/
|
|
2425
|
+
export type HostRecovery = (typeof HostRecovery)[keyof typeof HostRecovery];
|
|
2296
2426
|
/**
|
|
2297
2427
|
* @public
|
|
2298
2428
|
*/
|
|
@@ -2431,13 +2561,18 @@ export interface AllocateIpamPoolCidrRequest {
|
|
|
2431
2561
|
}
|
|
2432
2562
|
/**
|
|
2433
2563
|
* @public
|
|
2564
|
+
* @enum
|
|
2434
2565
|
*/
|
|
2435
|
-
export declare
|
|
2436
|
-
custom
|
|
2437
|
-
ec2_public_ipv4_pool
|
|
2438
|
-
ipam_pool
|
|
2439
|
-
vpc
|
|
2440
|
-
}
|
|
2566
|
+
export declare const IpamPoolAllocationResourceType: {
|
|
2567
|
+
readonly custom: "custom";
|
|
2568
|
+
readonly ec2_public_ipv4_pool: "ec2-public-ipv4-pool";
|
|
2569
|
+
readonly ipam_pool: "ipam-pool";
|
|
2570
|
+
readonly vpc: "vpc";
|
|
2571
|
+
};
|
|
2572
|
+
/**
|
|
2573
|
+
* @public
|
|
2574
|
+
*/
|
|
2575
|
+
export type IpamPoolAllocationResourceType = (typeof IpamPoolAllocationResourceType)[keyof typeof IpamPoolAllocationResourceType];
|
|
2441
2576
|
/**
|
|
2442
2577
|
* @public
|
|
2443
2578
|
* <p>In IPAM, an allocation is a CIDR assignment from an IPAM pool to another IPAM pool or to a resource.</p>
|
|
@@ -2484,31 +2619,46 @@ export interface AllocateIpamPoolCidrResult {
|
|
|
2484
2619
|
}
|
|
2485
2620
|
/**
|
|
2486
2621
|
* @public
|
|
2622
|
+
* @enum
|
|
2487
2623
|
*/
|
|
2488
|
-
export declare
|
|
2489
|
-
available
|
|
2490
|
-
pending
|
|
2491
|
-
permanent_failure
|
|
2492
|
-
released
|
|
2493
|
-
released_permanent_failure
|
|
2494
|
-
under_assessment
|
|
2495
|
-
}
|
|
2624
|
+
export declare const AllocationState: {
|
|
2625
|
+
readonly available: "available";
|
|
2626
|
+
readonly pending: "pending";
|
|
2627
|
+
readonly permanent_failure: "permanent-failure";
|
|
2628
|
+
readonly released: "released";
|
|
2629
|
+
readonly released_permanent_failure: "released-permanent-failure";
|
|
2630
|
+
readonly under_assessment: "under-assessment";
|
|
2631
|
+
};
|
|
2496
2632
|
/**
|
|
2497
2633
|
* @public
|
|
2498
2634
|
*/
|
|
2499
|
-
export
|
|
2500
|
-
CAPACITY_OPTIMIZED = "capacityOptimized",
|
|
2501
|
-
CAPACITY_OPTIMIZED_PRIORITIZED = "capacityOptimizedPrioritized",
|
|
2502
|
-
DIVERSIFIED = "diversified",
|
|
2503
|
-
LOWEST_PRICE = "lowestPrice",
|
|
2504
|
-
PRICE_CAPACITY_OPTIMIZED = "priceCapacityOptimized"
|
|
2505
|
-
}
|
|
2635
|
+
export type AllocationState = (typeof AllocationState)[keyof typeof AllocationState];
|
|
2506
2636
|
/**
|
|
2507
2637
|
* @public
|
|
2638
|
+
* @enum
|
|
2508
2639
|
*/
|
|
2509
|
-
export declare
|
|
2510
|
-
|
|
2511
|
-
|
|
2640
|
+
export declare const AllocationStrategy: {
|
|
2641
|
+
readonly CAPACITY_OPTIMIZED: "capacityOptimized";
|
|
2642
|
+
readonly CAPACITY_OPTIMIZED_PRIORITIZED: "capacityOptimizedPrioritized";
|
|
2643
|
+
readonly DIVERSIFIED: "diversified";
|
|
2644
|
+
readonly LOWEST_PRICE: "lowestPrice";
|
|
2645
|
+
readonly PRICE_CAPACITY_OPTIMIZED: "priceCapacityOptimized";
|
|
2646
|
+
};
|
|
2647
|
+
/**
|
|
2648
|
+
* @public
|
|
2649
|
+
*/
|
|
2650
|
+
export type AllocationStrategy = (typeof AllocationStrategy)[keyof typeof AllocationStrategy];
|
|
2651
|
+
/**
|
|
2652
|
+
* @public
|
|
2653
|
+
* @enum
|
|
2654
|
+
*/
|
|
2655
|
+
export declare const AllocationType: {
|
|
2656
|
+
readonly used: "used";
|
|
2657
|
+
};
|
|
2658
|
+
/**
|
|
2659
|
+
* @public
|
|
2660
|
+
*/
|
|
2661
|
+
export type AllocationType = (typeof AllocationType)[keyof typeof AllocationType];
|
|
2512
2662
|
/**
|
|
2513
2663
|
* @public
|
|
2514
2664
|
* <p>Describes a principal.</p>
|
|
@@ -2537,11 +2687,16 @@ export interface AllowedPrincipal {
|
|
|
2537
2687
|
}
|
|
2538
2688
|
/**
|
|
2539
2689
|
* @public
|
|
2690
|
+
* @enum
|
|
2540
2691
|
*/
|
|
2541
|
-
export declare
|
|
2542
|
-
off
|
|
2543
|
-
on
|
|
2544
|
-
}
|
|
2692
|
+
export declare const AllowsMultipleInstanceTypes: {
|
|
2693
|
+
readonly off: "off";
|
|
2694
|
+
readonly on: "on";
|
|
2695
|
+
};
|
|
2696
|
+
/**
|
|
2697
|
+
* @public
|
|
2698
|
+
*/
|
|
2699
|
+
export type AllowsMultipleInstanceTypes = (typeof AllowsMultipleInstanceTypes)[keyof typeof AllowsMultipleInstanceTypes];
|
|
2545
2700
|
/**
|
|
2546
2701
|
* @public
|
|
2547
2702
|
* <p>Describes an potential intermediate component of a feasible path.</p>
|
|
@@ -2731,15 +2886,20 @@ export interface AssignPrivateNatGatewayAddressRequest {
|
|
|
2731
2886
|
}
|
|
2732
2887
|
/**
|
|
2733
2888
|
* @public
|
|
2889
|
+
* @enum
|
|
2734
2890
|
*/
|
|
2735
|
-
export declare
|
|
2736
|
-
ASSIGNING
|
|
2737
|
-
ASSOCIATING
|
|
2738
|
-
DISASSOCIATING
|
|
2739
|
-
FAILED
|
|
2740
|
-
SUCCEEDED
|
|
2741
|
-
UNASSIGNING
|
|
2742
|
-
}
|
|
2891
|
+
export declare const NatGatewayAddressStatus: {
|
|
2892
|
+
readonly ASSIGNING: "assigning";
|
|
2893
|
+
readonly ASSOCIATING: "associating";
|
|
2894
|
+
readonly DISASSOCIATING: "disassociating";
|
|
2895
|
+
readonly FAILED: "failed";
|
|
2896
|
+
readonly SUCCEEDED: "succeeded";
|
|
2897
|
+
readonly UNASSIGNING: "unassigning";
|
|
2898
|
+
};
|
|
2899
|
+
/**
|
|
2900
|
+
* @public
|
|
2901
|
+
*/
|
|
2902
|
+
export type NatGatewayAddressStatus = (typeof NatGatewayAddressStatus)[keyof typeof NatGatewayAddressStatus];
|
|
2743
2903
|
/**
|
|
2744
2904
|
* @public
|
|
2745
2905
|
* <p>Describes the IP addresses and network interface associated with a NAT gateway.</p>
|
|
@@ -2863,14 +3023,19 @@ export interface AssociateClientVpnTargetNetworkRequest {
|
|
|
2863
3023
|
}
|
|
2864
3024
|
/**
|
|
2865
3025
|
* @public
|
|
3026
|
+
* @enum
|
|
2866
3027
|
*/
|
|
2867
|
-
export declare
|
|
2868
|
-
associated
|
|
2869
|
-
associating
|
|
2870
|
-
association_failed
|
|
2871
|
-
disassociated
|
|
2872
|
-
disassociating
|
|
2873
|
-
}
|
|
3028
|
+
export declare const AssociationStatusCode: {
|
|
3029
|
+
readonly associated: "associated";
|
|
3030
|
+
readonly associating: "associating";
|
|
3031
|
+
readonly association_failed: "association-failed";
|
|
3032
|
+
readonly disassociated: "disassociated";
|
|
3033
|
+
readonly disassociating: "disassociating";
|
|
3034
|
+
};
|
|
3035
|
+
/**
|
|
3036
|
+
* @public
|
|
3037
|
+
*/
|
|
3038
|
+
export type AssociationStatusCode = (typeof AssociationStatusCode)[keyof typeof AssociationStatusCode];
|
|
2874
3039
|
/**
|
|
2875
3040
|
* @public
|
|
2876
3041
|
* <p>Describes the state of a target network association.</p>
|
|
@@ -2997,13 +3162,18 @@ export interface IamInstanceProfile {
|
|
|
2997
3162
|
}
|
|
2998
3163
|
/**
|
|
2999
3164
|
* @public
|
|
3165
|
+
* @enum
|
|
3000
3166
|
*/
|
|
3001
|
-
export declare
|
|
3002
|
-
ASSOCIATED
|
|
3003
|
-
ASSOCIATING
|
|
3004
|
-
DISASSOCIATED
|
|
3005
|
-
DISASSOCIATING
|
|
3006
|
-
}
|
|
3167
|
+
export declare const IamInstanceProfileAssociationState: {
|
|
3168
|
+
readonly ASSOCIATED: "associated";
|
|
3169
|
+
readonly ASSOCIATING: "associating";
|
|
3170
|
+
readonly DISASSOCIATED: "disassociated";
|
|
3171
|
+
readonly DISASSOCIATING: "disassociating";
|
|
3172
|
+
};
|
|
3173
|
+
/**
|
|
3174
|
+
* @public
|
|
3175
|
+
*/
|
|
3176
|
+
export type IamInstanceProfileAssociationState = (typeof IamInstanceProfileAssociationState)[keyof typeof IamInstanceProfileAssociationState];
|
|
3007
3177
|
/**
|
|
3008
3178
|
* @public
|
|
3009
3179
|
* <p>Describes an association between an IAM instance profile and an instance.</p>
|
|
@@ -3102,25 +3272,35 @@ export interface InstanceEventWindowAssociationTarget {
|
|
|
3102
3272
|
}
|
|
3103
3273
|
/**
|
|
3104
3274
|
* @public
|
|
3275
|
+
* @enum
|
|
3105
3276
|
*/
|
|
3106
|
-
export declare
|
|
3107
|
-
active
|
|
3108
|
-
creating
|
|
3109
|
-
deleted
|
|
3110
|
-
deleting
|
|
3111
|
-
}
|
|
3277
|
+
export declare const InstanceEventWindowState: {
|
|
3278
|
+
readonly active: "active";
|
|
3279
|
+
readonly creating: "creating";
|
|
3280
|
+
readonly deleted: "deleted";
|
|
3281
|
+
readonly deleting: "deleting";
|
|
3282
|
+
};
|
|
3112
3283
|
/**
|
|
3113
3284
|
* @public
|
|
3114
3285
|
*/
|
|
3115
|
-
export
|
|
3116
|
-
|
|
3117
|
-
|
|
3118
|
-
|
|
3119
|
-
|
|
3120
|
-
|
|
3121
|
-
|
|
3122
|
-
|
|
3123
|
-
|
|
3286
|
+
export type InstanceEventWindowState = (typeof InstanceEventWindowState)[keyof typeof InstanceEventWindowState];
|
|
3287
|
+
/**
|
|
3288
|
+
* @public
|
|
3289
|
+
* @enum
|
|
3290
|
+
*/
|
|
3291
|
+
export declare const WeekDay: {
|
|
3292
|
+
readonly friday: "friday";
|
|
3293
|
+
readonly monday: "monday";
|
|
3294
|
+
readonly saturday: "saturday";
|
|
3295
|
+
readonly sunday: "sunday";
|
|
3296
|
+
readonly thursday: "thursday";
|
|
3297
|
+
readonly tuesday: "tuesday";
|
|
3298
|
+
readonly wednesday: "wednesday";
|
|
3299
|
+
};
|
|
3300
|
+
/**
|
|
3301
|
+
* @public
|
|
3302
|
+
*/
|
|
3303
|
+
export type WeekDay = (typeof WeekDay)[keyof typeof WeekDay];
|
|
3124
3304
|
/**
|
|
3125
3305
|
* @public
|
|
3126
3306
|
* <p>The start day and time and the end day and time of the time range, in UTC.</p>
|
|
@@ -3215,25 +3395,35 @@ export interface AssociateIpamResourceDiscoveryRequest {
|
|
|
3215
3395
|
}
|
|
3216
3396
|
/**
|
|
3217
3397
|
* @public
|
|
3398
|
+
* @enum
|
|
3218
3399
|
*/
|
|
3219
|
-
export declare
|
|
3220
|
-
ACTIVE
|
|
3221
|
-
NOT_FOUND
|
|
3222
|
-
}
|
|
3400
|
+
export declare const IpamAssociatedResourceDiscoveryStatus: {
|
|
3401
|
+
readonly ACTIVE: "active";
|
|
3402
|
+
readonly NOT_FOUND: "not-found";
|
|
3403
|
+
};
|
|
3223
3404
|
/**
|
|
3224
3405
|
* @public
|
|
3225
3406
|
*/
|
|
3226
|
-
export
|
|
3227
|
-
|
|
3228
|
-
|
|
3229
|
-
|
|
3230
|
-
|
|
3231
|
-
|
|
3232
|
-
|
|
3233
|
-
|
|
3234
|
-
|
|
3235
|
-
|
|
3236
|
-
|
|
3407
|
+
export type IpamAssociatedResourceDiscoveryStatus = (typeof IpamAssociatedResourceDiscoveryStatus)[keyof typeof IpamAssociatedResourceDiscoveryStatus];
|
|
3408
|
+
/**
|
|
3409
|
+
* @public
|
|
3410
|
+
* @enum
|
|
3411
|
+
*/
|
|
3412
|
+
export declare const IpamResourceDiscoveryAssociationState: {
|
|
3413
|
+
readonly ASSOCIATE_COMPLETE: "associate-complete";
|
|
3414
|
+
readonly ASSOCIATE_FAILED: "associate-failed";
|
|
3415
|
+
readonly ASSOCIATE_IN_PROGRESS: "associate-in-progress";
|
|
3416
|
+
readonly DISASSOCIATE_COMPLETE: "disassociate-complete";
|
|
3417
|
+
readonly DISASSOCIATE_FAILED: "disassociate-failed";
|
|
3418
|
+
readonly DISASSOCIATE_IN_PROGRESS: "disassociate-in-progress";
|
|
3419
|
+
readonly ISOLATE_COMPLETE: "isolate-complete";
|
|
3420
|
+
readonly ISOLATE_IN_PROGRESS: "isolate-in-progress";
|
|
3421
|
+
readonly RESTORE_IN_PROGRESS: "restore-in-progress";
|
|
3422
|
+
};
|
|
3423
|
+
/**
|
|
3424
|
+
* @public
|
|
3425
|
+
*/
|
|
3426
|
+
export type IpamResourceDiscoveryAssociationState = (typeof IpamResourceDiscoveryAssociationState)[keyof typeof IpamResourceDiscoveryAssociationState];
|
|
3237
3427
|
/**
|
|
3238
3428
|
* @public
|
|
3239
3429
|
* <p>An IPAM resource discovery association. An associated resource discovery is a resource discovery that has been associated with an IPAM. IPAM aggregates the resource CIDRs discovered by the associated resource discovery.</p>
|
|
@@ -3404,14 +3594,19 @@ export interface AssociateRouteTableRequest {
|
|
|
3404
3594
|
}
|
|
3405
3595
|
/**
|
|
3406
3596
|
* @public
|
|
3597
|
+
* @enum
|
|
3407
3598
|
*/
|
|
3408
|
-
export declare
|
|
3409
|
-
associated
|
|
3410
|
-
associating
|
|
3411
|
-
disassociated
|
|
3412
|
-
disassociating
|
|
3413
|
-
failed
|
|
3414
|
-
}
|
|
3599
|
+
export declare const RouteTableAssociationStateCode: {
|
|
3600
|
+
readonly associated: "associated";
|
|
3601
|
+
readonly associating: "associating";
|
|
3602
|
+
readonly disassociated: "disassociated";
|
|
3603
|
+
readonly disassociating: "disassociating";
|
|
3604
|
+
readonly failed: "failed";
|
|
3605
|
+
};
|
|
3606
|
+
/**
|
|
3607
|
+
* @public
|
|
3608
|
+
*/
|
|
3609
|
+
export type RouteTableAssociationStateCode = (typeof RouteTableAssociationStateCode)[keyof typeof RouteTableAssociationStateCode];
|
|
3415
3610
|
/**
|
|
3416
3611
|
* @public
|
|
3417
3612
|
* <p>Describes the state of an association between a route table and a subnet or gateway.</p>
|
|
@@ -3456,15 +3651,20 @@ export interface AssociateSubnetCidrBlockRequest {
|
|
|
3456
3651
|
}
|
|
3457
3652
|
/**
|
|
3458
3653
|
* @public
|
|
3654
|
+
* @enum
|
|
3459
3655
|
*/
|
|
3460
|
-
export declare
|
|
3461
|
-
associated
|
|
3462
|
-
associating
|
|
3463
|
-
disassociated
|
|
3464
|
-
disassociating
|
|
3465
|
-
failed
|
|
3466
|
-
failing
|
|
3467
|
-
}
|
|
3656
|
+
export declare const SubnetCidrBlockStateCode: {
|
|
3657
|
+
readonly associated: "associated";
|
|
3658
|
+
readonly associating: "associating";
|
|
3659
|
+
readonly disassociated: "disassociated";
|
|
3660
|
+
readonly disassociating: "disassociating";
|
|
3661
|
+
readonly failed: "failed";
|
|
3662
|
+
readonly failing: "failing";
|
|
3663
|
+
};
|
|
3664
|
+
/**
|
|
3665
|
+
* @public
|
|
3666
|
+
*/
|
|
3667
|
+
export type SubnetCidrBlockStateCode = (typeof SubnetCidrBlockStateCode)[keyof typeof SubnetCidrBlockStateCode];
|
|
3468
3668
|
/**
|
|
3469
3669
|
* @public
|
|
3470
3670
|
* <p>Describes the state of a CIDR block.</p>
|
|
@@ -3563,13 +3763,18 @@ export interface AssociateTransitGatewayPolicyTableRequest {
|
|
|
3563
3763
|
}
|
|
3564
3764
|
/**
|
|
3565
3765
|
* @public
|
|
3766
|
+
* @enum
|
|
3566
3767
|
*/
|
|
3567
|
-
export declare
|
|
3568
|
-
associated
|
|
3569
|
-
associating
|
|
3570
|
-
disassociated
|
|
3571
|
-
disassociating
|
|
3572
|
-
}
|
|
3768
|
+
export declare const TransitGatewayAssociationState: {
|
|
3769
|
+
readonly associated: "associated";
|
|
3770
|
+
readonly associating: "associating";
|
|
3771
|
+
readonly disassociated: "disassociated";
|
|
3772
|
+
readonly disassociating: "disassociating";
|
|
3773
|
+
};
|
|
3774
|
+
/**
|
|
3775
|
+
* @public
|
|
3776
|
+
*/
|
|
3777
|
+
export type TransitGatewayAssociationState = (typeof TransitGatewayAssociationState)[keyof typeof TransitGatewayAssociationState];
|
|
3573
3778
|
/**
|
|
3574
3779
|
* @public
|
|
3575
3780
|
* <p>Describes a transit gateway policy table association.</p>
|
|
@@ -3694,11 +3899,16 @@ export interface AssociateTrunkInterfaceRequest {
|
|
|
3694
3899
|
}
|
|
3695
3900
|
/**
|
|
3696
3901
|
* @public
|
|
3902
|
+
* @enum
|
|
3697
3903
|
*/
|
|
3698
|
-
export declare
|
|
3699
|
-
GRE
|
|
3700
|
-
VLAN
|
|
3701
|
-
}
|
|
3904
|
+
export declare const InterfaceProtocolType: {
|
|
3905
|
+
readonly GRE: "GRE";
|
|
3906
|
+
readonly VLAN: "VLAN";
|
|
3907
|
+
};
|
|
3908
|
+
/**
|
|
3909
|
+
* @public
|
|
3910
|
+
*/
|
|
3911
|
+
export type InterfaceProtocolType = (typeof InterfaceProtocolType)[keyof typeof InterfaceProtocolType];
|
|
3702
3912
|
/**
|
|
3703
3913
|
* @public
|
|
3704
3914
|
* <note>
|
|
@@ -3804,15 +4014,20 @@ export interface AssociateVpcCidrBlockRequest {
|
|
|
3804
4014
|
}
|
|
3805
4015
|
/**
|
|
3806
4016
|
* @public
|
|
4017
|
+
* @enum
|
|
3807
4018
|
*/
|
|
3808
|
-
export declare
|
|
3809
|
-
associated
|
|
3810
|
-
associating
|
|
3811
|
-
disassociated
|
|
3812
|
-
disassociating
|
|
3813
|
-
failed
|
|
3814
|
-
failing
|
|
3815
|
-
}
|
|
4019
|
+
export declare const VpcCidrBlockStateCode: {
|
|
4020
|
+
readonly associated: "associated";
|
|
4021
|
+
readonly associating: "associating";
|
|
4022
|
+
readonly disassociated: "disassociated";
|
|
4023
|
+
readonly disassociating: "disassociating";
|
|
4024
|
+
readonly failed: "failed";
|
|
4025
|
+
readonly failing: "failing";
|
|
4026
|
+
};
|
|
4027
|
+
/**
|
|
4028
|
+
* @public
|
|
4029
|
+
*/
|
|
4030
|
+
export type VpcCidrBlockStateCode = (typeof VpcCidrBlockStateCode)[keyof typeof VpcCidrBlockStateCode];
|
|
3816
4031
|
/**
|
|
3817
4032
|
* @public
|
|
3818
4033
|
* <p>Describes the state of a CIDR block.</p>
|
|
@@ -4049,25 +4264,40 @@ export interface AttachVerifiedAccessTrustProviderRequest {
|
|
|
4049
4264
|
}
|
|
4050
4265
|
/**
|
|
4051
4266
|
* @public
|
|
4267
|
+
* @enum
|
|
4052
4268
|
*/
|
|
4053
|
-
export declare
|
|
4054
|
-
crowdstrike
|
|
4055
|
-
jamf
|
|
4056
|
-
}
|
|
4269
|
+
export declare const DeviceTrustProviderType: {
|
|
4270
|
+
readonly crowdstrike: "crowdstrike";
|
|
4271
|
+
readonly jamf: "jamf";
|
|
4272
|
+
};
|
|
4057
4273
|
/**
|
|
4058
4274
|
* @public
|
|
4059
4275
|
*/
|
|
4060
|
-
export
|
|
4061
|
-
device = "device",
|
|
4062
|
-
user = "user"
|
|
4063
|
-
}
|
|
4276
|
+
export type DeviceTrustProviderType = (typeof DeviceTrustProviderType)[keyof typeof DeviceTrustProviderType];
|
|
4064
4277
|
/**
|
|
4065
4278
|
* @public
|
|
4279
|
+
* @enum
|
|
4066
4280
|
*/
|
|
4067
|
-
export declare
|
|
4068
|
-
|
|
4069
|
-
|
|
4070
|
-
}
|
|
4281
|
+
export declare const TrustProviderType: {
|
|
4282
|
+
readonly device: "device";
|
|
4283
|
+
readonly user: "user";
|
|
4284
|
+
};
|
|
4285
|
+
/**
|
|
4286
|
+
* @public
|
|
4287
|
+
*/
|
|
4288
|
+
export type TrustProviderType = (typeof TrustProviderType)[keyof typeof TrustProviderType];
|
|
4289
|
+
/**
|
|
4290
|
+
* @public
|
|
4291
|
+
* @enum
|
|
4292
|
+
*/
|
|
4293
|
+
export declare const UserTrustProviderType: {
|
|
4294
|
+
readonly iam_identity_center: "iam-identity-center";
|
|
4295
|
+
readonly oidc: "oidc";
|
|
4296
|
+
};
|
|
4297
|
+
/**
|
|
4298
|
+
* @public
|
|
4299
|
+
*/
|
|
4300
|
+
export type UserTrustProviderType = (typeof UserTrustProviderType)[keyof typeof UserTrustProviderType];
|
|
4071
4301
|
/**
|
|
4072
4302
|
* @public
|
|
4073
4303
|
* <p>Condensed information about a trust provider.</p>
|
|
@@ -4257,14 +4487,19 @@ export interface AttachVolumeRequest {
|
|
|
4257
4487
|
}
|
|
4258
4488
|
/**
|
|
4259
4489
|
* @public
|
|
4490
|
+
* @enum
|
|
4260
4491
|
*/
|
|
4261
|
-
export declare
|
|
4262
|
-
attached
|
|
4263
|
-
attaching
|
|
4264
|
-
busy
|
|
4265
|
-
detached
|
|
4266
|
-
detaching
|
|
4267
|
-
}
|
|
4492
|
+
export declare const VolumeAttachmentState: {
|
|
4493
|
+
readonly attached: "attached";
|
|
4494
|
+
readonly attaching: "attaching";
|
|
4495
|
+
readonly busy: "busy";
|
|
4496
|
+
readonly detached: "detached";
|
|
4497
|
+
readonly detaching: "detaching";
|
|
4498
|
+
};
|
|
4499
|
+
/**
|
|
4500
|
+
* @public
|
|
4501
|
+
*/
|
|
4502
|
+
export type VolumeAttachmentState = (typeof VolumeAttachmentState)[keyof typeof VolumeAttachmentState];
|
|
4268
4503
|
/**
|
|
4269
4504
|
* @public
|
|
4270
4505
|
* <p>Describes volume attachment details.</p>
|
|
@@ -4318,13 +4553,18 @@ export interface AttachVpnGatewayRequest {
|
|
|
4318
4553
|
}
|
|
4319
4554
|
/**
|
|
4320
4555
|
* @public
|
|
4556
|
+
* @enum
|
|
4321
4557
|
*/
|
|
4322
|
-
export declare
|
|
4323
|
-
attached
|
|
4324
|
-
attaching
|
|
4325
|
-
detached
|
|
4326
|
-
detaching
|
|
4327
|
-
}
|
|
4558
|
+
export declare const AttachmentStatus: {
|
|
4559
|
+
readonly attached: "attached";
|
|
4560
|
+
readonly attaching: "attaching";
|
|
4561
|
+
readonly detached: "detached";
|
|
4562
|
+
readonly detaching: "detaching";
|
|
4563
|
+
};
|
|
4564
|
+
/**
|
|
4565
|
+
* @public
|
|
4566
|
+
*/
|
|
4567
|
+
export type AttachmentStatus = (typeof AttachmentStatus)[keyof typeof AttachmentStatus];
|
|
4328
4568
|
/**
|
|
4329
4569
|
* @public
|
|
4330
4570
|
* <p>Describes an attachment between a virtual private gateway and a VPC.</p>
|
|
@@ -4386,13 +4626,18 @@ export interface AuthorizeClientVpnIngressRequest {
|
|
|
4386
4626
|
}
|
|
4387
4627
|
/**
|
|
4388
4628
|
* @public
|
|
4629
|
+
* @enum
|
|
4389
4630
|
*/
|
|
4390
|
-
export declare
|
|
4391
|
-
active
|
|
4392
|
-
authorizing
|
|
4393
|
-
failed
|
|
4394
|
-
revoking
|
|
4395
|
-
}
|
|
4631
|
+
export declare const ClientVpnAuthorizationRuleStatusCode: {
|
|
4632
|
+
readonly active: "active";
|
|
4633
|
+
readonly authorizing: "authorizing";
|
|
4634
|
+
readonly failed: "failed";
|
|
4635
|
+
readonly revoking: "revoking";
|
|
4636
|
+
};
|
|
4637
|
+
/**
|
|
4638
|
+
* @public
|
|
4639
|
+
*/
|
|
4640
|
+
export type ClientVpnAuthorizationRuleStatusCode = (typeof ClientVpnAuthorizationRuleStatusCode)[keyof typeof ClientVpnAuthorizationRuleStatusCode];
|
|
4396
4641
|
/**
|
|
4397
4642
|
* @public
|
|
4398
4643
|
* <p>Describes the state of an authorization rule.</p>
|
|
@@ -4881,16 +5126,21 @@ export interface BundleTaskError {
|
|
|
4881
5126
|
}
|
|
4882
5127
|
/**
|
|
4883
5128
|
* @public
|
|
5129
|
+
* @enum
|
|
4884
5130
|
*/
|
|
4885
|
-
export declare
|
|
4886
|
-
bundling
|
|
4887
|
-
cancelling
|
|
4888
|
-
complete
|
|
4889
|
-
failed
|
|
4890
|
-
pending
|
|
4891
|
-
storing
|
|
4892
|
-
waiting_for_shutdown
|
|
4893
|
-
}
|
|
5131
|
+
export declare const BundleTaskState: {
|
|
5132
|
+
readonly bundling: "bundling";
|
|
5133
|
+
readonly cancelling: "cancelling";
|
|
5134
|
+
readonly complete: "complete";
|
|
5135
|
+
readonly failed: "failed";
|
|
5136
|
+
readonly pending: "pending";
|
|
5137
|
+
readonly storing: "storing";
|
|
5138
|
+
readonly waiting_for_shutdown: "waiting-for-shutdown";
|
|
5139
|
+
};
|
|
5140
|
+
/**
|
|
5141
|
+
* @public
|
|
5142
|
+
*/
|
|
5143
|
+
export type BundleTaskState = (typeof BundleTaskState)[keyof typeof BundleTaskState];
|
|
4894
5144
|
/**
|
|
4895
5145
|
* @public
|
|
4896
5146
|
* <p>Describes a bundle task.</p>
|
|
@@ -5030,18 +5280,23 @@ export interface FailedCapacityReservationFleetCancellationResult {
|
|
|
5030
5280
|
}
|
|
5031
5281
|
/**
|
|
5032
5282
|
* @public
|
|
5283
|
+
* @enum
|
|
5033
5284
|
*/
|
|
5034
|
-
export declare
|
|
5035
|
-
ACTIVE
|
|
5036
|
-
CANCELLED
|
|
5037
|
-
CANCELLING
|
|
5038
|
-
EXPIRED
|
|
5039
|
-
EXPIRING
|
|
5040
|
-
FAILED
|
|
5041
|
-
MODIFYING
|
|
5042
|
-
PARTIALLY_FULFILLED
|
|
5043
|
-
SUBMITTED
|
|
5044
|
-
}
|
|
5285
|
+
export declare const CapacityReservationFleetState: {
|
|
5286
|
+
readonly ACTIVE: "active";
|
|
5287
|
+
readonly CANCELLED: "cancelled";
|
|
5288
|
+
readonly CANCELLING: "cancelling";
|
|
5289
|
+
readonly EXPIRED: "expired";
|
|
5290
|
+
readonly EXPIRING: "expiring";
|
|
5291
|
+
readonly FAILED: "failed";
|
|
5292
|
+
readonly MODIFYING: "modifying";
|
|
5293
|
+
readonly PARTIALLY_FULFILLED: "partially_fulfilled";
|
|
5294
|
+
readonly SUBMITTED: "submitted";
|
|
5295
|
+
};
|
|
5296
|
+
/**
|
|
5297
|
+
* @public
|
|
5298
|
+
*/
|
|
5299
|
+
export type CapacityReservationFleetState = (typeof CapacityReservationFleetState)[keyof typeof CapacityReservationFleetState];
|
|
5045
5300
|
/**
|
|
5046
5301
|
* @public
|
|
5047
5302
|
* <p>Describes a Capacity Reservation Fleet that was successfully cancelled.</p>
|
|
@@ -5173,13 +5428,18 @@ export interface CancelReservedInstancesListingRequest {
|
|
|
5173
5428
|
}
|
|
5174
5429
|
/**
|
|
5175
5430
|
* @public
|
|
5431
|
+
* @enum
|
|
5176
5432
|
*/
|
|
5177
|
-
export declare
|
|
5178
|
-
available
|
|
5179
|
-
cancelled
|
|
5180
|
-
pending
|
|
5181
|
-
sold
|
|
5182
|
-
}
|
|
5433
|
+
export declare const ListingState: {
|
|
5434
|
+
readonly available: "available";
|
|
5435
|
+
readonly cancelled: "cancelled";
|
|
5436
|
+
readonly pending: "pending";
|
|
5437
|
+
readonly sold: "sold";
|
|
5438
|
+
};
|
|
5439
|
+
/**
|
|
5440
|
+
* @public
|
|
5441
|
+
*/
|
|
5442
|
+
export type ListingState = (typeof ListingState)[keyof typeof ListingState];
|
|
5183
5443
|
/**
|
|
5184
5444
|
* @public
|
|
5185
5445
|
* <p>Describes a Reserved Instance listing state.</p>
|
|
@@ -5196,10 +5456,15 @@ export interface InstanceCount {
|
|
|
5196
5456
|
}
|
|
5197
5457
|
/**
|
|
5198
5458
|
* @public
|
|
5459
|
+
* @enum
|
|
5199
5460
|
*/
|
|
5200
|
-
export declare
|
|
5201
|
-
USD
|
|
5202
|
-
}
|
|
5461
|
+
export declare const CurrencyCodeValues: {
|
|
5462
|
+
readonly USD: "USD";
|
|
5463
|
+
};
|
|
5464
|
+
/**
|
|
5465
|
+
* @public
|
|
5466
|
+
*/
|
|
5467
|
+
export type CurrencyCodeValues = (typeof CurrencyCodeValues)[keyof typeof CurrencyCodeValues];
|
|
5203
5468
|
/**
|
|
5204
5469
|
* @public
|
|
5205
5470
|
* <p>Describes the price for a Reserved Instance.</p>
|
|
@@ -5226,13 +5491,18 @@ export interface PriceSchedule {
|
|
|
5226
5491
|
}
|
|
5227
5492
|
/**
|
|
5228
5493
|
* @public
|
|
5494
|
+
* @enum
|
|
5229
5495
|
*/
|
|
5230
|
-
export declare
|
|
5231
|
-
active
|
|
5232
|
-
cancelled
|
|
5233
|
-
closed
|
|
5234
|
-
pending
|
|
5235
|
-
}
|
|
5496
|
+
export declare const ListingStatus: {
|
|
5497
|
+
readonly active: "active";
|
|
5498
|
+
readonly cancelled: "cancelled";
|
|
5499
|
+
readonly closed: "closed";
|
|
5500
|
+
readonly pending: "pending";
|
|
5501
|
+
};
|
|
5502
|
+
/**
|
|
5503
|
+
* @public
|
|
5504
|
+
*/
|
|
5505
|
+
export type ListingStatus = (typeof ListingStatus)[keyof typeof ListingStatus];
|
|
5236
5506
|
/**
|
|
5237
5507
|
* @public
|
|
5238
5508
|
* <p>Describes a Reserved Instance listing.</p>
|
|
@@ -5315,16 +5585,21 @@ export interface CancelSpotFleetRequestsRequest {
|
|
|
5315
5585
|
}
|
|
5316
5586
|
/**
|
|
5317
5587
|
* @public
|
|
5588
|
+
* @enum
|
|
5318
5589
|
*/
|
|
5319
|
-
export declare
|
|
5320
|
-
ACTIVE
|
|
5321
|
-
CANCELLED
|
|
5322
|
-
CANCELLED_RUNNING
|
|
5323
|
-
CANCELLED_TERMINATING_INSTANCES
|
|
5324
|
-
FAILED
|
|
5325
|
-
MODIFYING
|
|
5326
|
-
SUBMITTED
|
|
5327
|
-
}
|
|
5590
|
+
export declare const BatchState: {
|
|
5591
|
+
readonly ACTIVE: "active";
|
|
5592
|
+
readonly CANCELLED: "cancelled";
|
|
5593
|
+
readonly CANCELLED_RUNNING: "cancelled_running";
|
|
5594
|
+
readonly CANCELLED_TERMINATING_INSTANCES: "cancelled_terminating";
|
|
5595
|
+
readonly FAILED: "failed";
|
|
5596
|
+
readonly MODIFYING: "modifying";
|
|
5597
|
+
readonly SUBMITTED: "submitted";
|
|
5598
|
+
};
|
|
5599
|
+
/**
|
|
5600
|
+
* @public
|
|
5601
|
+
*/
|
|
5602
|
+
export type BatchState = (typeof BatchState)[keyof typeof BatchState];
|
|
5328
5603
|
/**
|
|
5329
5604
|
* @public
|
|
5330
5605
|
* <p>Describes a Spot Fleet request that was successfully canceled.</p>
|
|
@@ -5345,13 +5620,18 @@ export interface CancelSpotFleetRequestsSuccessItem {
|
|
|
5345
5620
|
}
|
|
5346
5621
|
/**
|
|
5347
5622
|
* @public
|
|
5623
|
+
* @enum
|
|
5348
5624
|
*/
|
|
5349
|
-
export declare
|
|
5350
|
-
FLEET_REQUEST_ID_DOES_NOT_EXIST
|
|
5351
|
-
FLEET_REQUEST_ID_MALFORMED
|
|
5352
|
-
FLEET_REQUEST_NOT_IN_CANCELLABLE_STATE
|
|
5353
|
-
UNEXPECTED_ERROR
|
|
5354
|
-
}
|
|
5625
|
+
export declare const CancelBatchErrorCode: {
|
|
5626
|
+
readonly FLEET_REQUEST_ID_DOES_NOT_EXIST: "fleetRequestIdDoesNotExist";
|
|
5627
|
+
readonly FLEET_REQUEST_ID_MALFORMED: "fleetRequestIdMalformed";
|
|
5628
|
+
readonly FLEET_REQUEST_NOT_IN_CANCELLABLE_STATE: "fleetRequestNotInCancellableState";
|
|
5629
|
+
readonly UNEXPECTED_ERROR: "unexpectedError";
|
|
5630
|
+
};
|
|
5631
|
+
/**
|
|
5632
|
+
* @public
|
|
5633
|
+
*/
|
|
5634
|
+
export type CancelBatchErrorCode = (typeof CancelBatchErrorCode)[keyof typeof CancelBatchErrorCode];
|
|
5355
5635
|
/**
|
|
5356
5636
|
* @public
|
|
5357
5637
|
* <p>Describes a Spot Fleet error.</p>
|
|
@@ -5413,14 +5693,19 @@ export interface CancelSpotInstanceRequestsRequest {
|
|
|
5413
5693
|
}
|
|
5414
5694
|
/**
|
|
5415
5695
|
* @public
|
|
5696
|
+
* @enum
|
|
5416
5697
|
*/
|
|
5417
|
-
export declare
|
|
5418
|
-
active
|
|
5419
|
-
cancelled
|
|
5420
|
-
closed
|
|
5421
|
-
completed
|
|
5422
|
-
open
|
|
5423
|
-
}
|
|
5698
|
+
export declare const CancelSpotInstanceRequestState: {
|
|
5699
|
+
readonly active: "active";
|
|
5700
|
+
readonly cancelled: "cancelled";
|
|
5701
|
+
readonly closed: "closed";
|
|
5702
|
+
readonly completed: "completed";
|
|
5703
|
+
readonly open: "open";
|
|
5704
|
+
};
|
|
5705
|
+
/**
|
|
5706
|
+
* @public
|
|
5707
|
+
*/
|
|
5708
|
+
export type CancelSpotInstanceRequestState = (typeof CancelSpotInstanceRequestState)[keyof typeof CancelSpotInstanceRequestState];
|
|
5424
5709
|
/**
|
|
5425
5710
|
* @public
|
|
5426
5711
|
* <p>Describes a request to cancel a Spot Instance.</p>
|
|
@@ -5732,47 +6017,67 @@ export interface CopySnapshotResult {
|
|
|
5732
6017
|
}
|
|
5733
6018
|
/**
|
|
5734
6019
|
* @public
|
|
6020
|
+
* @enum
|
|
5735
6021
|
*/
|
|
5736
|
-
export declare
|
|
5737
|
-
limited
|
|
5738
|
-
unlimited
|
|
5739
|
-
}
|
|
6022
|
+
export declare const EndDateType: {
|
|
6023
|
+
readonly limited: "limited";
|
|
6024
|
+
readonly unlimited: "unlimited";
|
|
6025
|
+
};
|
|
5740
6026
|
/**
|
|
5741
6027
|
* @public
|
|
5742
6028
|
*/
|
|
5743
|
-
export
|
|
5744
|
-
open = "open",
|
|
5745
|
-
targeted = "targeted"
|
|
5746
|
-
}
|
|
6029
|
+
export type EndDateType = (typeof EndDateType)[keyof typeof EndDateType];
|
|
5747
6030
|
/**
|
|
5748
6031
|
* @public
|
|
6032
|
+
* @enum
|
|
5749
6033
|
*/
|
|
5750
|
-
export declare
|
|
5751
|
-
|
|
5752
|
-
|
|
5753
|
-
|
|
5754
|
-
LINUX_WITH_SQL_SERVER_WEB = "Linux with SQL Server Web",
|
|
5755
|
-
RED_HAT_ENTERPRISE_LINUX = "Red Hat Enterprise Linux",
|
|
5756
|
-
RHEL_WITH_HA = "RHEL with HA",
|
|
5757
|
-
RHEL_WITH_HA_AND_SQL_SERVER_ENTERPRISE = "RHEL with HA and SQL Server Enterprise",
|
|
5758
|
-
RHEL_WITH_HA_AND_SQL_SERVER_STANDARD = "RHEL with HA and SQL Server Standard",
|
|
5759
|
-
RHEL_WITH_SQL_SERVER_ENTERPRISE = "RHEL with SQL Server Enterprise",
|
|
5760
|
-
RHEL_WITH_SQL_SERVER_STANDARD = "RHEL with SQL Server Standard",
|
|
5761
|
-
RHEL_WITH_SQL_SERVER_WEB = "RHEL with SQL Server Web",
|
|
5762
|
-
SUSE_LINUX = "SUSE Linux",
|
|
5763
|
-
WINDOWS = "Windows",
|
|
5764
|
-
WINDOWS_WITH_SQL_SERVER = "Windows with SQL Server",
|
|
5765
|
-
WINDOWS_WITH_SQL_SERVER_ENTERPRISE = "Windows with SQL Server Enterprise",
|
|
5766
|
-
WINDOWS_WITH_SQL_SERVER_STANDARD = "Windows with SQL Server Standard",
|
|
5767
|
-
WINDOWS_WITH_SQL_SERVER_WEB = "Windows with SQL Server Web"
|
|
5768
|
-
}
|
|
6034
|
+
export declare const InstanceMatchCriteria: {
|
|
6035
|
+
readonly open: "open";
|
|
6036
|
+
readonly targeted: "targeted";
|
|
6037
|
+
};
|
|
5769
6038
|
/**
|
|
5770
6039
|
* @public
|
|
5771
6040
|
*/
|
|
5772
|
-
export
|
|
5773
|
-
|
|
5774
|
-
|
|
5775
|
-
|
|
6041
|
+
export type InstanceMatchCriteria = (typeof InstanceMatchCriteria)[keyof typeof InstanceMatchCriteria];
|
|
6042
|
+
/**
|
|
6043
|
+
* @public
|
|
6044
|
+
* @enum
|
|
6045
|
+
*/
|
|
6046
|
+
export declare const CapacityReservationInstancePlatform: {
|
|
6047
|
+
readonly LINUX_UNIX: "Linux/UNIX";
|
|
6048
|
+
readonly LINUX_WITH_SQL_SERVER_ENTERPRISE: "Linux with SQL Server Enterprise";
|
|
6049
|
+
readonly LINUX_WITH_SQL_SERVER_STANDARD: "Linux with SQL Server Standard";
|
|
6050
|
+
readonly LINUX_WITH_SQL_SERVER_WEB: "Linux with SQL Server Web";
|
|
6051
|
+
readonly RED_HAT_ENTERPRISE_LINUX: "Red Hat Enterprise Linux";
|
|
6052
|
+
readonly RHEL_WITH_HA: "RHEL with HA";
|
|
6053
|
+
readonly RHEL_WITH_HA_AND_SQL_SERVER_ENTERPRISE: "RHEL with HA and SQL Server Enterprise";
|
|
6054
|
+
readonly RHEL_WITH_HA_AND_SQL_SERVER_STANDARD: "RHEL with HA and SQL Server Standard";
|
|
6055
|
+
readonly RHEL_WITH_SQL_SERVER_ENTERPRISE: "RHEL with SQL Server Enterprise";
|
|
6056
|
+
readonly RHEL_WITH_SQL_SERVER_STANDARD: "RHEL with SQL Server Standard";
|
|
6057
|
+
readonly RHEL_WITH_SQL_SERVER_WEB: "RHEL with SQL Server Web";
|
|
6058
|
+
readonly SUSE_LINUX: "SUSE Linux";
|
|
6059
|
+
readonly WINDOWS: "Windows";
|
|
6060
|
+
readonly WINDOWS_WITH_SQL_SERVER: "Windows with SQL Server";
|
|
6061
|
+
readonly WINDOWS_WITH_SQL_SERVER_ENTERPRISE: "Windows with SQL Server Enterprise";
|
|
6062
|
+
readonly WINDOWS_WITH_SQL_SERVER_STANDARD: "Windows with SQL Server Standard";
|
|
6063
|
+
readonly WINDOWS_WITH_SQL_SERVER_WEB: "Windows with SQL Server Web";
|
|
6064
|
+
};
|
|
6065
|
+
/**
|
|
6066
|
+
* @public
|
|
6067
|
+
*/
|
|
6068
|
+
export type CapacityReservationInstancePlatform = (typeof CapacityReservationInstancePlatform)[keyof typeof CapacityReservationInstancePlatform];
|
|
6069
|
+
/**
|
|
6070
|
+
* @public
|
|
6071
|
+
* @enum
|
|
6072
|
+
*/
|
|
6073
|
+
export declare const CapacityReservationTenancy: {
|
|
6074
|
+
readonly dedicated: "dedicated";
|
|
6075
|
+
readonly default: "default";
|
|
6076
|
+
};
|
|
6077
|
+
/**
|
|
6078
|
+
* @public
|
|
6079
|
+
*/
|
|
6080
|
+
export type CapacityReservationTenancy = (typeof CapacityReservationTenancy)[keyof typeof CapacityReservationTenancy];
|
|
5776
6081
|
/**
|
|
5777
6082
|
* @public
|
|
5778
6083
|
*/
|
|
@@ -5919,14 +6224,19 @@ export interface CapacityAllocation {
|
|
|
5919
6224
|
}
|
|
5920
6225
|
/**
|
|
5921
6226
|
* @public
|
|
6227
|
+
* @enum
|
|
5922
6228
|
*/
|
|
5923
|
-
export declare
|
|
5924
|
-
active
|
|
5925
|
-
cancelled
|
|
5926
|
-
expired
|
|
5927
|
-
failed
|
|
5928
|
-
pending
|
|
5929
|
-
}
|
|
6229
|
+
export declare const CapacityReservationState: {
|
|
6230
|
+
readonly active: "active";
|
|
6231
|
+
readonly cancelled: "cancelled";
|
|
6232
|
+
readonly expired: "expired";
|
|
6233
|
+
readonly failed: "failed";
|
|
6234
|
+
readonly pending: "pending";
|
|
6235
|
+
};
|
|
6236
|
+
/**
|
|
6237
|
+
* @public
|
|
6238
|
+
*/
|
|
6239
|
+
export type CapacityReservationState = (typeof CapacityReservationState)[keyof typeof CapacityReservationState];
|
|
5930
6240
|
/**
|
|
5931
6241
|
* @public
|
|
5932
6242
|
* <p>Describes a Capacity Reservation.</p>
|
|
@@ -6112,653 +6422,663 @@ export interface CreateCapacityReservationResult {
|
|
|
6112
6422
|
}
|
|
6113
6423
|
/**
|
|
6114
6424
|
* @public
|
|
6115
|
-
|
|
6116
|
-
|
|
6117
|
-
|
|
6118
|
-
|
|
6119
|
-
|
|
6120
|
-
|
|
6121
|
-
|
|
6122
|
-
|
|
6123
|
-
|
|
6124
|
-
|
|
6125
|
-
|
|
6126
|
-
|
|
6127
|
-
|
|
6128
|
-
|
|
6129
|
-
|
|
6130
|
-
|
|
6131
|
-
|
|
6132
|
-
|
|
6133
|
-
|
|
6134
|
-
|
|
6135
|
-
|
|
6136
|
-
|
|
6137
|
-
|
|
6138
|
-
|
|
6139
|
-
|
|
6140
|
-
|
|
6141
|
-
|
|
6142
|
-
|
|
6143
|
-
|
|
6144
|
-
|
|
6145
|
-
|
|
6146
|
-
|
|
6147
|
-
|
|
6148
|
-
|
|
6149
|
-
|
|
6150
|
-
|
|
6151
|
-
|
|
6152
|
-
|
|
6153
|
-
|
|
6154
|
-
|
|
6155
|
-
|
|
6156
|
-
|
|
6157
|
-
|
|
6158
|
-
|
|
6159
|
-
|
|
6160
|
-
|
|
6161
|
-
|
|
6162
|
-
|
|
6163
|
-
|
|
6164
|
-
|
|
6165
|
-
|
|
6166
|
-
|
|
6167
|
-
|
|
6168
|
-
|
|
6169
|
-
|
|
6170
|
-
|
|
6171
|
-
|
|
6172
|
-
|
|
6173
|
-
|
|
6174
|
-
|
|
6175
|
-
|
|
6176
|
-
|
|
6177
|
-
|
|
6178
|
-
|
|
6179
|
-
|
|
6180
|
-
|
|
6181
|
-
|
|
6182
|
-
|
|
6183
|
-
|
|
6184
|
-
|
|
6185
|
-
|
|
6186
|
-
|
|
6187
|
-
|
|
6188
|
-
|
|
6189
|
-
|
|
6190
|
-
|
|
6191
|
-
|
|
6192
|
-
|
|
6193
|
-
|
|
6194
|
-
|
|
6195
|
-
|
|
6196
|
-
|
|
6197
|
-
|
|
6198
|
-
|
|
6199
|
-
|
|
6200
|
-
|
|
6201
|
-
|
|
6202
|
-
|
|
6203
|
-
|
|
6204
|
-
|
|
6205
|
-
|
|
6206
|
-
|
|
6207
|
-
|
|
6208
|
-
|
|
6209
|
-
|
|
6210
|
-
|
|
6211
|
-
|
|
6212
|
-
|
|
6213
|
-
|
|
6214
|
-
|
|
6215
|
-
|
|
6216
|
-
|
|
6217
|
-
|
|
6218
|
-
|
|
6219
|
-
|
|
6220
|
-
|
|
6221
|
-
|
|
6222
|
-
|
|
6223
|
-
|
|
6224
|
-
|
|
6225
|
-
|
|
6226
|
-
|
|
6227
|
-
|
|
6228
|
-
|
|
6229
|
-
|
|
6230
|
-
|
|
6231
|
-
|
|
6232
|
-
|
|
6233
|
-
|
|
6234
|
-
|
|
6235
|
-
|
|
6236
|
-
|
|
6237
|
-
|
|
6238
|
-
|
|
6239
|
-
|
|
6240
|
-
|
|
6241
|
-
|
|
6242
|
-
|
|
6243
|
-
|
|
6244
|
-
|
|
6245
|
-
|
|
6246
|
-
|
|
6247
|
-
|
|
6248
|
-
|
|
6249
|
-
|
|
6250
|
-
|
|
6251
|
-
|
|
6252
|
-
|
|
6253
|
-
|
|
6254
|
-
|
|
6255
|
-
|
|
6256
|
-
|
|
6257
|
-
|
|
6258
|
-
|
|
6259
|
-
|
|
6260
|
-
|
|
6261
|
-
|
|
6262
|
-
|
|
6263
|
-
|
|
6264
|
-
|
|
6265
|
-
|
|
6266
|
-
|
|
6267
|
-
|
|
6268
|
-
|
|
6269
|
-
|
|
6270
|
-
|
|
6271
|
-
|
|
6272
|
-
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
|
|
6276
|
-
|
|
6277
|
-
|
|
6278
|
-
|
|
6279
|
-
|
|
6280
|
-
|
|
6281
|
-
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
|
|
6285
|
-
|
|
6286
|
-
|
|
6287
|
-
|
|
6288
|
-
|
|
6289
|
-
|
|
6290
|
-
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
|
|
6294
|
-
|
|
6295
|
-
|
|
6296
|
-
|
|
6297
|
-
|
|
6298
|
-
|
|
6299
|
-
|
|
6300
|
-
|
|
6301
|
-
|
|
6302
|
-
|
|
6303
|
-
|
|
6304
|
-
|
|
6305
|
-
|
|
6306
|
-
|
|
6307
|
-
|
|
6308
|
-
|
|
6309
|
-
|
|
6310
|
-
|
|
6311
|
-
|
|
6312
|
-
|
|
6313
|
-
|
|
6314
|
-
|
|
6315
|
-
|
|
6316
|
-
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
-
|
|
6320
|
-
|
|
6321
|
-
|
|
6322
|
-
|
|
6323
|
-
|
|
6324
|
-
|
|
6325
|
-
|
|
6326
|
-
|
|
6327
|
-
|
|
6328
|
-
|
|
6329
|
-
|
|
6330
|
-
|
|
6331
|
-
|
|
6332
|
-
|
|
6333
|
-
|
|
6334
|
-
|
|
6335
|
-
|
|
6336
|
-
|
|
6337
|
-
|
|
6338
|
-
|
|
6339
|
-
|
|
6340
|
-
|
|
6341
|
-
|
|
6342
|
-
|
|
6343
|
-
|
|
6344
|
-
|
|
6345
|
-
|
|
6346
|
-
|
|
6347
|
-
|
|
6348
|
-
|
|
6349
|
-
|
|
6350
|
-
|
|
6351
|
-
|
|
6352
|
-
|
|
6353
|
-
|
|
6354
|
-
|
|
6355
|
-
|
|
6356
|
-
|
|
6357
|
-
|
|
6358
|
-
|
|
6359
|
-
|
|
6360
|
-
|
|
6361
|
-
|
|
6362
|
-
|
|
6363
|
-
|
|
6364
|
-
|
|
6365
|
-
|
|
6366
|
-
|
|
6367
|
-
|
|
6368
|
-
|
|
6369
|
-
|
|
6370
|
-
|
|
6371
|
-
|
|
6372
|
-
|
|
6373
|
-
|
|
6374
|
-
|
|
6375
|
-
|
|
6376
|
-
|
|
6377
|
-
|
|
6378
|
-
|
|
6379
|
-
|
|
6380
|
-
|
|
6381
|
-
|
|
6382
|
-
|
|
6383
|
-
|
|
6384
|
-
|
|
6385
|
-
|
|
6386
|
-
|
|
6387
|
-
|
|
6388
|
-
|
|
6389
|
-
|
|
6390
|
-
|
|
6391
|
-
|
|
6392
|
-
|
|
6393
|
-
|
|
6394
|
-
|
|
6395
|
-
|
|
6396
|
-
|
|
6397
|
-
|
|
6398
|
-
|
|
6399
|
-
|
|
6400
|
-
|
|
6401
|
-
|
|
6402
|
-
|
|
6403
|
-
|
|
6404
|
-
|
|
6405
|
-
|
|
6406
|
-
|
|
6407
|
-
|
|
6408
|
-
|
|
6409
|
-
|
|
6410
|
-
|
|
6411
|
-
|
|
6412
|
-
|
|
6413
|
-
|
|
6414
|
-
|
|
6415
|
-
|
|
6416
|
-
|
|
6417
|
-
|
|
6418
|
-
|
|
6419
|
-
|
|
6420
|
-
|
|
6421
|
-
|
|
6422
|
-
|
|
6423
|
-
|
|
6424
|
-
|
|
6425
|
-
|
|
6426
|
-
|
|
6427
|
-
|
|
6428
|
-
|
|
6429
|
-
|
|
6430
|
-
|
|
6431
|
-
|
|
6432
|
-
|
|
6433
|
-
|
|
6434
|
-
|
|
6435
|
-
|
|
6436
|
-
|
|
6437
|
-
|
|
6438
|
-
|
|
6439
|
-
|
|
6440
|
-
|
|
6441
|
-
|
|
6442
|
-
|
|
6443
|
-
|
|
6444
|
-
|
|
6445
|
-
|
|
6446
|
-
|
|
6447
|
-
|
|
6448
|
-
|
|
6449
|
-
|
|
6450
|
-
|
|
6451
|
-
|
|
6452
|
-
|
|
6453
|
-
|
|
6454
|
-
|
|
6455
|
-
|
|
6456
|
-
|
|
6457
|
-
|
|
6458
|
-
|
|
6459
|
-
|
|
6460
|
-
|
|
6461
|
-
|
|
6462
|
-
|
|
6463
|
-
|
|
6464
|
-
|
|
6465
|
-
|
|
6466
|
-
|
|
6467
|
-
|
|
6468
|
-
|
|
6469
|
-
|
|
6470
|
-
|
|
6471
|
-
|
|
6472
|
-
|
|
6473
|
-
|
|
6474
|
-
|
|
6475
|
-
|
|
6476
|
-
|
|
6477
|
-
|
|
6478
|
-
|
|
6479
|
-
|
|
6480
|
-
|
|
6481
|
-
|
|
6482
|
-
|
|
6483
|
-
|
|
6484
|
-
|
|
6485
|
-
|
|
6486
|
-
|
|
6487
|
-
|
|
6488
|
-
|
|
6489
|
-
|
|
6490
|
-
|
|
6491
|
-
|
|
6492
|
-
|
|
6493
|
-
|
|
6494
|
-
|
|
6495
|
-
|
|
6496
|
-
|
|
6497
|
-
|
|
6498
|
-
|
|
6499
|
-
|
|
6500
|
-
|
|
6501
|
-
|
|
6502
|
-
|
|
6503
|
-
|
|
6504
|
-
|
|
6505
|
-
|
|
6506
|
-
|
|
6507
|
-
|
|
6508
|
-
|
|
6509
|
-
|
|
6510
|
-
|
|
6511
|
-
|
|
6512
|
-
|
|
6513
|
-
|
|
6514
|
-
|
|
6515
|
-
|
|
6516
|
-
|
|
6517
|
-
|
|
6518
|
-
|
|
6519
|
-
|
|
6520
|
-
|
|
6521
|
-
|
|
6522
|
-
|
|
6523
|
-
|
|
6524
|
-
|
|
6525
|
-
|
|
6526
|
-
|
|
6527
|
-
|
|
6528
|
-
|
|
6529
|
-
|
|
6530
|
-
|
|
6531
|
-
|
|
6532
|
-
|
|
6533
|
-
|
|
6534
|
-
|
|
6535
|
-
|
|
6536
|
-
|
|
6537
|
-
|
|
6538
|
-
|
|
6539
|
-
|
|
6540
|
-
|
|
6541
|
-
|
|
6542
|
-
|
|
6543
|
-
|
|
6544
|
-
|
|
6545
|
-
|
|
6546
|
-
|
|
6547
|
-
|
|
6548
|
-
|
|
6549
|
-
|
|
6550
|
-
|
|
6551
|
-
|
|
6552
|
-
|
|
6553
|
-
|
|
6554
|
-
|
|
6555
|
-
|
|
6556
|
-
|
|
6557
|
-
|
|
6558
|
-
|
|
6559
|
-
|
|
6560
|
-
|
|
6561
|
-
|
|
6562
|
-
|
|
6563
|
-
|
|
6564
|
-
|
|
6565
|
-
|
|
6566
|
-
|
|
6567
|
-
|
|
6568
|
-
|
|
6569
|
-
|
|
6570
|
-
|
|
6571
|
-
|
|
6572
|
-
|
|
6573
|
-
|
|
6574
|
-
|
|
6575
|
-
|
|
6576
|
-
|
|
6577
|
-
|
|
6578
|
-
|
|
6579
|
-
|
|
6580
|
-
|
|
6581
|
-
|
|
6582
|
-
|
|
6583
|
-
|
|
6584
|
-
|
|
6585
|
-
|
|
6586
|
-
|
|
6587
|
-
|
|
6588
|
-
|
|
6589
|
-
|
|
6590
|
-
|
|
6591
|
-
|
|
6592
|
-
|
|
6593
|
-
|
|
6594
|
-
|
|
6595
|
-
|
|
6596
|
-
|
|
6597
|
-
|
|
6598
|
-
|
|
6599
|
-
|
|
6600
|
-
|
|
6601
|
-
|
|
6602
|
-
|
|
6603
|
-
|
|
6604
|
-
|
|
6605
|
-
|
|
6606
|
-
|
|
6607
|
-
|
|
6608
|
-
|
|
6609
|
-
|
|
6610
|
-
|
|
6611
|
-
|
|
6612
|
-
|
|
6613
|
-
|
|
6614
|
-
|
|
6615
|
-
|
|
6616
|
-
|
|
6617
|
-
|
|
6618
|
-
|
|
6619
|
-
|
|
6620
|
-
|
|
6621
|
-
|
|
6622
|
-
|
|
6623
|
-
|
|
6624
|
-
|
|
6625
|
-
|
|
6626
|
-
|
|
6627
|
-
|
|
6628
|
-
|
|
6629
|
-
|
|
6630
|
-
|
|
6631
|
-
|
|
6632
|
-
|
|
6633
|
-
|
|
6634
|
-
|
|
6635
|
-
|
|
6636
|
-
|
|
6637
|
-
|
|
6638
|
-
|
|
6639
|
-
|
|
6640
|
-
|
|
6641
|
-
|
|
6642
|
-
|
|
6643
|
-
|
|
6644
|
-
|
|
6645
|
-
|
|
6646
|
-
|
|
6647
|
-
|
|
6648
|
-
|
|
6649
|
-
|
|
6650
|
-
|
|
6651
|
-
|
|
6652
|
-
|
|
6653
|
-
|
|
6654
|
-
|
|
6655
|
-
|
|
6656
|
-
|
|
6657
|
-
|
|
6658
|
-
|
|
6659
|
-
|
|
6660
|
-
|
|
6661
|
-
|
|
6662
|
-
|
|
6663
|
-
|
|
6664
|
-
|
|
6665
|
-
|
|
6666
|
-
|
|
6667
|
-
|
|
6668
|
-
|
|
6669
|
-
|
|
6670
|
-
|
|
6671
|
-
|
|
6672
|
-
|
|
6673
|
-
|
|
6674
|
-
|
|
6675
|
-
|
|
6676
|
-
|
|
6677
|
-
|
|
6678
|
-
|
|
6679
|
-
|
|
6680
|
-
|
|
6681
|
-
|
|
6682
|
-
|
|
6683
|
-
|
|
6684
|
-
|
|
6685
|
-
|
|
6686
|
-
|
|
6687
|
-
|
|
6688
|
-
|
|
6689
|
-
|
|
6690
|
-
|
|
6691
|
-
|
|
6692
|
-
|
|
6693
|
-
|
|
6694
|
-
|
|
6695
|
-
|
|
6696
|
-
|
|
6697
|
-
|
|
6698
|
-
|
|
6699
|
-
|
|
6700
|
-
|
|
6701
|
-
|
|
6702
|
-
|
|
6703
|
-
|
|
6704
|
-
|
|
6705
|
-
|
|
6706
|
-
|
|
6707
|
-
|
|
6708
|
-
|
|
6709
|
-
|
|
6710
|
-
|
|
6711
|
-
|
|
6712
|
-
|
|
6713
|
-
|
|
6714
|
-
|
|
6715
|
-
|
|
6716
|
-
|
|
6717
|
-
|
|
6718
|
-
|
|
6719
|
-
|
|
6720
|
-
|
|
6721
|
-
|
|
6722
|
-
|
|
6723
|
-
|
|
6724
|
-
|
|
6725
|
-
|
|
6726
|
-
|
|
6727
|
-
|
|
6728
|
-
|
|
6729
|
-
|
|
6730
|
-
|
|
6731
|
-
|
|
6732
|
-
|
|
6733
|
-
|
|
6734
|
-
|
|
6735
|
-
|
|
6736
|
-
|
|
6737
|
-
|
|
6738
|
-
|
|
6739
|
-
|
|
6740
|
-
|
|
6741
|
-
|
|
6742
|
-
|
|
6743
|
-
|
|
6744
|
-
|
|
6745
|
-
|
|
6746
|
-
|
|
6747
|
-
|
|
6748
|
-
|
|
6749
|
-
|
|
6750
|
-
|
|
6751
|
-
|
|
6752
|
-
|
|
6753
|
-
|
|
6754
|
-
|
|
6755
|
-
|
|
6756
|
-
|
|
6757
|
-
|
|
6758
|
-
|
|
6759
|
-
|
|
6760
|
-
|
|
6761
|
-
|
|
6425
|
+
* @enum
|
|
6426
|
+
*/
|
|
6427
|
+
export declare const FleetInstanceMatchCriteria: {
|
|
6428
|
+
readonly open: "open";
|
|
6429
|
+
};
|
|
6430
|
+
/**
|
|
6431
|
+
* @public
|
|
6432
|
+
*/
|
|
6433
|
+
export type FleetInstanceMatchCriteria = (typeof FleetInstanceMatchCriteria)[keyof typeof FleetInstanceMatchCriteria];
|
|
6434
|
+
/**
|
|
6435
|
+
* @public
|
|
6436
|
+
* @enum
|
|
6437
|
+
*/
|
|
6438
|
+
export declare const _InstanceType: {
|
|
6439
|
+
readonly a1_2xlarge: "a1.2xlarge";
|
|
6440
|
+
readonly a1_4xlarge: "a1.4xlarge";
|
|
6441
|
+
readonly a1_large: "a1.large";
|
|
6442
|
+
readonly a1_medium: "a1.medium";
|
|
6443
|
+
readonly a1_metal: "a1.metal";
|
|
6444
|
+
readonly a1_xlarge: "a1.xlarge";
|
|
6445
|
+
readonly c1_medium: "c1.medium";
|
|
6446
|
+
readonly c1_xlarge: "c1.xlarge";
|
|
6447
|
+
readonly c3_2xlarge: "c3.2xlarge";
|
|
6448
|
+
readonly c3_4xlarge: "c3.4xlarge";
|
|
6449
|
+
readonly c3_8xlarge: "c3.8xlarge";
|
|
6450
|
+
readonly c3_large: "c3.large";
|
|
6451
|
+
readonly c3_xlarge: "c3.xlarge";
|
|
6452
|
+
readonly c4_2xlarge: "c4.2xlarge";
|
|
6453
|
+
readonly c4_4xlarge: "c4.4xlarge";
|
|
6454
|
+
readonly c4_8xlarge: "c4.8xlarge";
|
|
6455
|
+
readonly c4_large: "c4.large";
|
|
6456
|
+
readonly c4_xlarge: "c4.xlarge";
|
|
6457
|
+
readonly c5_12xlarge: "c5.12xlarge";
|
|
6458
|
+
readonly c5_18xlarge: "c5.18xlarge";
|
|
6459
|
+
readonly c5_24xlarge: "c5.24xlarge";
|
|
6460
|
+
readonly c5_2xlarge: "c5.2xlarge";
|
|
6461
|
+
readonly c5_4xlarge: "c5.4xlarge";
|
|
6462
|
+
readonly c5_9xlarge: "c5.9xlarge";
|
|
6463
|
+
readonly c5_large: "c5.large";
|
|
6464
|
+
readonly c5_metal: "c5.metal";
|
|
6465
|
+
readonly c5_xlarge: "c5.xlarge";
|
|
6466
|
+
readonly c5a_12xlarge: "c5a.12xlarge";
|
|
6467
|
+
readonly c5a_16xlarge: "c5a.16xlarge";
|
|
6468
|
+
readonly c5a_24xlarge: "c5a.24xlarge";
|
|
6469
|
+
readonly c5a_2xlarge: "c5a.2xlarge";
|
|
6470
|
+
readonly c5a_4xlarge: "c5a.4xlarge";
|
|
6471
|
+
readonly c5a_8xlarge: "c5a.8xlarge";
|
|
6472
|
+
readonly c5a_large: "c5a.large";
|
|
6473
|
+
readonly c5a_xlarge: "c5a.xlarge";
|
|
6474
|
+
readonly c5ad_12xlarge: "c5ad.12xlarge";
|
|
6475
|
+
readonly c5ad_16xlarge: "c5ad.16xlarge";
|
|
6476
|
+
readonly c5ad_24xlarge: "c5ad.24xlarge";
|
|
6477
|
+
readonly c5ad_2xlarge: "c5ad.2xlarge";
|
|
6478
|
+
readonly c5ad_4xlarge: "c5ad.4xlarge";
|
|
6479
|
+
readonly c5ad_8xlarge: "c5ad.8xlarge";
|
|
6480
|
+
readonly c5ad_large: "c5ad.large";
|
|
6481
|
+
readonly c5ad_xlarge: "c5ad.xlarge";
|
|
6482
|
+
readonly c5d_12xlarge: "c5d.12xlarge";
|
|
6483
|
+
readonly c5d_18xlarge: "c5d.18xlarge";
|
|
6484
|
+
readonly c5d_24xlarge: "c5d.24xlarge";
|
|
6485
|
+
readonly c5d_2xlarge: "c5d.2xlarge";
|
|
6486
|
+
readonly c5d_4xlarge: "c5d.4xlarge";
|
|
6487
|
+
readonly c5d_9xlarge: "c5d.9xlarge";
|
|
6488
|
+
readonly c5d_large: "c5d.large";
|
|
6489
|
+
readonly c5d_metal: "c5d.metal";
|
|
6490
|
+
readonly c5d_xlarge: "c5d.xlarge";
|
|
6491
|
+
readonly c5n_18xlarge: "c5n.18xlarge";
|
|
6492
|
+
readonly c5n_2xlarge: "c5n.2xlarge";
|
|
6493
|
+
readonly c5n_4xlarge: "c5n.4xlarge";
|
|
6494
|
+
readonly c5n_9xlarge: "c5n.9xlarge";
|
|
6495
|
+
readonly c5n_large: "c5n.large";
|
|
6496
|
+
readonly c5n_metal: "c5n.metal";
|
|
6497
|
+
readonly c5n_xlarge: "c5n.xlarge";
|
|
6498
|
+
readonly c6a_12xlarge: "c6a.12xlarge";
|
|
6499
|
+
readonly c6a_16xlarge: "c6a.16xlarge";
|
|
6500
|
+
readonly c6a_24xlarge: "c6a.24xlarge";
|
|
6501
|
+
readonly c6a_2xlarge: "c6a.2xlarge";
|
|
6502
|
+
readonly c6a_32xlarge: "c6a.32xlarge";
|
|
6503
|
+
readonly c6a_48xlarge: "c6a.48xlarge";
|
|
6504
|
+
readonly c6a_4xlarge: "c6a.4xlarge";
|
|
6505
|
+
readonly c6a_8xlarge: "c6a.8xlarge";
|
|
6506
|
+
readonly c6a_large: "c6a.large";
|
|
6507
|
+
readonly c6a_metal: "c6a.metal";
|
|
6508
|
+
readonly c6a_xlarge: "c6a.xlarge";
|
|
6509
|
+
readonly c6g_12xlarge: "c6g.12xlarge";
|
|
6510
|
+
readonly c6g_16xlarge: "c6g.16xlarge";
|
|
6511
|
+
readonly c6g_2xlarge: "c6g.2xlarge";
|
|
6512
|
+
readonly c6g_4xlarge: "c6g.4xlarge";
|
|
6513
|
+
readonly c6g_8xlarge: "c6g.8xlarge";
|
|
6514
|
+
readonly c6g_large: "c6g.large";
|
|
6515
|
+
readonly c6g_medium: "c6g.medium";
|
|
6516
|
+
readonly c6g_metal: "c6g.metal";
|
|
6517
|
+
readonly c6g_xlarge: "c6g.xlarge";
|
|
6518
|
+
readonly c6gd_12xlarge: "c6gd.12xlarge";
|
|
6519
|
+
readonly c6gd_16xlarge: "c6gd.16xlarge";
|
|
6520
|
+
readonly c6gd_2xlarge: "c6gd.2xlarge";
|
|
6521
|
+
readonly c6gd_4xlarge: "c6gd.4xlarge";
|
|
6522
|
+
readonly c6gd_8xlarge: "c6gd.8xlarge";
|
|
6523
|
+
readonly c6gd_large: "c6gd.large";
|
|
6524
|
+
readonly c6gd_medium: "c6gd.medium";
|
|
6525
|
+
readonly c6gd_metal: "c6gd.metal";
|
|
6526
|
+
readonly c6gd_xlarge: "c6gd.xlarge";
|
|
6527
|
+
readonly c6gn_12xlarge: "c6gn.12xlarge";
|
|
6528
|
+
readonly c6gn_16xlarge: "c6gn.16xlarge";
|
|
6529
|
+
readonly c6gn_2xlarge: "c6gn.2xlarge";
|
|
6530
|
+
readonly c6gn_4xlarge: "c6gn.4xlarge";
|
|
6531
|
+
readonly c6gn_8xlarge: "c6gn.8xlarge";
|
|
6532
|
+
readonly c6gn_large: "c6gn.large";
|
|
6533
|
+
readonly c6gn_medium: "c6gn.medium";
|
|
6534
|
+
readonly c6gn_xlarge: "c6gn.xlarge";
|
|
6535
|
+
readonly c6i_12xlarge: "c6i.12xlarge";
|
|
6536
|
+
readonly c6i_16xlarge: "c6i.16xlarge";
|
|
6537
|
+
readonly c6i_24xlarge: "c6i.24xlarge";
|
|
6538
|
+
readonly c6i_2xlarge: "c6i.2xlarge";
|
|
6539
|
+
readonly c6i_32xlarge: "c6i.32xlarge";
|
|
6540
|
+
readonly c6i_4xlarge: "c6i.4xlarge";
|
|
6541
|
+
readonly c6i_8xlarge: "c6i.8xlarge";
|
|
6542
|
+
readonly c6i_large: "c6i.large";
|
|
6543
|
+
readonly c6i_metal: "c6i.metal";
|
|
6544
|
+
readonly c6i_xlarge: "c6i.xlarge";
|
|
6545
|
+
readonly c6id_12xlarge: "c6id.12xlarge";
|
|
6546
|
+
readonly c6id_16xlarge: "c6id.16xlarge";
|
|
6547
|
+
readonly c6id_24xlarge: "c6id.24xlarge";
|
|
6548
|
+
readonly c6id_2xlarge: "c6id.2xlarge";
|
|
6549
|
+
readonly c6id_32xlarge: "c6id.32xlarge";
|
|
6550
|
+
readonly c6id_4xlarge: "c6id.4xlarge";
|
|
6551
|
+
readonly c6id_8xlarge: "c6id.8xlarge";
|
|
6552
|
+
readonly c6id_large: "c6id.large";
|
|
6553
|
+
readonly c6id_metal: "c6id.metal";
|
|
6554
|
+
readonly c6id_xlarge: "c6id.xlarge";
|
|
6555
|
+
readonly c6in_12xlarge: "c6in.12xlarge";
|
|
6556
|
+
readonly c6in_16xlarge: "c6in.16xlarge";
|
|
6557
|
+
readonly c6in_24xlarge: "c6in.24xlarge";
|
|
6558
|
+
readonly c6in_2xlarge: "c6in.2xlarge";
|
|
6559
|
+
readonly c6in_32xlarge: "c6in.32xlarge";
|
|
6560
|
+
readonly c6in_4xlarge: "c6in.4xlarge";
|
|
6561
|
+
readonly c6in_8xlarge: "c6in.8xlarge";
|
|
6562
|
+
readonly c6in_large: "c6in.large";
|
|
6563
|
+
readonly c6in_xlarge: "c6in.xlarge";
|
|
6564
|
+
readonly c7g_12xlarge: "c7g.12xlarge";
|
|
6565
|
+
readonly c7g_16xlarge: "c7g.16xlarge";
|
|
6566
|
+
readonly c7g_2xlarge: "c7g.2xlarge";
|
|
6567
|
+
readonly c7g_4xlarge: "c7g.4xlarge";
|
|
6568
|
+
readonly c7g_8xlarge: "c7g.8xlarge";
|
|
6569
|
+
readonly c7g_large: "c7g.large";
|
|
6570
|
+
readonly c7g_medium: "c7g.medium";
|
|
6571
|
+
readonly c7g_metal: "c7g.metal";
|
|
6572
|
+
readonly c7g_xlarge: "c7g.xlarge";
|
|
6573
|
+
readonly cc1_4xlarge: "cc1.4xlarge";
|
|
6574
|
+
readonly cc2_8xlarge: "cc2.8xlarge";
|
|
6575
|
+
readonly cg1_4xlarge: "cg1.4xlarge";
|
|
6576
|
+
readonly cr1_8xlarge: "cr1.8xlarge";
|
|
6577
|
+
readonly d2_2xlarge: "d2.2xlarge";
|
|
6578
|
+
readonly d2_4xlarge: "d2.4xlarge";
|
|
6579
|
+
readonly d2_8xlarge: "d2.8xlarge";
|
|
6580
|
+
readonly d2_xlarge: "d2.xlarge";
|
|
6581
|
+
readonly d3_2xlarge: "d3.2xlarge";
|
|
6582
|
+
readonly d3_4xlarge: "d3.4xlarge";
|
|
6583
|
+
readonly d3_8xlarge: "d3.8xlarge";
|
|
6584
|
+
readonly d3_xlarge: "d3.xlarge";
|
|
6585
|
+
readonly d3en_12xlarge: "d3en.12xlarge";
|
|
6586
|
+
readonly d3en_2xlarge: "d3en.2xlarge";
|
|
6587
|
+
readonly d3en_4xlarge: "d3en.4xlarge";
|
|
6588
|
+
readonly d3en_6xlarge: "d3en.6xlarge";
|
|
6589
|
+
readonly d3en_8xlarge: "d3en.8xlarge";
|
|
6590
|
+
readonly d3en_xlarge: "d3en.xlarge";
|
|
6591
|
+
readonly dl1_24xlarge: "dl1.24xlarge";
|
|
6592
|
+
readonly f1_16xlarge: "f1.16xlarge";
|
|
6593
|
+
readonly f1_2xlarge: "f1.2xlarge";
|
|
6594
|
+
readonly f1_4xlarge: "f1.4xlarge";
|
|
6595
|
+
readonly g2_2xlarge: "g2.2xlarge";
|
|
6596
|
+
readonly g2_8xlarge: "g2.8xlarge";
|
|
6597
|
+
readonly g3_16xlarge: "g3.16xlarge";
|
|
6598
|
+
readonly g3_4xlarge: "g3.4xlarge";
|
|
6599
|
+
readonly g3_8xlarge: "g3.8xlarge";
|
|
6600
|
+
readonly g3s_xlarge: "g3s.xlarge";
|
|
6601
|
+
readonly g4ad_16xlarge: "g4ad.16xlarge";
|
|
6602
|
+
readonly g4ad_2xlarge: "g4ad.2xlarge";
|
|
6603
|
+
readonly g4ad_4xlarge: "g4ad.4xlarge";
|
|
6604
|
+
readonly g4ad_8xlarge: "g4ad.8xlarge";
|
|
6605
|
+
readonly g4ad_xlarge: "g4ad.xlarge";
|
|
6606
|
+
readonly g4dn_12xlarge: "g4dn.12xlarge";
|
|
6607
|
+
readonly g4dn_16xlarge: "g4dn.16xlarge";
|
|
6608
|
+
readonly g4dn_2xlarge: "g4dn.2xlarge";
|
|
6609
|
+
readonly g4dn_4xlarge: "g4dn.4xlarge";
|
|
6610
|
+
readonly g4dn_8xlarge: "g4dn.8xlarge";
|
|
6611
|
+
readonly g4dn_metal: "g4dn.metal";
|
|
6612
|
+
readonly g4dn_xlarge: "g4dn.xlarge";
|
|
6613
|
+
readonly g5_12xlarge: "g5.12xlarge";
|
|
6614
|
+
readonly g5_16xlarge: "g5.16xlarge";
|
|
6615
|
+
readonly g5_24xlarge: "g5.24xlarge";
|
|
6616
|
+
readonly g5_2xlarge: "g5.2xlarge";
|
|
6617
|
+
readonly g5_48xlarge: "g5.48xlarge";
|
|
6618
|
+
readonly g5_4xlarge: "g5.4xlarge";
|
|
6619
|
+
readonly g5_8xlarge: "g5.8xlarge";
|
|
6620
|
+
readonly g5_xlarge: "g5.xlarge";
|
|
6621
|
+
readonly g5g_16xlarge: "g5g.16xlarge";
|
|
6622
|
+
readonly g5g_2xlarge: "g5g.2xlarge";
|
|
6623
|
+
readonly g5g_4xlarge: "g5g.4xlarge";
|
|
6624
|
+
readonly g5g_8xlarge: "g5g.8xlarge";
|
|
6625
|
+
readonly g5g_metal: "g5g.metal";
|
|
6626
|
+
readonly g5g_xlarge: "g5g.xlarge";
|
|
6627
|
+
readonly h1_16xlarge: "h1.16xlarge";
|
|
6628
|
+
readonly h1_2xlarge: "h1.2xlarge";
|
|
6629
|
+
readonly h1_4xlarge: "h1.4xlarge";
|
|
6630
|
+
readonly h1_8xlarge: "h1.8xlarge";
|
|
6631
|
+
readonly hi1_4xlarge: "hi1.4xlarge";
|
|
6632
|
+
readonly hpc6a_48xlarge: "hpc6a.48xlarge";
|
|
6633
|
+
readonly hpc6id_32xlarge: "hpc6id.32xlarge";
|
|
6634
|
+
readonly hs1_8xlarge: "hs1.8xlarge";
|
|
6635
|
+
readonly i2_2xlarge: "i2.2xlarge";
|
|
6636
|
+
readonly i2_4xlarge: "i2.4xlarge";
|
|
6637
|
+
readonly i2_8xlarge: "i2.8xlarge";
|
|
6638
|
+
readonly i2_xlarge: "i2.xlarge";
|
|
6639
|
+
readonly i3_16xlarge: "i3.16xlarge";
|
|
6640
|
+
readonly i3_2xlarge: "i3.2xlarge";
|
|
6641
|
+
readonly i3_4xlarge: "i3.4xlarge";
|
|
6642
|
+
readonly i3_8xlarge: "i3.8xlarge";
|
|
6643
|
+
readonly i3_large: "i3.large";
|
|
6644
|
+
readonly i3_metal: "i3.metal";
|
|
6645
|
+
readonly i3_xlarge: "i3.xlarge";
|
|
6646
|
+
readonly i3en_12xlarge: "i3en.12xlarge";
|
|
6647
|
+
readonly i3en_24xlarge: "i3en.24xlarge";
|
|
6648
|
+
readonly i3en_2xlarge: "i3en.2xlarge";
|
|
6649
|
+
readonly i3en_3xlarge: "i3en.3xlarge";
|
|
6650
|
+
readonly i3en_6xlarge: "i3en.6xlarge";
|
|
6651
|
+
readonly i3en_large: "i3en.large";
|
|
6652
|
+
readonly i3en_metal: "i3en.metal";
|
|
6653
|
+
readonly i3en_xlarge: "i3en.xlarge";
|
|
6654
|
+
readonly i4i_16xlarge: "i4i.16xlarge";
|
|
6655
|
+
readonly i4i_2xlarge: "i4i.2xlarge";
|
|
6656
|
+
readonly i4i_32xlarge: "i4i.32xlarge";
|
|
6657
|
+
readonly i4i_4xlarge: "i4i.4xlarge";
|
|
6658
|
+
readonly i4i_8xlarge: "i4i.8xlarge";
|
|
6659
|
+
readonly i4i_large: "i4i.large";
|
|
6660
|
+
readonly i4i_metal: "i4i.metal";
|
|
6661
|
+
readonly i4i_xlarge: "i4i.xlarge";
|
|
6662
|
+
readonly im4gn_16xlarge: "im4gn.16xlarge";
|
|
6663
|
+
readonly im4gn_2xlarge: "im4gn.2xlarge";
|
|
6664
|
+
readonly im4gn_4xlarge: "im4gn.4xlarge";
|
|
6665
|
+
readonly im4gn_8xlarge: "im4gn.8xlarge";
|
|
6666
|
+
readonly im4gn_large: "im4gn.large";
|
|
6667
|
+
readonly im4gn_xlarge: "im4gn.xlarge";
|
|
6668
|
+
readonly inf1_24xlarge: "inf1.24xlarge";
|
|
6669
|
+
readonly inf1_2xlarge: "inf1.2xlarge";
|
|
6670
|
+
readonly inf1_6xlarge: "inf1.6xlarge";
|
|
6671
|
+
readonly inf1_xlarge: "inf1.xlarge";
|
|
6672
|
+
readonly is4gen_2xlarge: "is4gen.2xlarge";
|
|
6673
|
+
readonly is4gen_4xlarge: "is4gen.4xlarge";
|
|
6674
|
+
readonly is4gen_8xlarge: "is4gen.8xlarge";
|
|
6675
|
+
readonly is4gen_large: "is4gen.large";
|
|
6676
|
+
readonly is4gen_medium: "is4gen.medium";
|
|
6677
|
+
readonly is4gen_xlarge: "is4gen.xlarge";
|
|
6678
|
+
readonly m1_large: "m1.large";
|
|
6679
|
+
readonly m1_medium: "m1.medium";
|
|
6680
|
+
readonly m1_small: "m1.small";
|
|
6681
|
+
readonly m1_xlarge: "m1.xlarge";
|
|
6682
|
+
readonly m2_2xlarge: "m2.2xlarge";
|
|
6683
|
+
readonly m2_4xlarge: "m2.4xlarge";
|
|
6684
|
+
readonly m2_xlarge: "m2.xlarge";
|
|
6685
|
+
readonly m3_2xlarge: "m3.2xlarge";
|
|
6686
|
+
readonly m3_large: "m3.large";
|
|
6687
|
+
readonly m3_medium: "m3.medium";
|
|
6688
|
+
readonly m3_xlarge: "m3.xlarge";
|
|
6689
|
+
readonly m4_10xlarge: "m4.10xlarge";
|
|
6690
|
+
readonly m4_16xlarge: "m4.16xlarge";
|
|
6691
|
+
readonly m4_2xlarge: "m4.2xlarge";
|
|
6692
|
+
readonly m4_4xlarge: "m4.4xlarge";
|
|
6693
|
+
readonly m4_large: "m4.large";
|
|
6694
|
+
readonly m4_xlarge: "m4.xlarge";
|
|
6695
|
+
readonly m5_12xlarge: "m5.12xlarge";
|
|
6696
|
+
readonly m5_16xlarge: "m5.16xlarge";
|
|
6697
|
+
readonly m5_24xlarge: "m5.24xlarge";
|
|
6698
|
+
readonly m5_2xlarge: "m5.2xlarge";
|
|
6699
|
+
readonly m5_4xlarge: "m5.4xlarge";
|
|
6700
|
+
readonly m5_8xlarge: "m5.8xlarge";
|
|
6701
|
+
readonly m5_large: "m5.large";
|
|
6702
|
+
readonly m5_metal: "m5.metal";
|
|
6703
|
+
readonly m5_xlarge: "m5.xlarge";
|
|
6704
|
+
readonly m5a_12xlarge: "m5a.12xlarge";
|
|
6705
|
+
readonly m5a_16xlarge: "m5a.16xlarge";
|
|
6706
|
+
readonly m5a_24xlarge: "m5a.24xlarge";
|
|
6707
|
+
readonly m5a_2xlarge: "m5a.2xlarge";
|
|
6708
|
+
readonly m5a_4xlarge: "m5a.4xlarge";
|
|
6709
|
+
readonly m5a_8xlarge: "m5a.8xlarge";
|
|
6710
|
+
readonly m5a_large: "m5a.large";
|
|
6711
|
+
readonly m5a_xlarge: "m5a.xlarge";
|
|
6712
|
+
readonly m5ad_12xlarge: "m5ad.12xlarge";
|
|
6713
|
+
readonly m5ad_16xlarge: "m5ad.16xlarge";
|
|
6714
|
+
readonly m5ad_24xlarge: "m5ad.24xlarge";
|
|
6715
|
+
readonly m5ad_2xlarge: "m5ad.2xlarge";
|
|
6716
|
+
readonly m5ad_4xlarge: "m5ad.4xlarge";
|
|
6717
|
+
readonly m5ad_8xlarge: "m5ad.8xlarge";
|
|
6718
|
+
readonly m5ad_large: "m5ad.large";
|
|
6719
|
+
readonly m5ad_xlarge: "m5ad.xlarge";
|
|
6720
|
+
readonly m5d_12xlarge: "m5d.12xlarge";
|
|
6721
|
+
readonly m5d_16xlarge: "m5d.16xlarge";
|
|
6722
|
+
readonly m5d_24xlarge: "m5d.24xlarge";
|
|
6723
|
+
readonly m5d_2xlarge: "m5d.2xlarge";
|
|
6724
|
+
readonly m5d_4xlarge: "m5d.4xlarge";
|
|
6725
|
+
readonly m5d_8xlarge: "m5d.8xlarge";
|
|
6726
|
+
readonly m5d_large: "m5d.large";
|
|
6727
|
+
readonly m5d_metal: "m5d.metal";
|
|
6728
|
+
readonly m5d_xlarge: "m5d.xlarge";
|
|
6729
|
+
readonly m5dn_12xlarge: "m5dn.12xlarge";
|
|
6730
|
+
readonly m5dn_16xlarge: "m5dn.16xlarge";
|
|
6731
|
+
readonly m5dn_24xlarge: "m5dn.24xlarge";
|
|
6732
|
+
readonly m5dn_2xlarge: "m5dn.2xlarge";
|
|
6733
|
+
readonly m5dn_4xlarge: "m5dn.4xlarge";
|
|
6734
|
+
readonly m5dn_8xlarge: "m5dn.8xlarge";
|
|
6735
|
+
readonly m5dn_large: "m5dn.large";
|
|
6736
|
+
readonly m5dn_metal: "m5dn.metal";
|
|
6737
|
+
readonly m5dn_xlarge: "m5dn.xlarge";
|
|
6738
|
+
readonly m5n_12xlarge: "m5n.12xlarge";
|
|
6739
|
+
readonly m5n_16xlarge: "m5n.16xlarge";
|
|
6740
|
+
readonly m5n_24xlarge: "m5n.24xlarge";
|
|
6741
|
+
readonly m5n_2xlarge: "m5n.2xlarge";
|
|
6742
|
+
readonly m5n_4xlarge: "m5n.4xlarge";
|
|
6743
|
+
readonly m5n_8xlarge: "m5n.8xlarge";
|
|
6744
|
+
readonly m5n_large: "m5n.large";
|
|
6745
|
+
readonly m5n_metal: "m5n.metal";
|
|
6746
|
+
readonly m5n_xlarge: "m5n.xlarge";
|
|
6747
|
+
readonly m5zn_12xlarge: "m5zn.12xlarge";
|
|
6748
|
+
readonly m5zn_2xlarge: "m5zn.2xlarge";
|
|
6749
|
+
readonly m5zn_3xlarge: "m5zn.3xlarge";
|
|
6750
|
+
readonly m5zn_6xlarge: "m5zn.6xlarge";
|
|
6751
|
+
readonly m5zn_large: "m5zn.large";
|
|
6752
|
+
readonly m5zn_metal: "m5zn.metal";
|
|
6753
|
+
readonly m5zn_xlarge: "m5zn.xlarge";
|
|
6754
|
+
readonly m6a_12xlarge: "m6a.12xlarge";
|
|
6755
|
+
readonly m6a_16xlarge: "m6a.16xlarge";
|
|
6756
|
+
readonly m6a_24xlarge: "m6a.24xlarge";
|
|
6757
|
+
readonly m6a_2xlarge: "m6a.2xlarge";
|
|
6758
|
+
readonly m6a_32xlarge: "m6a.32xlarge";
|
|
6759
|
+
readonly m6a_48xlarge: "m6a.48xlarge";
|
|
6760
|
+
readonly m6a_4xlarge: "m6a.4xlarge";
|
|
6761
|
+
readonly m6a_8xlarge: "m6a.8xlarge";
|
|
6762
|
+
readonly m6a_large: "m6a.large";
|
|
6763
|
+
readonly m6a_metal: "m6a.metal";
|
|
6764
|
+
readonly m6a_xlarge: "m6a.xlarge";
|
|
6765
|
+
readonly m6g_12xlarge: "m6g.12xlarge";
|
|
6766
|
+
readonly m6g_16xlarge: "m6g.16xlarge";
|
|
6767
|
+
readonly m6g_2xlarge: "m6g.2xlarge";
|
|
6768
|
+
readonly m6g_4xlarge: "m6g.4xlarge";
|
|
6769
|
+
readonly m6g_8xlarge: "m6g.8xlarge";
|
|
6770
|
+
readonly m6g_large: "m6g.large";
|
|
6771
|
+
readonly m6g_medium: "m6g.medium";
|
|
6772
|
+
readonly m6g_metal: "m6g.metal";
|
|
6773
|
+
readonly m6g_xlarge: "m6g.xlarge";
|
|
6774
|
+
readonly m6gd_12xlarge: "m6gd.12xlarge";
|
|
6775
|
+
readonly m6gd_16xlarge: "m6gd.16xlarge";
|
|
6776
|
+
readonly m6gd_2xlarge: "m6gd.2xlarge";
|
|
6777
|
+
readonly m6gd_4xlarge: "m6gd.4xlarge";
|
|
6778
|
+
readonly m6gd_8xlarge: "m6gd.8xlarge";
|
|
6779
|
+
readonly m6gd_large: "m6gd.large";
|
|
6780
|
+
readonly m6gd_medium: "m6gd.medium";
|
|
6781
|
+
readonly m6gd_metal: "m6gd.metal";
|
|
6782
|
+
readonly m6gd_xlarge: "m6gd.xlarge";
|
|
6783
|
+
readonly m6i_12xlarge: "m6i.12xlarge";
|
|
6784
|
+
readonly m6i_16xlarge: "m6i.16xlarge";
|
|
6785
|
+
readonly m6i_24xlarge: "m6i.24xlarge";
|
|
6786
|
+
readonly m6i_2xlarge: "m6i.2xlarge";
|
|
6787
|
+
readonly m6i_32xlarge: "m6i.32xlarge";
|
|
6788
|
+
readonly m6i_4xlarge: "m6i.4xlarge";
|
|
6789
|
+
readonly m6i_8xlarge: "m6i.8xlarge";
|
|
6790
|
+
readonly m6i_large: "m6i.large";
|
|
6791
|
+
readonly m6i_metal: "m6i.metal";
|
|
6792
|
+
readonly m6i_xlarge: "m6i.xlarge";
|
|
6793
|
+
readonly m6id_12xlarge: "m6id.12xlarge";
|
|
6794
|
+
readonly m6id_16xlarge: "m6id.16xlarge";
|
|
6795
|
+
readonly m6id_24xlarge: "m6id.24xlarge";
|
|
6796
|
+
readonly m6id_2xlarge: "m6id.2xlarge";
|
|
6797
|
+
readonly m6id_32xlarge: "m6id.32xlarge";
|
|
6798
|
+
readonly m6id_4xlarge: "m6id.4xlarge";
|
|
6799
|
+
readonly m6id_8xlarge: "m6id.8xlarge";
|
|
6800
|
+
readonly m6id_large: "m6id.large";
|
|
6801
|
+
readonly m6id_metal: "m6id.metal";
|
|
6802
|
+
readonly m6id_xlarge: "m6id.xlarge";
|
|
6803
|
+
readonly m6idn_12xlarge: "m6idn.12xlarge";
|
|
6804
|
+
readonly m6idn_16xlarge: "m6idn.16xlarge";
|
|
6805
|
+
readonly m6idn_24xlarge: "m6idn.24xlarge";
|
|
6806
|
+
readonly m6idn_2xlarge: "m6idn.2xlarge";
|
|
6807
|
+
readonly m6idn_32xlarge: "m6idn.32xlarge";
|
|
6808
|
+
readonly m6idn_4xlarge: "m6idn.4xlarge";
|
|
6809
|
+
readonly m6idn_8xlarge: "m6idn.8xlarge";
|
|
6810
|
+
readonly m6idn_large: "m6idn.large";
|
|
6811
|
+
readonly m6idn_xlarge: "m6idn.xlarge";
|
|
6812
|
+
readonly m6in_12xlarge: "m6in.12xlarge";
|
|
6813
|
+
readonly m6in_16xlarge: "m6in.16xlarge";
|
|
6814
|
+
readonly m6in_24xlarge: "m6in.24xlarge";
|
|
6815
|
+
readonly m6in_2xlarge: "m6in.2xlarge";
|
|
6816
|
+
readonly m6in_32xlarge: "m6in.32xlarge";
|
|
6817
|
+
readonly m6in_4xlarge: "m6in.4xlarge";
|
|
6818
|
+
readonly m6in_8xlarge: "m6in.8xlarge";
|
|
6819
|
+
readonly m6in_large: "m6in.large";
|
|
6820
|
+
readonly m6in_xlarge: "m6in.xlarge";
|
|
6821
|
+
readonly m7g_12xlarge: "m7g.12xlarge";
|
|
6822
|
+
readonly m7g_16xlarge: "m7g.16xlarge";
|
|
6823
|
+
readonly m7g_2xlarge: "m7g.2xlarge";
|
|
6824
|
+
readonly m7g_4xlarge: "m7g.4xlarge";
|
|
6825
|
+
readonly m7g_8xlarge: "m7g.8xlarge";
|
|
6826
|
+
readonly m7g_large: "m7g.large";
|
|
6827
|
+
readonly m7g_medium: "m7g.medium";
|
|
6828
|
+
readonly m7g_metal: "m7g.metal";
|
|
6829
|
+
readonly m7g_xlarge: "m7g.xlarge";
|
|
6830
|
+
readonly mac1_metal: "mac1.metal";
|
|
6831
|
+
readonly mac2_metal: "mac2.metal";
|
|
6832
|
+
readonly p2_16xlarge: "p2.16xlarge";
|
|
6833
|
+
readonly p2_8xlarge: "p2.8xlarge";
|
|
6834
|
+
readonly p2_xlarge: "p2.xlarge";
|
|
6835
|
+
readonly p3_16xlarge: "p3.16xlarge";
|
|
6836
|
+
readonly p3_2xlarge: "p3.2xlarge";
|
|
6837
|
+
readonly p3_8xlarge: "p3.8xlarge";
|
|
6838
|
+
readonly p3dn_24xlarge: "p3dn.24xlarge";
|
|
6839
|
+
readonly p4d_24xlarge: "p4d.24xlarge";
|
|
6840
|
+
readonly p4de_24xlarge: "p4de.24xlarge";
|
|
6841
|
+
readonly r3_2xlarge: "r3.2xlarge";
|
|
6842
|
+
readonly r3_4xlarge: "r3.4xlarge";
|
|
6843
|
+
readonly r3_8xlarge: "r3.8xlarge";
|
|
6844
|
+
readonly r3_large: "r3.large";
|
|
6845
|
+
readonly r3_xlarge: "r3.xlarge";
|
|
6846
|
+
readonly r4_16xlarge: "r4.16xlarge";
|
|
6847
|
+
readonly r4_2xlarge: "r4.2xlarge";
|
|
6848
|
+
readonly r4_4xlarge: "r4.4xlarge";
|
|
6849
|
+
readonly r4_8xlarge: "r4.8xlarge";
|
|
6850
|
+
readonly r4_large: "r4.large";
|
|
6851
|
+
readonly r4_xlarge: "r4.xlarge";
|
|
6852
|
+
readonly r5_12xlarge: "r5.12xlarge";
|
|
6853
|
+
readonly r5_16xlarge: "r5.16xlarge";
|
|
6854
|
+
readonly r5_24xlarge: "r5.24xlarge";
|
|
6855
|
+
readonly r5_2xlarge: "r5.2xlarge";
|
|
6856
|
+
readonly r5_4xlarge: "r5.4xlarge";
|
|
6857
|
+
readonly r5_8xlarge: "r5.8xlarge";
|
|
6858
|
+
readonly r5_large: "r5.large";
|
|
6859
|
+
readonly r5_metal: "r5.metal";
|
|
6860
|
+
readonly r5_xlarge: "r5.xlarge";
|
|
6861
|
+
readonly r5a_12xlarge: "r5a.12xlarge";
|
|
6862
|
+
readonly r5a_16xlarge: "r5a.16xlarge";
|
|
6863
|
+
readonly r5a_24xlarge: "r5a.24xlarge";
|
|
6864
|
+
readonly r5a_2xlarge: "r5a.2xlarge";
|
|
6865
|
+
readonly r5a_4xlarge: "r5a.4xlarge";
|
|
6866
|
+
readonly r5a_8xlarge: "r5a.8xlarge";
|
|
6867
|
+
readonly r5a_large: "r5a.large";
|
|
6868
|
+
readonly r5a_xlarge: "r5a.xlarge";
|
|
6869
|
+
readonly r5ad_12xlarge: "r5ad.12xlarge";
|
|
6870
|
+
readonly r5ad_16xlarge: "r5ad.16xlarge";
|
|
6871
|
+
readonly r5ad_24xlarge: "r5ad.24xlarge";
|
|
6872
|
+
readonly r5ad_2xlarge: "r5ad.2xlarge";
|
|
6873
|
+
readonly r5ad_4xlarge: "r5ad.4xlarge";
|
|
6874
|
+
readonly r5ad_8xlarge: "r5ad.8xlarge";
|
|
6875
|
+
readonly r5ad_large: "r5ad.large";
|
|
6876
|
+
readonly r5ad_xlarge: "r5ad.xlarge";
|
|
6877
|
+
readonly r5b_12xlarge: "r5b.12xlarge";
|
|
6878
|
+
readonly r5b_16xlarge: "r5b.16xlarge";
|
|
6879
|
+
readonly r5b_24xlarge: "r5b.24xlarge";
|
|
6880
|
+
readonly r5b_2xlarge: "r5b.2xlarge";
|
|
6881
|
+
readonly r5b_4xlarge: "r5b.4xlarge";
|
|
6882
|
+
readonly r5b_8xlarge: "r5b.8xlarge";
|
|
6883
|
+
readonly r5b_large: "r5b.large";
|
|
6884
|
+
readonly r5b_metal: "r5b.metal";
|
|
6885
|
+
readonly r5b_xlarge: "r5b.xlarge";
|
|
6886
|
+
readonly r5d_12xlarge: "r5d.12xlarge";
|
|
6887
|
+
readonly r5d_16xlarge: "r5d.16xlarge";
|
|
6888
|
+
readonly r5d_24xlarge: "r5d.24xlarge";
|
|
6889
|
+
readonly r5d_2xlarge: "r5d.2xlarge";
|
|
6890
|
+
readonly r5d_4xlarge: "r5d.4xlarge";
|
|
6891
|
+
readonly r5d_8xlarge: "r5d.8xlarge";
|
|
6892
|
+
readonly r5d_large: "r5d.large";
|
|
6893
|
+
readonly r5d_metal: "r5d.metal";
|
|
6894
|
+
readonly r5d_xlarge: "r5d.xlarge";
|
|
6895
|
+
readonly r5dn_12xlarge: "r5dn.12xlarge";
|
|
6896
|
+
readonly r5dn_16xlarge: "r5dn.16xlarge";
|
|
6897
|
+
readonly r5dn_24xlarge: "r5dn.24xlarge";
|
|
6898
|
+
readonly r5dn_2xlarge: "r5dn.2xlarge";
|
|
6899
|
+
readonly r5dn_4xlarge: "r5dn.4xlarge";
|
|
6900
|
+
readonly r5dn_8xlarge: "r5dn.8xlarge";
|
|
6901
|
+
readonly r5dn_large: "r5dn.large";
|
|
6902
|
+
readonly r5dn_metal: "r5dn.metal";
|
|
6903
|
+
readonly r5dn_xlarge: "r5dn.xlarge";
|
|
6904
|
+
readonly r5n_12xlarge: "r5n.12xlarge";
|
|
6905
|
+
readonly r5n_16xlarge: "r5n.16xlarge";
|
|
6906
|
+
readonly r5n_24xlarge: "r5n.24xlarge";
|
|
6907
|
+
readonly r5n_2xlarge: "r5n.2xlarge";
|
|
6908
|
+
readonly r5n_4xlarge: "r5n.4xlarge";
|
|
6909
|
+
readonly r5n_8xlarge: "r5n.8xlarge";
|
|
6910
|
+
readonly r5n_large: "r5n.large";
|
|
6911
|
+
readonly r5n_metal: "r5n.metal";
|
|
6912
|
+
readonly r5n_xlarge: "r5n.xlarge";
|
|
6913
|
+
readonly r6a_12xlarge: "r6a.12xlarge";
|
|
6914
|
+
readonly r6a_16xlarge: "r6a.16xlarge";
|
|
6915
|
+
readonly r6a_24xlarge: "r6a.24xlarge";
|
|
6916
|
+
readonly r6a_2xlarge: "r6a.2xlarge";
|
|
6917
|
+
readonly r6a_32xlarge: "r6a.32xlarge";
|
|
6918
|
+
readonly r6a_48xlarge: "r6a.48xlarge";
|
|
6919
|
+
readonly r6a_4xlarge: "r6a.4xlarge";
|
|
6920
|
+
readonly r6a_8xlarge: "r6a.8xlarge";
|
|
6921
|
+
readonly r6a_large: "r6a.large";
|
|
6922
|
+
readonly r6a_metal: "r6a.metal";
|
|
6923
|
+
readonly r6a_xlarge: "r6a.xlarge";
|
|
6924
|
+
readonly r6g_12xlarge: "r6g.12xlarge";
|
|
6925
|
+
readonly r6g_16xlarge: "r6g.16xlarge";
|
|
6926
|
+
readonly r6g_2xlarge: "r6g.2xlarge";
|
|
6927
|
+
readonly r6g_4xlarge: "r6g.4xlarge";
|
|
6928
|
+
readonly r6g_8xlarge: "r6g.8xlarge";
|
|
6929
|
+
readonly r6g_large: "r6g.large";
|
|
6930
|
+
readonly r6g_medium: "r6g.medium";
|
|
6931
|
+
readonly r6g_metal: "r6g.metal";
|
|
6932
|
+
readonly r6g_xlarge: "r6g.xlarge";
|
|
6933
|
+
readonly r6gd_12xlarge: "r6gd.12xlarge";
|
|
6934
|
+
readonly r6gd_16xlarge: "r6gd.16xlarge";
|
|
6935
|
+
readonly r6gd_2xlarge: "r6gd.2xlarge";
|
|
6936
|
+
readonly r6gd_4xlarge: "r6gd.4xlarge";
|
|
6937
|
+
readonly r6gd_8xlarge: "r6gd.8xlarge";
|
|
6938
|
+
readonly r6gd_large: "r6gd.large";
|
|
6939
|
+
readonly r6gd_medium: "r6gd.medium";
|
|
6940
|
+
readonly r6gd_metal: "r6gd.metal";
|
|
6941
|
+
readonly r6gd_xlarge: "r6gd.xlarge";
|
|
6942
|
+
readonly r6i_12xlarge: "r6i.12xlarge";
|
|
6943
|
+
readonly r6i_16xlarge: "r6i.16xlarge";
|
|
6944
|
+
readonly r6i_24xlarge: "r6i.24xlarge";
|
|
6945
|
+
readonly r6i_2xlarge: "r6i.2xlarge";
|
|
6946
|
+
readonly r6i_32xlarge: "r6i.32xlarge";
|
|
6947
|
+
readonly r6i_4xlarge: "r6i.4xlarge";
|
|
6948
|
+
readonly r6i_8xlarge: "r6i.8xlarge";
|
|
6949
|
+
readonly r6i_large: "r6i.large";
|
|
6950
|
+
readonly r6i_metal: "r6i.metal";
|
|
6951
|
+
readonly r6i_xlarge: "r6i.xlarge";
|
|
6952
|
+
readonly r6id_12xlarge: "r6id.12xlarge";
|
|
6953
|
+
readonly r6id_16xlarge: "r6id.16xlarge";
|
|
6954
|
+
readonly r6id_24xlarge: "r6id.24xlarge";
|
|
6955
|
+
readonly r6id_2xlarge: "r6id.2xlarge";
|
|
6956
|
+
readonly r6id_32xlarge: "r6id.32xlarge";
|
|
6957
|
+
readonly r6id_4xlarge: "r6id.4xlarge";
|
|
6958
|
+
readonly r6id_8xlarge: "r6id.8xlarge";
|
|
6959
|
+
readonly r6id_large: "r6id.large";
|
|
6960
|
+
readonly r6id_metal: "r6id.metal";
|
|
6961
|
+
readonly r6id_xlarge: "r6id.xlarge";
|
|
6962
|
+
readonly r6idn_12xlarge: "r6idn.12xlarge";
|
|
6963
|
+
readonly r6idn_16xlarge: "r6idn.16xlarge";
|
|
6964
|
+
readonly r6idn_24xlarge: "r6idn.24xlarge";
|
|
6965
|
+
readonly r6idn_2xlarge: "r6idn.2xlarge";
|
|
6966
|
+
readonly r6idn_32xlarge: "r6idn.32xlarge";
|
|
6967
|
+
readonly r6idn_4xlarge: "r6idn.4xlarge";
|
|
6968
|
+
readonly r6idn_8xlarge: "r6idn.8xlarge";
|
|
6969
|
+
readonly r6idn_large: "r6idn.large";
|
|
6970
|
+
readonly r6idn_xlarge: "r6idn.xlarge";
|
|
6971
|
+
readonly r6in_12xlarge: "r6in.12xlarge";
|
|
6972
|
+
readonly r6in_16xlarge: "r6in.16xlarge";
|
|
6973
|
+
readonly r6in_24xlarge: "r6in.24xlarge";
|
|
6974
|
+
readonly r6in_2xlarge: "r6in.2xlarge";
|
|
6975
|
+
readonly r6in_32xlarge: "r6in.32xlarge";
|
|
6976
|
+
readonly r6in_4xlarge: "r6in.4xlarge";
|
|
6977
|
+
readonly r6in_8xlarge: "r6in.8xlarge";
|
|
6978
|
+
readonly r6in_large: "r6in.large";
|
|
6979
|
+
readonly r6in_xlarge: "r6in.xlarge";
|
|
6980
|
+
readonly r7g_12xlarge: "r7g.12xlarge";
|
|
6981
|
+
readonly r7g_16xlarge: "r7g.16xlarge";
|
|
6982
|
+
readonly r7g_2xlarge: "r7g.2xlarge";
|
|
6983
|
+
readonly r7g_4xlarge: "r7g.4xlarge";
|
|
6984
|
+
readonly r7g_8xlarge: "r7g.8xlarge";
|
|
6985
|
+
readonly r7g_large: "r7g.large";
|
|
6986
|
+
readonly r7g_medium: "r7g.medium";
|
|
6987
|
+
readonly r7g_metal: "r7g.metal";
|
|
6988
|
+
readonly r7g_xlarge: "r7g.xlarge";
|
|
6989
|
+
readonly t1_micro: "t1.micro";
|
|
6990
|
+
readonly t2_2xlarge: "t2.2xlarge";
|
|
6991
|
+
readonly t2_large: "t2.large";
|
|
6992
|
+
readonly t2_medium: "t2.medium";
|
|
6993
|
+
readonly t2_micro: "t2.micro";
|
|
6994
|
+
readonly t2_nano: "t2.nano";
|
|
6995
|
+
readonly t2_small: "t2.small";
|
|
6996
|
+
readonly t2_xlarge: "t2.xlarge";
|
|
6997
|
+
readonly t3_2xlarge: "t3.2xlarge";
|
|
6998
|
+
readonly t3_large: "t3.large";
|
|
6999
|
+
readonly t3_medium: "t3.medium";
|
|
7000
|
+
readonly t3_micro: "t3.micro";
|
|
7001
|
+
readonly t3_nano: "t3.nano";
|
|
7002
|
+
readonly t3_small: "t3.small";
|
|
7003
|
+
readonly t3_xlarge: "t3.xlarge";
|
|
7004
|
+
readonly t3a_2xlarge: "t3a.2xlarge";
|
|
7005
|
+
readonly t3a_large: "t3a.large";
|
|
7006
|
+
readonly t3a_medium: "t3a.medium";
|
|
7007
|
+
readonly t3a_micro: "t3a.micro";
|
|
7008
|
+
readonly t3a_nano: "t3a.nano";
|
|
7009
|
+
readonly t3a_small: "t3a.small";
|
|
7010
|
+
readonly t3a_xlarge: "t3a.xlarge";
|
|
7011
|
+
readonly t4g_2xlarge: "t4g.2xlarge";
|
|
7012
|
+
readonly t4g_large: "t4g.large";
|
|
7013
|
+
readonly t4g_medium: "t4g.medium";
|
|
7014
|
+
readonly t4g_micro: "t4g.micro";
|
|
7015
|
+
readonly t4g_nano: "t4g.nano";
|
|
7016
|
+
readonly t4g_small: "t4g.small";
|
|
7017
|
+
readonly t4g_xlarge: "t4g.xlarge";
|
|
7018
|
+
readonly trn1_2xlarge: "trn1.2xlarge";
|
|
7019
|
+
readonly trn1_32xlarge: "trn1.32xlarge";
|
|
7020
|
+
readonly u_12tb1_112xlarge: "u-12tb1.112xlarge";
|
|
7021
|
+
readonly u_12tb1_metal: "u-12tb1.metal";
|
|
7022
|
+
readonly u_18tb1_112xlarge: "u-18tb1.112xlarge";
|
|
7023
|
+
readonly u_18tb1_metal: "u-18tb1.metal";
|
|
7024
|
+
readonly u_24tb1_112xlarge: "u-24tb1.112xlarge";
|
|
7025
|
+
readonly u_24tb1_metal: "u-24tb1.metal";
|
|
7026
|
+
readonly u_3tb1_56xlarge: "u-3tb1.56xlarge";
|
|
7027
|
+
readonly u_6tb1_112xlarge: "u-6tb1.112xlarge";
|
|
7028
|
+
readonly u_6tb1_56xlarge: "u-6tb1.56xlarge";
|
|
7029
|
+
readonly u_6tb1_metal: "u-6tb1.metal";
|
|
7030
|
+
readonly u_9tb1_112xlarge: "u-9tb1.112xlarge";
|
|
7031
|
+
readonly u_9tb1_metal: "u-9tb1.metal";
|
|
7032
|
+
readonly vt1_24xlarge: "vt1.24xlarge";
|
|
7033
|
+
readonly vt1_3xlarge: "vt1.3xlarge";
|
|
7034
|
+
readonly vt1_6xlarge: "vt1.6xlarge";
|
|
7035
|
+
readonly x1_16xlarge: "x1.16xlarge";
|
|
7036
|
+
readonly x1_32xlarge: "x1.32xlarge";
|
|
7037
|
+
readonly x1e_16xlarge: "x1e.16xlarge";
|
|
7038
|
+
readonly x1e_2xlarge: "x1e.2xlarge";
|
|
7039
|
+
readonly x1e_32xlarge: "x1e.32xlarge";
|
|
7040
|
+
readonly x1e_4xlarge: "x1e.4xlarge";
|
|
7041
|
+
readonly x1e_8xlarge: "x1e.8xlarge";
|
|
7042
|
+
readonly x1e_xlarge: "x1e.xlarge";
|
|
7043
|
+
readonly x2gd_12xlarge: "x2gd.12xlarge";
|
|
7044
|
+
readonly x2gd_16xlarge: "x2gd.16xlarge";
|
|
7045
|
+
readonly x2gd_2xlarge: "x2gd.2xlarge";
|
|
7046
|
+
readonly x2gd_4xlarge: "x2gd.4xlarge";
|
|
7047
|
+
readonly x2gd_8xlarge: "x2gd.8xlarge";
|
|
7048
|
+
readonly x2gd_large: "x2gd.large";
|
|
7049
|
+
readonly x2gd_medium: "x2gd.medium";
|
|
7050
|
+
readonly x2gd_metal: "x2gd.metal";
|
|
7051
|
+
readonly x2gd_xlarge: "x2gd.xlarge";
|
|
7052
|
+
readonly x2idn_16xlarge: "x2idn.16xlarge";
|
|
7053
|
+
readonly x2idn_24xlarge: "x2idn.24xlarge";
|
|
7054
|
+
readonly x2idn_32xlarge: "x2idn.32xlarge";
|
|
7055
|
+
readonly x2idn_metal: "x2idn.metal";
|
|
7056
|
+
readonly x2iedn_16xlarge: "x2iedn.16xlarge";
|
|
7057
|
+
readonly x2iedn_24xlarge: "x2iedn.24xlarge";
|
|
7058
|
+
readonly x2iedn_2xlarge: "x2iedn.2xlarge";
|
|
7059
|
+
readonly x2iedn_32xlarge: "x2iedn.32xlarge";
|
|
7060
|
+
readonly x2iedn_4xlarge: "x2iedn.4xlarge";
|
|
7061
|
+
readonly x2iedn_8xlarge: "x2iedn.8xlarge";
|
|
7062
|
+
readonly x2iedn_metal: "x2iedn.metal";
|
|
7063
|
+
readonly x2iedn_xlarge: "x2iedn.xlarge";
|
|
7064
|
+
readonly x2iezn_12xlarge: "x2iezn.12xlarge";
|
|
7065
|
+
readonly x2iezn_2xlarge: "x2iezn.2xlarge";
|
|
7066
|
+
readonly x2iezn_4xlarge: "x2iezn.4xlarge";
|
|
7067
|
+
readonly x2iezn_6xlarge: "x2iezn.6xlarge";
|
|
7068
|
+
readonly x2iezn_8xlarge: "x2iezn.8xlarge";
|
|
7069
|
+
readonly x2iezn_metal: "x2iezn.metal";
|
|
7070
|
+
readonly z1d_12xlarge: "z1d.12xlarge";
|
|
7071
|
+
readonly z1d_2xlarge: "z1d.2xlarge";
|
|
7072
|
+
readonly z1d_3xlarge: "z1d.3xlarge";
|
|
7073
|
+
readonly z1d_6xlarge: "z1d.6xlarge";
|
|
7074
|
+
readonly z1d_large: "z1d.large";
|
|
7075
|
+
readonly z1d_metal: "z1d.metal";
|
|
7076
|
+
readonly z1d_xlarge: "z1d.xlarge";
|
|
7077
|
+
};
|
|
7078
|
+
/**
|
|
7079
|
+
* @public
|
|
7080
|
+
*/
|
|
7081
|
+
export type _InstanceType = (typeof _InstanceType)[keyof typeof _InstanceType];
|
|
6762
7082
|
/**
|
|
6763
7083
|
* @public
|
|
6764
7084
|
* <p>Information about an instance type to use in a Capacity Reservation Fleet.</p>
|
|
@@ -6809,10 +7129,15 @@ export interface ReservationFleetInstanceSpecification {
|
|
|
6809
7129
|
}
|
|
6810
7130
|
/**
|
|
6811
7131
|
* @public
|
|
7132
|
+
* @enum
|
|
6812
7133
|
*/
|
|
6813
|
-
export declare
|
|
6814
|
-
default
|
|
6815
|
-
}
|
|
7134
|
+
export declare const FleetCapacityReservationTenancy: {
|
|
7135
|
+
readonly default: "default";
|
|
7136
|
+
};
|
|
7137
|
+
/**
|
|
7138
|
+
* @public
|
|
7139
|
+
*/
|
|
7140
|
+
export type FleetCapacityReservationTenancy = (typeof FleetCapacityReservationTenancy)[keyof typeof FleetCapacityReservationTenancy];
|
|
6816
7141
|
/**
|
|
6817
7142
|
* @public
|
|
6818
7143
|
*/
|
|
@@ -7022,13 +7347,18 @@ export interface CreateCarrierGatewayRequest {
|
|
|
7022
7347
|
}
|
|
7023
7348
|
/**
|
|
7024
7349
|
* @public
|
|
7350
|
+
* @enum
|
|
7025
7351
|
*/
|
|
7026
|
-
export declare
|
|
7027
|
-
available
|
|
7028
|
-
deleted
|
|
7029
|
-
deleting
|
|
7030
|
-
pending
|
|
7031
|
-
}
|
|
7352
|
+
export declare const CarrierGatewayState: {
|
|
7353
|
+
readonly available: "available";
|
|
7354
|
+
readonly deleted: "deleted";
|
|
7355
|
+
readonly deleting: "deleting";
|
|
7356
|
+
readonly pending: "pending";
|
|
7357
|
+
};
|
|
7358
|
+
/**
|
|
7359
|
+
* @public
|
|
7360
|
+
*/
|
|
7361
|
+
export type CarrierGatewayState = (typeof CarrierGatewayState)[keyof typeof CarrierGatewayState];
|
|
7032
7362
|
/**
|
|
7033
7363
|
* @public
|
|
7034
7364
|
* <p>Describes a carrier gateway.</p>
|