aws-sdk-ec2 1.397.0 → 1.399.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +160 -38
- data/lib/aws-sdk-ec2/client_api.rb +11 -0
- data/lib/aws-sdk-ec2/placement_group.rb +93 -8
- data/lib/aws-sdk-ec2/resource.rb +93 -8
- data/lib/aws-sdk-ec2/subnet.rb +93 -8
- data/lib/aws-sdk-ec2/types.rb +166 -31
- data/lib/aws-sdk-ec2/vpc.rb +93 -8
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
data/lib/aws-sdk-ec2/resource.rb
CHANGED
|
@@ -2377,7 +2377,7 @@ module Aws::EC2
|
|
|
2377
2377
|
#
|
|
2378
2378
|
# * `block-device-mapping.attach-time` - The attach time for an EBS
|
|
2379
2379
|
# volume mapped to the instance, for example,
|
|
2380
|
-
# `
|
|
2380
|
+
# `2022-09-15T17:15:20.000Z`.
|
|
2381
2381
|
#
|
|
2382
2382
|
# * `block-device-mapping.delete-on-termination` - A Boolean that
|
|
2383
2383
|
# indicates whether the EBS volume is deleted on instance termination.
|
|
@@ -2390,14 +2390,39 @@ module Aws::EC2
|
|
|
2390
2390
|
#
|
|
2391
2391
|
# * `block-device-mapping.volume-id` - The volume ID of the EBS volume.
|
|
2392
2392
|
#
|
|
2393
|
+
# * `boot-mode` - The boot mode that was specified by the AMI
|
|
2394
|
+
# (`legacy-bios` \| `uefi` \| `uefi-preferred`).
|
|
2395
|
+
#
|
|
2393
2396
|
# * `capacity-reservation-id` - The ID of the Capacity Reservation into
|
|
2394
2397
|
# which the instance was launched.
|
|
2395
2398
|
#
|
|
2399
|
+
# * `capacity-reservation-specification.capacity-reservation-preference`
|
|
2400
|
+
# - The instance's Capacity Reservation preference (`open` \|
|
|
2401
|
+
# `none`).
|
|
2402
|
+
#
|
|
2403
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id`
|
|
2404
|
+
# - The ID of the targeted Capacity Reservation.
|
|
2405
|
+
#
|
|
2406
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn`
|
|
2407
|
+
# - The ARN of the targeted Capacity Reservation group.
|
|
2408
|
+
#
|
|
2396
2409
|
# * `client-token` - The idempotency token you provided when you
|
|
2397
2410
|
# launched the instance.
|
|
2398
2411
|
#
|
|
2412
|
+
# * `current-instance-boot-mode` - The boot mode that is used to launch
|
|
2413
|
+
# the instance at launch or start (`legacy-bios` \| `uefi`).
|
|
2414
|
+
#
|
|
2399
2415
|
# * `dns-name` - The public DNS name of the instance.
|
|
2400
2416
|
#
|
|
2417
|
+
# * `ebs-optimized` - A Boolean that indicates whether the instance is
|
|
2418
|
+
# optimized for Amazon EBS I/O.
|
|
2419
|
+
#
|
|
2420
|
+
# * `ena-support` - A Boolean that indicates whether the instance is
|
|
2421
|
+
# enabled for enhanced networking with ENA.
|
|
2422
|
+
#
|
|
2423
|
+
# * `enclave-options.enabled` - A Boolean that indicates whether the
|
|
2424
|
+
# instance is enabled for Amazon Web Services Nitro Enclaves.
|
|
2425
|
+
#
|
|
2401
2426
|
# * `hibernation-options.configured` - A Boolean that indicates whether
|
|
2402
2427
|
# the instance is enabled for hibernation. A value of `true` means
|
|
2403
2428
|
# that the instance is enabled for hibernation.
|
|
@@ -2411,6 +2436,12 @@ module Aws::EC2
|
|
|
2411
2436
|
# * `iam-instance-profile.arn` - The instance profile associated with
|
|
2412
2437
|
# the instance. Specified as an ARN.
|
|
2413
2438
|
#
|
|
2439
|
+
# * `iam-instance-profile.id` - The instance profile associated with the
|
|
2440
|
+
# instance. Specified as an ID.
|
|
2441
|
+
#
|
|
2442
|
+
# * `iam-instance-profile.name` - The instance profile associated with
|
|
2443
|
+
# the instance. Specified as an name.
|
|
2444
|
+
#
|
|
2414
2445
|
# * `image-id` - The ID of the image used to launch the instance.
|
|
2415
2446
|
#
|
|
2416
2447
|
# * `instance-id` - The ID of the instance.
|
|
@@ -2437,6 +2468,8 @@ module Aws::EC2
|
|
|
2437
2468
|
#
|
|
2438
2469
|
# * `ip-address` - The public IPv4 address of the instance.
|
|
2439
2470
|
#
|
|
2471
|
+
# * `ipv6-address` - The IPv6 address of the instance.
|
|
2472
|
+
#
|
|
2440
2473
|
# * `kernel-id` - The kernel ID.
|
|
2441
2474
|
#
|
|
2442
2475
|
# * `key-name` - The name of the key pair used when the instance was
|
|
@@ -2451,29 +2484,43 @@ module Aws::EC2
|
|
|
2451
2484
|
# example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
|
2452
2485
|
# for example, `2021-09-29T*`, which matches an entire day.
|
|
2453
2486
|
#
|
|
2454
|
-
# * `
|
|
2455
|
-
#
|
|
2487
|
+
# * `license-pool` -
|
|
2488
|
+
#
|
|
2489
|
+
# * `maintenance-options.auto-recovery` - The current automatic recovery
|
|
2490
|
+
# behavior of the instance (`disabled` \| `default`).
|
|
2491
|
+
#
|
|
2492
|
+
# * `metadata-options.http-endpoint` - The status of access to the HTTP
|
|
2493
|
+
# metadata endpoint on your instance (`enabled` \| `disabled`)
|
|
2494
|
+
#
|
|
2495
|
+
# * `metadata-options.http-protocol-ipv4` - Indicates whether the IPv4
|
|
2496
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
2497
|
+
#
|
|
2498
|
+
# * `metadata-options.http-protocol-ipv6` - Indicates whether the IPv6
|
|
2499
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
2456
2500
|
#
|
|
2457
2501
|
# * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
|
|
2458
2502
|
# request put response hop limit (integer, possible values `1` to
|
|
2459
2503
|
# `64`)
|
|
2460
2504
|
#
|
|
2461
|
-
# * `metadata-options.http-
|
|
2462
|
-
#
|
|
2505
|
+
# * `metadata-options.http-tokens` - The metadata request authorization
|
|
2506
|
+
# state (`optional` \| `required`)
|
|
2463
2507
|
#
|
|
2464
2508
|
# * `metadata-options.instance-metadata-tags` - The status of access to
|
|
2465
2509
|
# instance tags from the instance metadata (`enabled` \| `disabled`)
|
|
2466
2510
|
#
|
|
2511
|
+
# * `metadata-options.state` - The state of the metadata option changes
|
|
2512
|
+
# (`pending` \| `applied`).
|
|
2513
|
+
#
|
|
2467
2514
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
|
2468
2515
|
# enabled (`disabled` \| `enabled`).
|
|
2469
2516
|
#
|
|
2470
|
-
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
|
2471
|
-
# address associated with the network interface.
|
|
2472
|
-
#
|
|
2473
2517
|
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
|
2474
2518
|
# address of the network interface is the primary private IPv4
|
|
2475
2519
|
# address.
|
|
2476
2520
|
#
|
|
2521
|
+
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
|
2522
|
+
# address associated with the network interface.
|
|
2523
|
+
#
|
|
2477
2524
|
# * `network-interface.addresses.association.public-ip` - The ID of the
|
|
2478
2525
|
# association of an Elastic IP address (IPv4) with a network
|
|
2479
2526
|
# interface.
|
|
@@ -2578,8 +2625,31 @@ module Aws::EC2
|
|
|
2578
2625
|
# * `platform` - The platform. To list only Windows instances, use
|
|
2579
2626
|
# `windows`.
|
|
2580
2627
|
#
|
|
2628
|
+
# * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
|
|
2629
|
+
# Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
|
|
2630
|
+
# with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
|
|
2631
|
+
# HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
|
|
2632
|
+
# \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
|
|
2633
|
+
# Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
|
|
2634
|
+
# with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
|
|
2635
|
+
# Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
|
|
2636
|
+
# \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
|
|
2637
|
+
# Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
|
|
2638
|
+
# SQL Server Web`).
|
|
2639
|
+
#
|
|
2581
2640
|
# * `private-dns-name` - The private IPv4 DNS name of the instance.
|
|
2582
2641
|
#
|
|
2642
|
+
# * `private-dns-name-options.enable-resource-name-dns-a-record` - A
|
|
2643
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
2644
|
+
# instance hostnames with DNS A records.
|
|
2645
|
+
#
|
|
2646
|
+
# * `private-dns-name-options.enable-resource-name-dns-aaaa-record` - A
|
|
2647
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
2648
|
+
# instance hostnames with DNS AAAA records.
|
|
2649
|
+
#
|
|
2650
|
+
# * `private-dns-name-options.hostname-type` - The type of hostname
|
|
2651
|
+
# (`ip-name` \| `resource-name`).
|
|
2652
|
+
#
|
|
2583
2653
|
# * `private-ip-address` - The private IPv4 address of the instance.
|
|
2584
2654
|
#
|
|
2585
2655
|
# * `product-code` - The product code associated with the AMI used to
|
|
@@ -2640,6 +2710,21 @@ module Aws::EC2
|
|
|
2640
2710
|
# * `tenancy` - The tenancy of an instance (`dedicated` \| `default` \|
|
|
2641
2711
|
# `host`).
|
|
2642
2712
|
#
|
|
2713
|
+
# * `tpm-support` - Indicates if the instance is configured for NitroTPM
|
|
2714
|
+
# support (`v2.0`).
|
|
2715
|
+
#
|
|
2716
|
+
# * `usage-operation` - The usage operation value for the instance
|
|
2717
|
+
# (`RunInstances` \| `RunInstances:00g0` \| `RunInstances:0010` \|
|
|
2718
|
+
# `RunInstances:1010` \| `RunInstances:1014` \| `RunInstances:1110` \|
|
|
2719
|
+
# `RunInstances:0014` \| `RunInstances:0210` \| `RunInstances:0110` \|
|
|
2720
|
+
# `RunInstances:0100` \| `RunInstances:0004` \| `RunInstances:0200` \|
|
|
2721
|
+
# `RunInstances:000g` \| `RunInstances:0g00` \| `RunInstances:0002` \|
|
|
2722
|
+
# `RunInstances:0800` \| `RunInstances:0102` \| `RunInstances:0006` \|
|
|
2723
|
+
# `RunInstances:0202`).
|
|
2724
|
+
#
|
|
2725
|
+
# * `usage-operation-update-time` - The time that the usage operation
|
|
2726
|
+
# was last updated, for example, `2022-09-15T17:15:20.000Z`.
|
|
2727
|
+
#
|
|
2643
2728
|
# * `virtualization-type` - The virtualization type of the instance
|
|
2644
2729
|
# (`paravirtual` \| `hvm`).
|
|
2645
2730
|
#
|
data/lib/aws-sdk-ec2/subnet.rb
CHANGED
|
@@ -1159,7 +1159,7 @@ module Aws::EC2
|
|
|
1159
1159
|
#
|
|
1160
1160
|
# * `block-device-mapping.attach-time` - The attach time for an EBS
|
|
1161
1161
|
# volume mapped to the instance, for example,
|
|
1162
|
-
# `
|
|
1162
|
+
# `2022-09-15T17:15:20.000Z`.
|
|
1163
1163
|
#
|
|
1164
1164
|
# * `block-device-mapping.delete-on-termination` - A Boolean that
|
|
1165
1165
|
# indicates whether the EBS volume is deleted on instance termination.
|
|
@@ -1172,14 +1172,39 @@ module Aws::EC2
|
|
|
1172
1172
|
#
|
|
1173
1173
|
# * `block-device-mapping.volume-id` - The volume ID of the EBS volume.
|
|
1174
1174
|
#
|
|
1175
|
+
# * `boot-mode` - The boot mode that was specified by the AMI
|
|
1176
|
+
# (`legacy-bios` \| `uefi` \| `uefi-preferred`).
|
|
1177
|
+
#
|
|
1175
1178
|
# * `capacity-reservation-id` - The ID of the Capacity Reservation into
|
|
1176
1179
|
# which the instance was launched.
|
|
1177
1180
|
#
|
|
1181
|
+
# * `capacity-reservation-specification.capacity-reservation-preference`
|
|
1182
|
+
# - The instance's Capacity Reservation preference (`open` \|
|
|
1183
|
+
# `none`).
|
|
1184
|
+
#
|
|
1185
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-id`
|
|
1186
|
+
# - The ID of the targeted Capacity Reservation.
|
|
1187
|
+
#
|
|
1188
|
+
# * `capacity-reservation-specification.capacity-reservation-target.capacity-reservation-resource-group-arn`
|
|
1189
|
+
# - The ARN of the targeted Capacity Reservation group.
|
|
1190
|
+
#
|
|
1178
1191
|
# * `client-token` - The idempotency token you provided when you
|
|
1179
1192
|
# launched the instance.
|
|
1180
1193
|
#
|
|
1194
|
+
# * `current-instance-boot-mode` - The boot mode that is used to launch
|
|
1195
|
+
# the instance at launch or start (`legacy-bios` \| `uefi`).
|
|
1196
|
+
#
|
|
1181
1197
|
# * `dns-name` - The public DNS name of the instance.
|
|
1182
1198
|
#
|
|
1199
|
+
# * `ebs-optimized` - A Boolean that indicates whether the instance is
|
|
1200
|
+
# optimized for Amazon EBS I/O.
|
|
1201
|
+
#
|
|
1202
|
+
# * `ena-support` - A Boolean that indicates whether the instance is
|
|
1203
|
+
# enabled for enhanced networking with ENA.
|
|
1204
|
+
#
|
|
1205
|
+
# * `enclave-options.enabled` - A Boolean that indicates whether the
|
|
1206
|
+
# instance is enabled for Amazon Web Services Nitro Enclaves.
|
|
1207
|
+
#
|
|
1183
1208
|
# * `hibernation-options.configured` - A Boolean that indicates whether
|
|
1184
1209
|
# the instance is enabled for hibernation. A value of `true` means
|
|
1185
1210
|
# that the instance is enabled for hibernation.
|
|
@@ -1193,6 +1218,12 @@ module Aws::EC2
|
|
|
1193
1218
|
# * `iam-instance-profile.arn` - The instance profile associated with
|
|
1194
1219
|
# the instance. Specified as an ARN.
|
|
1195
1220
|
#
|
|
1221
|
+
# * `iam-instance-profile.id` - The instance profile associated with the
|
|
1222
|
+
# instance. Specified as an ID.
|
|
1223
|
+
#
|
|
1224
|
+
# * `iam-instance-profile.name` - The instance profile associated with
|
|
1225
|
+
# the instance. Specified as an name.
|
|
1226
|
+
#
|
|
1196
1227
|
# * `image-id` - The ID of the image used to launch the instance.
|
|
1197
1228
|
#
|
|
1198
1229
|
# * `instance-id` - The ID of the instance.
|
|
@@ -1219,6 +1250,8 @@ module Aws::EC2
|
|
|
1219
1250
|
#
|
|
1220
1251
|
# * `ip-address` - The public IPv4 address of the instance.
|
|
1221
1252
|
#
|
|
1253
|
+
# * `ipv6-address` - The IPv6 address of the instance.
|
|
1254
|
+
#
|
|
1222
1255
|
# * `kernel-id` - The kernel ID.
|
|
1223
1256
|
#
|
|
1224
1257
|
# * `key-name` - The name of the key pair used when the instance was
|
|
@@ -1233,29 +1266,43 @@ module Aws::EC2
|
|
|
1233
1266
|
# example, `2021-09-29T11:04:43.305Z`. You can use a wildcard (`*`),
|
|
1234
1267
|
# for example, `2021-09-29T*`, which matches an entire day.
|
|
1235
1268
|
#
|
|
1236
|
-
# * `
|
|
1237
|
-
#
|
|
1269
|
+
# * `license-pool` -
|
|
1270
|
+
#
|
|
1271
|
+
# * `maintenance-options.auto-recovery` - The current automatic recovery
|
|
1272
|
+
# behavior of the instance (`disabled` \| `default`).
|
|
1273
|
+
#
|
|
1274
|
+
# * `metadata-options.http-endpoint` - The status of access to the HTTP
|
|
1275
|
+
# metadata endpoint on your instance (`enabled` \| `disabled`)
|
|
1276
|
+
#
|
|
1277
|
+
# * `metadata-options.http-protocol-ipv4` - Indicates whether the IPv4
|
|
1278
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
1279
|
+
#
|
|
1280
|
+
# * `metadata-options.http-protocol-ipv6` - Indicates whether the IPv6
|
|
1281
|
+
# endpoint is enabled (`disabled` \| `enabled`).
|
|
1238
1282
|
#
|
|
1239
1283
|
# * `metadata-options.http-put-response-hop-limit` - The HTTP metadata
|
|
1240
1284
|
# request put response hop limit (integer, possible values `1` to
|
|
1241
1285
|
# `64`)
|
|
1242
1286
|
#
|
|
1243
|
-
# * `metadata-options.http-
|
|
1244
|
-
#
|
|
1287
|
+
# * `metadata-options.http-tokens` - The metadata request authorization
|
|
1288
|
+
# state (`optional` \| `required`)
|
|
1245
1289
|
#
|
|
1246
1290
|
# * `metadata-options.instance-metadata-tags` - The status of access to
|
|
1247
1291
|
# instance tags from the instance metadata (`enabled` \| `disabled`)
|
|
1248
1292
|
#
|
|
1293
|
+
# * `metadata-options.state` - The state of the metadata option changes
|
|
1294
|
+
# (`pending` \| `applied`).
|
|
1295
|
+
#
|
|
1249
1296
|
# * `monitoring-state` - Indicates whether detailed monitoring is
|
|
1250
1297
|
# enabled (`disabled` \| `enabled`).
|
|
1251
1298
|
#
|
|
1252
|
-
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
|
1253
|
-
# address associated with the network interface.
|
|
1254
|
-
#
|
|
1255
1299
|
# * `network-interface.addresses.primary` - Specifies whether the IPv4
|
|
1256
1300
|
# address of the network interface is the primary private IPv4
|
|
1257
1301
|
# address.
|
|
1258
1302
|
#
|
|
1303
|
+
# * `network-interface.addresses.private-ip-address` - The private IPv4
|
|
1304
|
+
# address associated with the network interface.
|
|
1305
|
+
#
|
|
1259
1306
|
# * `network-interface.addresses.association.public-ip` - The ID of the
|
|
1260
1307
|
# association of an Elastic IP address (IPv4) with a network
|
|
1261
1308
|
# interface.
|
|
@@ -1360,8 +1407,31 @@ module Aws::EC2
|
|
|
1360
1407
|
# * `platform` - The platform. To list only Windows instances, use
|
|
1361
1408
|
# `windows`.
|
|
1362
1409
|
#
|
|
1410
|
+
# * `platform-details` - The platform (`Linux/UNIX` \| `Red Hat BYOL
|
|
1411
|
+
# Linux` \| ` Red Hat Enterprise Linux` \| `Red Hat Enterprise Linux
|
|
1412
|
+
# with HA` \| `Red Hat Enterprise Linux with SQL Server Standard and
|
|
1413
|
+
# HA` \| `Red Hat Enterprise Linux with SQL Server Enterprise and HA`
|
|
1414
|
+
# \| `Red Hat Enterprise Linux with SQL Server Standard` \| `Red Hat
|
|
1415
|
+
# Enterprise Linux with SQL Server Web` \| `Red Hat Enterprise Linux
|
|
1416
|
+
# with SQL Server Enterprise` \| `SQL Server Enterprise` \| `SQL
|
|
1417
|
+
# Server Standard` \| `SQL Server Web` \| `SUSE Linux` \| `Ubuntu Pro`
|
|
1418
|
+
# \| `Windows` \| `Windows BYOL` \| `Windows with SQL Server
|
|
1419
|
+
# Enterprise` \| `Windows with SQL Server Standard` \| `Windows with
|
|
1420
|
+
# SQL Server Web`).
|
|
1421
|
+
#
|
|
1363
1422
|
# * `private-dns-name` - The private IPv4 DNS name of the instance.
|
|
1364
1423
|
#
|
|
1424
|
+
# * `private-dns-name-options.enable-resource-name-dns-a-record` - A
|
|
1425
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
1426
|
+
# instance hostnames with DNS A records.
|
|
1427
|
+
#
|
|
1428
|
+
# * `private-dns-name-options.enable-resource-name-dns-aaaa-record` - A
|
|
1429
|
+
# Boolean that indicates whether to respond to DNS queries for
|
|
1430
|
+
# instance hostnames with DNS AAAA records.
|
|
1431
|
+
#
|
|
1432
|
+
# * `private-dns-name-options.hostname-type` - The type of hostname
|
|
1433
|
+
# (`ip-name` \| `resource-name`).
|
|
1434
|
+
#
|
|
1365
1435
|
# * `private-ip-address` - The private IPv4 address of the instance.
|
|
1366
1436
|
#
|
|
1367
1437
|
# * `product-code` - The product code associated with the AMI used to
|
|
@@ -1422,6 +1492,21 @@ module Aws::EC2
|
|
|
1422
1492
|
# * `tenancy` - The tenancy of an instance (`dedicated` \| `default` \|
|
|
1423
1493
|
# `host`).
|
|
1424
1494
|
#
|
|
1495
|
+
# * `tpm-support` - Indicates if the instance is configured for NitroTPM
|
|
1496
|
+
# support (`v2.0`).
|
|
1497
|
+
#
|
|
1498
|
+
# * `usage-operation` - The usage operation value for the instance
|
|
1499
|
+
# (`RunInstances` \| `RunInstances:00g0` \| `RunInstances:0010` \|
|
|
1500
|
+
# `RunInstances:1010` \| `RunInstances:1014` \| `RunInstances:1110` \|
|
|
1501
|
+
# `RunInstances:0014` \| `RunInstances:0210` \| `RunInstances:0110` \|
|
|
1502
|
+
# `RunInstances:0100` \| `RunInstances:0004` \| `RunInstances:0200` \|
|
|
1503
|
+
# `RunInstances:000g` \| `RunInstances:0g00` \| `RunInstances:0002` \|
|
|
1504
|
+
# `RunInstances:0800` \| `RunInstances:0102` \| `RunInstances:0006` \|
|
|
1505
|
+
# `RunInstances:0202`).
|
|
1506
|
+
#
|
|
1507
|
+
# * `usage-operation-update-time` - The time that the usage operation
|
|
1508
|
+
# was last updated, for example, `2022-09-15T17:15:20.000Z`.
|
|
1509
|
+
#
|
|
1425
1510
|
# * `virtualization-type` - The virtualization type of the instance
|
|
1426
1511
|
# (`paravirtual` \| `hvm`).
|
|
1427
1512
|
#
|