aws-sdk-ec2 1.579.0 → 1.581.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 +1909 -147
- data/lib/aws-sdk-ec2/client_api.rb +643 -1
- data/lib/aws-sdk-ec2/instance.rb +1 -1
- data/lib/aws-sdk-ec2/nat_gateway.rb +65 -0
- data/lib/aws-sdk-ec2/placement_group.rb +1 -1
- data/lib/aws-sdk-ec2/resource.rb +90 -20
- data/lib/aws-sdk-ec2/security_group.rb +2 -2
- data/lib/aws-sdk-ec2/snapshot.rb +1 -1
- data/lib/aws-sdk-ec2/subnet.rb +3 -3
- data/lib/aws-sdk-ec2/types.rb +2096 -16
- data/lib/aws-sdk-ec2/volume.rb +1 -1
- data/lib/aws-sdk-ec2/vpc.rb +14 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/classic_address.rbs +1 -1
- data/sig/client.rbs +530 -117
- data/sig/instance.rbs +1 -1
- data/sig/nat_gateway.rbs +12 -0
- data/sig/resource.rbs +38 -18
- data/sig/security_group.rbs +2 -2
- data/sig/snapshot.rbs +1 -1
- data/sig/subnet.rbs +2 -2
- data/sig/tag.rbs +1 -1
- data/sig/types.rbs +480 -18
- data/sig/volume.rbs +1 -1
- data/sig/vpc.rbs +5 -5
- data/sig/vpc_address.rbs +1 -1
- metadata +1 -1
data/sig/types.rbs
CHANGED
|
@@ -229,7 +229,7 @@ module Aws::EC2
|
|
|
229
229
|
attr_accessor customer_owned_ipv_4_pool: ::String
|
|
230
230
|
attr_accessor carrier_ip: ::String
|
|
231
231
|
attr_accessor subnet_id: ::String
|
|
232
|
-
attr_accessor service_managed: ("alb" | "nlb" | "rnat")
|
|
232
|
+
attr_accessor service_managed: ("alb" | "nlb" | "rnat" | "rds")
|
|
233
233
|
attr_accessor instance_id: ::String
|
|
234
234
|
attr_accessor public_ip: ::String
|
|
235
235
|
SENSITIVE: []
|
|
@@ -609,6 +609,8 @@ module Aws::EC2
|
|
|
609
609
|
attr_accessor allocation_ids: ::Array[::String]
|
|
610
610
|
attr_accessor private_ip_addresses: ::Array[::String]
|
|
611
611
|
attr_accessor dry_run: bool
|
|
612
|
+
attr_accessor availability_zone: ::String
|
|
613
|
+
attr_accessor availability_zone_id: ::String
|
|
612
614
|
SENSITIVE: []
|
|
613
615
|
end
|
|
614
616
|
|
|
@@ -957,6 +959,13 @@ module Aws::EC2
|
|
|
957
959
|
SENSITIVE: []
|
|
958
960
|
end
|
|
959
961
|
|
|
962
|
+
class AvailabilityZoneAddress
|
|
963
|
+
attr_accessor availability_zone: ::String
|
|
964
|
+
attr_accessor availability_zone_id: ::String
|
|
965
|
+
attr_accessor allocation_ids: ::Array[::String]
|
|
966
|
+
SENSITIVE: []
|
|
967
|
+
end
|
|
968
|
+
|
|
960
969
|
class AvailabilityZoneMessage
|
|
961
970
|
attr_accessor message: ::String
|
|
962
971
|
SENSITIVE: []
|
|
@@ -1059,8 +1068,9 @@ module Aws::EC2
|
|
|
1059
1068
|
attr_accessor description: ::String
|
|
1060
1069
|
attr_accessor asn_associations: ::Array[Types::AsnAssociation]
|
|
1061
1070
|
attr_accessor status_message: ::String
|
|
1062
|
-
attr_accessor state: ("advertised" | "deprovisioned" | "failed-deprovision" | "failed-provision" | "pending-deprovision" | "pending-provision" | "provisioned" | "provisioned-not-publicly-advertisable")
|
|
1071
|
+
attr_accessor state: ("advertised" | "deprovisioned" | "failed-deprovision" | "failed-provision" | "pending-advertising" | "pending-deprovision" | "pending-provision" | "pending-withdrawal" | "provisioned" | "provisioned-not-publicly-advertisable")
|
|
1063
1072
|
attr_accessor network_border_group: ::String
|
|
1073
|
+
attr_accessor advertisement_type: ::String
|
|
1064
1074
|
SENSITIVE: []
|
|
1065
1075
|
end
|
|
1066
1076
|
|
|
@@ -1686,6 +1696,9 @@ module Aws::EC2
|
|
|
1686
1696
|
attr_accessor log_enabled: bool
|
|
1687
1697
|
attr_accessor log_group_arn: ::String
|
|
1688
1698
|
attr_accessor log_output_format: ::String
|
|
1699
|
+
attr_accessor bgp_log_enabled: bool
|
|
1700
|
+
attr_accessor bgp_log_group_arn: ::String
|
|
1701
|
+
attr_accessor bgp_log_output_format: ::String
|
|
1689
1702
|
SENSITIVE: []
|
|
1690
1703
|
end
|
|
1691
1704
|
|
|
@@ -1693,6 +1706,9 @@ module Aws::EC2
|
|
|
1693
1706
|
attr_accessor log_enabled: bool
|
|
1694
1707
|
attr_accessor log_group_arn: ::String
|
|
1695
1708
|
attr_accessor log_output_format: ::String
|
|
1709
|
+
attr_accessor bgp_log_enabled: bool
|
|
1710
|
+
attr_accessor bgp_log_group_arn: ::String
|
|
1711
|
+
attr_accessor bgp_log_output_format: ::String
|
|
1696
1712
|
SENSITIVE: []
|
|
1697
1713
|
end
|
|
1698
1714
|
|
|
@@ -2203,7 +2219,7 @@ module Aws::EC2
|
|
|
2203
2219
|
attr_accessor deliver_cross_account_role: ::String
|
|
2204
2220
|
attr_accessor log_group_name: ::String
|
|
2205
2221
|
attr_accessor resource_ids: ::Array[::String]
|
|
2206
|
-
attr_accessor resource_type: ("VPC" | "Subnet" | "NetworkInterface" | "TransitGateway" | "TransitGatewayAttachment")
|
|
2222
|
+
attr_accessor resource_type: ("VPC" | "Subnet" | "NetworkInterface" | "TransitGateway" | "TransitGatewayAttachment" | "RegionalNatGateway")
|
|
2207
2223
|
attr_accessor traffic_type: ("ACCEPT" | "REJECT" | "ALL")
|
|
2208
2224
|
attr_accessor log_destination_type: ("cloud-watch-logs" | "s3" | "kinesis-data-firehose")
|
|
2209
2225
|
attr_accessor log_destination: ::String
|
|
@@ -2339,6 +2355,19 @@ module Aws::EC2
|
|
|
2339
2355
|
SENSITIVE: []
|
|
2340
2356
|
end
|
|
2341
2357
|
|
|
2358
|
+
class CreateIpamPolicyRequest
|
|
2359
|
+
attr_accessor dry_run: bool
|
|
2360
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
2361
|
+
attr_accessor client_token: ::String
|
|
2362
|
+
attr_accessor ipam_id: ::String
|
|
2363
|
+
SENSITIVE: []
|
|
2364
|
+
end
|
|
2365
|
+
|
|
2366
|
+
class CreateIpamPolicyResult
|
|
2367
|
+
attr_accessor ipam_policy: Types::IpamPolicy
|
|
2368
|
+
SENSITIVE: []
|
|
2369
|
+
end
|
|
2370
|
+
|
|
2342
2371
|
class CreateIpamPoolRequest
|
|
2343
2372
|
attr_accessor dry_run: bool
|
|
2344
2373
|
attr_accessor ipam_scope_id: ::String
|
|
@@ -2354,7 +2383,7 @@ module Aws::EC2
|
|
|
2354
2383
|
attr_accessor allocation_resource_tags: ::Array[Types::RequestIpamResourceTag]
|
|
2355
2384
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
2356
2385
|
attr_accessor client_token: ::String
|
|
2357
|
-
attr_accessor aws_service: ("ec2")
|
|
2386
|
+
attr_accessor aws_service: ("ec2" | "global-services")
|
|
2358
2387
|
attr_accessor public_ip_source: ("amazon" | "byoip")
|
|
2359
2388
|
attr_accessor source_resource: Types::IpamPoolSourceResourceRequest
|
|
2360
2389
|
SENSITIVE: []
|
|
@@ -2607,10 +2636,13 @@ module Aws::EC2
|
|
|
2607
2636
|
end
|
|
2608
2637
|
|
|
2609
2638
|
class CreateNatGatewayRequest
|
|
2639
|
+
attr_accessor availability_mode: ("zonal" | "regional")
|
|
2610
2640
|
attr_accessor allocation_id: ::String
|
|
2611
2641
|
attr_accessor client_token: ::String
|
|
2612
2642
|
attr_accessor dry_run: bool
|
|
2613
2643
|
attr_accessor subnet_id: ::String
|
|
2644
|
+
attr_accessor vpc_id: ::String
|
|
2645
|
+
attr_accessor availability_zone_addresses: ::Array[Types::AvailabilityZoneAddress]
|
|
2614
2646
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
2615
2647
|
attr_accessor connectivity_type: ("private" | "public")
|
|
2616
2648
|
attr_accessor private_ip_address: ::String
|
|
@@ -3106,6 +3138,41 @@ module Aws::EC2
|
|
|
3106
3138
|
SENSITIVE: []
|
|
3107
3139
|
end
|
|
3108
3140
|
|
|
3141
|
+
class CreateTransitGatewayMeteringPolicyEntryRequest
|
|
3142
|
+
attr_accessor transit_gateway_metering_policy_id: ::String
|
|
3143
|
+
attr_accessor policy_rule_number: ::Integer
|
|
3144
|
+
attr_accessor source_transit_gateway_attachment_id: ::String
|
|
3145
|
+
attr_accessor source_transit_gateway_attachment_type: ("vpc" | "vpn" | "vpn-concentrator" | "direct-connect-gateway" | "connect" | "peering" | "tgw-peering" | "network-function")
|
|
3146
|
+
attr_accessor source_cidr_block: ::String
|
|
3147
|
+
attr_accessor source_port_range: ::String
|
|
3148
|
+
attr_accessor destination_transit_gateway_attachment_id: ::String
|
|
3149
|
+
attr_accessor destination_transit_gateway_attachment_type: ("vpc" | "vpn" | "vpn-concentrator" | "direct-connect-gateway" | "connect" | "peering" | "tgw-peering" | "network-function")
|
|
3150
|
+
attr_accessor destination_cidr_block: ::String
|
|
3151
|
+
attr_accessor destination_port_range: ::String
|
|
3152
|
+
attr_accessor protocol: ::String
|
|
3153
|
+
attr_accessor metered_account: ("source-attachment-owner" | "destination-attachment-owner" | "transit-gateway-owner")
|
|
3154
|
+
attr_accessor dry_run: bool
|
|
3155
|
+
SENSITIVE: []
|
|
3156
|
+
end
|
|
3157
|
+
|
|
3158
|
+
class CreateTransitGatewayMeteringPolicyEntryResult
|
|
3159
|
+
attr_accessor transit_gateway_metering_policy_entry: Types::TransitGatewayMeteringPolicyEntry
|
|
3160
|
+
SENSITIVE: []
|
|
3161
|
+
end
|
|
3162
|
+
|
|
3163
|
+
class CreateTransitGatewayMeteringPolicyRequest
|
|
3164
|
+
attr_accessor transit_gateway_id: ::String
|
|
3165
|
+
attr_accessor middlebox_attachment_ids: ::Array[::String]
|
|
3166
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3167
|
+
attr_accessor dry_run: bool
|
|
3168
|
+
SENSITIVE: []
|
|
3169
|
+
end
|
|
3170
|
+
|
|
3171
|
+
class CreateTransitGatewayMeteringPolicyResult
|
|
3172
|
+
attr_accessor transit_gateway_metering_policy: Types::TransitGatewayMeteringPolicy
|
|
3173
|
+
SENSITIVE: []
|
|
3174
|
+
end
|
|
3175
|
+
|
|
3109
3176
|
class CreateTransitGatewayMulticastDomainRequest
|
|
3110
3177
|
attr_accessor transit_gateway_id: ::String
|
|
3111
3178
|
attr_accessor options: Types::CreateTransitGatewayMulticastDomainRequestOptions
|
|
@@ -3443,6 +3510,18 @@ module Aws::EC2
|
|
|
3443
3510
|
SENSITIVE: []
|
|
3444
3511
|
end
|
|
3445
3512
|
|
|
3513
|
+
class CreateVpcEncryptionControlRequest
|
|
3514
|
+
attr_accessor dry_run: bool
|
|
3515
|
+
attr_accessor vpc_id: ::String
|
|
3516
|
+
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3517
|
+
SENSITIVE: []
|
|
3518
|
+
end
|
|
3519
|
+
|
|
3520
|
+
class CreateVpcEncryptionControlResult
|
|
3521
|
+
attr_accessor vpc_encryption_control: Types::VpcEncryptionControl
|
|
3522
|
+
SENSITIVE: []
|
|
3523
|
+
end
|
|
3524
|
+
|
|
3446
3525
|
class CreateVpcEndpointConnectionNotificationRequest
|
|
3447
3526
|
attr_accessor dry_run: bool
|
|
3448
3527
|
attr_accessor service_id: ::String
|
|
@@ -3529,6 +3608,7 @@ module Aws::EC2
|
|
|
3529
3608
|
attr_accessor ipv_6_ipam_pool_id: ::String
|
|
3530
3609
|
attr_accessor ipv_6_netmask_length: ::Integer
|
|
3531
3610
|
attr_accessor ipv_6_cidr_block_network_border_group: ::String
|
|
3611
|
+
attr_accessor vpc_encryption_control: Types::VpcEncryptionControlConfiguration
|
|
3532
3612
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
|
3533
3613
|
attr_accessor dry_run: bool
|
|
3534
3614
|
attr_accessor instance_tenancy: ("default" | "dedicated" | "host")
|
|
@@ -3855,6 +3935,17 @@ module Aws::EC2
|
|
|
3855
3935
|
SENSITIVE: []
|
|
3856
3936
|
end
|
|
3857
3937
|
|
|
3938
|
+
class DeleteIpamPolicyRequest
|
|
3939
|
+
attr_accessor dry_run: bool
|
|
3940
|
+
attr_accessor ipam_policy_id: ::String
|
|
3941
|
+
SENSITIVE: []
|
|
3942
|
+
end
|
|
3943
|
+
|
|
3944
|
+
class DeleteIpamPolicyResult
|
|
3945
|
+
attr_accessor ipam_policy: Types::IpamPolicy
|
|
3946
|
+
SENSITIVE: []
|
|
3947
|
+
end
|
|
3948
|
+
|
|
3858
3949
|
class DeleteIpamPoolRequest
|
|
3859
3950
|
attr_accessor dry_run: bool
|
|
3860
3951
|
attr_accessor ipam_pool_id: ::String
|
|
@@ -4347,6 +4438,29 @@ module Aws::EC2
|
|
|
4347
4438
|
SENSITIVE: []
|
|
4348
4439
|
end
|
|
4349
4440
|
|
|
4441
|
+
class DeleteTransitGatewayMeteringPolicyEntryRequest
|
|
4442
|
+
attr_accessor transit_gateway_metering_policy_id: ::String
|
|
4443
|
+
attr_accessor policy_rule_number: ::Integer
|
|
4444
|
+
attr_accessor dry_run: bool
|
|
4445
|
+
SENSITIVE: []
|
|
4446
|
+
end
|
|
4447
|
+
|
|
4448
|
+
class DeleteTransitGatewayMeteringPolicyEntryResult
|
|
4449
|
+
attr_accessor transit_gateway_metering_policy_entry: Types::TransitGatewayMeteringPolicyEntry
|
|
4450
|
+
SENSITIVE: []
|
|
4451
|
+
end
|
|
4452
|
+
|
|
4453
|
+
class DeleteTransitGatewayMeteringPolicyRequest
|
|
4454
|
+
attr_accessor transit_gateway_metering_policy_id: ::String
|
|
4455
|
+
attr_accessor dry_run: bool
|
|
4456
|
+
SENSITIVE: []
|
|
4457
|
+
end
|
|
4458
|
+
|
|
4459
|
+
class DeleteTransitGatewayMeteringPolicyResult
|
|
4460
|
+
attr_accessor transit_gateway_metering_policy: Types::TransitGatewayMeteringPolicy
|
|
4461
|
+
SENSITIVE: []
|
|
4462
|
+
end
|
|
4463
|
+
|
|
4350
4464
|
class DeleteTransitGatewayMulticastDomainRequest
|
|
4351
4465
|
attr_accessor transit_gateway_multicast_domain_id: ::String
|
|
4352
4466
|
attr_accessor dry_run: bool
|
|
@@ -4513,6 +4627,17 @@ module Aws::EC2
|
|
|
4513
4627
|
SENSITIVE: []
|
|
4514
4628
|
end
|
|
4515
4629
|
|
|
4630
|
+
class DeleteVpcEncryptionControlRequest
|
|
4631
|
+
attr_accessor dry_run: bool
|
|
4632
|
+
attr_accessor vpc_encryption_control_id: ::String
|
|
4633
|
+
SENSITIVE: []
|
|
4634
|
+
end
|
|
4635
|
+
|
|
4636
|
+
class DeleteVpcEncryptionControlResult
|
|
4637
|
+
attr_accessor vpc_encryption_control: Types::VpcEncryptionControl
|
|
4638
|
+
SENSITIVE: []
|
|
4639
|
+
end
|
|
4640
|
+
|
|
4516
4641
|
class DeleteVpcEndpointConnectionNotificationsRequest
|
|
4517
4642
|
attr_accessor dry_run: bool
|
|
4518
4643
|
attr_accessor connection_notification_ids: ::Array[::String]
|
|
@@ -5789,6 +5914,21 @@ module Aws::EC2
|
|
|
5789
5914
|
SENSITIVE: []
|
|
5790
5915
|
end
|
|
5791
5916
|
|
|
5917
|
+
class DescribeIpamPoliciesRequest
|
|
5918
|
+
attr_accessor dry_run: bool
|
|
5919
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
5920
|
+
attr_accessor max_results: ::Integer
|
|
5921
|
+
attr_accessor next_token: ::String
|
|
5922
|
+
attr_accessor ipam_policy_ids: ::Array[::String]
|
|
5923
|
+
SENSITIVE: []
|
|
5924
|
+
end
|
|
5925
|
+
|
|
5926
|
+
class DescribeIpamPoliciesResult
|
|
5927
|
+
attr_accessor next_token: ::String
|
|
5928
|
+
attr_accessor ipam_policies: ::Array[Types::IpamPolicy]
|
|
5929
|
+
SENSITIVE: []
|
|
5930
|
+
end
|
|
5931
|
+
|
|
5792
5932
|
class DescribeIpamPoolsRequest
|
|
5793
5933
|
attr_accessor dry_run: bool
|
|
5794
5934
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -6897,6 +7037,21 @@ module Aws::EC2
|
|
|
6897
7037
|
SENSITIVE: []
|
|
6898
7038
|
end
|
|
6899
7039
|
|
|
7040
|
+
class DescribeTransitGatewayMeteringPoliciesRequest
|
|
7041
|
+
attr_accessor transit_gateway_metering_policy_ids: ::Array[::String]
|
|
7042
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
7043
|
+
attr_accessor max_results: ::Integer
|
|
7044
|
+
attr_accessor next_token: ::String
|
|
7045
|
+
attr_accessor dry_run: bool
|
|
7046
|
+
SENSITIVE: []
|
|
7047
|
+
end
|
|
7048
|
+
|
|
7049
|
+
class DescribeTransitGatewayMeteringPoliciesResult
|
|
7050
|
+
attr_accessor transit_gateway_metering_policies: ::Array[Types::TransitGatewayMeteringPolicy]
|
|
7051
|
+
attr_accessor next_token: ::String
|
|
7052
|
+
SENSITIVE: []
|
|
7053
|
+
end
|
|
7054
|
+
|
|
6900
7055
|
class DescribeTransitGatewayMulticastDomainsRequest
|
|
6901
7056
|
attr_accessor transit_gateway_multicast_domain_ids: ::Array[::String]
|
|
6902
7057
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -7219,6 +7374,22 @@ module Aws::EC2
|
|
|
7219
7374
|
SENSITIVE: []
|
|
7220
7375
|
end
|
|
7221
7376
|
|
|
7377
|
+
class DescribeVpcEncryptionControlsRequest
|
|
7378
|
+
attr_accessor dry_run: bool
|
|
7379
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
7380
|
+
attr_accessor vpc_encryption_control_ids: ::Array[::String]
|
|
7381
|
+
attr_accessor vpc_ids: ::Array[::String]
|
|
7382
|
+
attr_accessor next_token: ::String
|
|
7383
|
+
attr_accessor max_results: ::Integer
|
|
7384
|
+
SENSITIVE: []
|
|
7385
|
+
end
|
|
7386
|
+
|
|
7387
|
+
class DescribeVpcEncryptionControlsResult
|
|
7388
|
+
attr_accessor vpc_encryption_controls: ::Array[Types::VpcEncryptionControl]
|
|
7389
|
+
attr_accessor next_token: ::String
|
|
7390
|
+
SENSITIVE: []
|
|
7391
|
+
end
|
|
7392
|
+
|
|
7222
7393
|
class DescribeVpcEndpointAssociationsRequest
|
|
7223
7394
|
attr_accessor dry_run: bool
|
|
7224
7395
|
attr_accessor vpc_endpoint_ids: ::Array[::String]
|
|
@@ -7692,6 +7863,18 @@ module Aws::EC2
|
|
|
7692
7863
|
SENSITIVE: []
|
|
7693
7864
|
end
|
|
7694
7865
|
|
|
7866
|
+
class DisableIpamPolicyRequest
|
|
7867
|
+
attr_accessor dry_run: bool
|
|
7868
|
+
attr_accessor ipam_policy_id: ::String
|
|
7869
|
+
attr_accessor organization_target_id: ::String
|
|
7870
|
+
SENSITIVE: []
|
|
7871
|
+
end
|
|
7872
|
+
|
|
7873
|
+
class DisableIpamPolicyResult
|
|
7874
|
+
attr_accessor return: bool
|
|
7875
|
+
SENSITIVE: []
|
|
7876
|
+
end
|
|
7877
|
+
|
|
7695
7878
|
class DisableRouteServerPropagationRequest
|
|
7696
7879
|
attr_accessor route_server_id: ::String
|
|
7697
7880
|
attr_accessor route_table_id: ::String
|
|
@@ -8417,6 +8600,18 @@ module Aws::EC2
|
|
|
8417
8600
|
SENSITIVE: []
|
|
8418
8601
|
end
|
|
8419
8602
|
|
|
8603
|
+
class EnableIpamPolicyRequest
|
|
8604
|
+
attr_accessor dry_run: bool
|
|
8605
|
+
attr_accessor ipam_policy_id: ::String
|
|
8606
|
+
attr_accessor organization_target_id: ::String
|
|
8607
|
+
SENSITIVE: []
|
|
8608
|
+
end
|
|
8609
|
+
|
|
8610
|
+
class EnableIpamPolicyResult
|
|
8611
|
+
attr_accessor ipam_policy_id: ::String
|
|
8612
|
+
SENSITIVE: []
|
|
8613
|
+
end
|
|
8614
|
+
|
|
8420
8615
|
class EnableReachabilityAnalyzerOrganizationSharingRequest
|
|
8421
8616
|
attr_accessor dry_run: bool
|
|
8422
8617
|
SENSITIVE: []
|
|
@@ -8517,6 +8712,12 @@ module Aws::EC2
|
|
|
8517
8712
|
SENSITIVE: []
|
|
8518
8713
|
end
|
|
8519
8714
|
|
|
8715
|
+
class EncryptionSupport
|
|
8716
|
+
attr_accessor encryption_state: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
8717
|
+
attr_accessor state_message: ::String
|
|
8718
|
+
SENSITIVE: []
|
|
8719
|
+
end
|
|
8720
|
+
|
|
8520
8721
|
class EventInformation
|
|
8521
8722
|
attr_accessor event_description: ::String
|
|
8522
8723
|
attr_accessor event_sub_type: ::String
|
|
@@ -9243,6 +9444,18 @@ module Aws::EC2
|
|
|
9243
9444
|
SENSITIVE: []
|
|
9244
9445
|
end
|
|
9245
9446
|
|
|
9447
|
+
class GetEnabledIpamPolicyRequest
|
|
9448
|
+
attr_accessor dry_run: bool
|
|
9449
|
+
SENSITIVE: []
|
|
9450
|
+
end
|
|
9451
|
+
|
|
9452
|
+
class GetEnabledIpamPolicyResult
|
|
9453
|
+
attr_accessor ipam_policy_enabled: bool
|
|
9454
|
+
attr_accessor ipam_policy_id: ::String
|
|
9455
|
+
attr_accessor managed_by: ("account" | "delegated-administrator-for-ipam")
|
|
9456
|
+
SENSITIVE: []
|
|
9457
|
+
end
|
|
9458
|
+
|
|
9246
9459
|
class GetFlowLogsIntegrationTemplateRequest
|
|
9247
9460
|
attr_accessor dry_run: bool
|
|
9248
9461
|
attr_accessor flow_log_id: ::String
|
|
@@ -9428,6 +9641,38 @@ module Aws::EC2
|
|
|
9428
9641
|
SENSITIVE: []
|
|
9429
9642
|
end
|
|
9430
9643
|
|
|
9644
|
+
class GetIpamPolicyAllocationRulesRequest
|
|
9645
|
+
attr_accessor dry_run: bool
|
|
9646
|
+
attr_accessor ipam_policy_id: ::String
|
|
9647
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
9648
|
+
attr_accessor locale: ::String
|
|
9649
|
+
attr_accessor resource_type: ("alb" | "eip" | "rds" | "rnat")
|
|
9650
|
+
attr_accessor max_results: ::Integer
|
|
9651
|
+
attr_accessor next_token: ::String
|
|
9652
|
+
SENSITIVE: []
|
|
9653
|
+
end
|
|
9654
|
+
|
|
9655
|
+
class GetIpamPolicyAllocationRulesResult
|
|
9656
|
+
attr_accessor ipam_policy_documents: ::Array[Types::IpamPolicyDocument]
|
|
9657
|
+
attr_accessor next_token: ::String
|
|
9658
|
+
SENSITIVE: []
|
|
9659
|
+
end
|
|
9660
|
+
|
|
9661
|
+
class GetIpamPolicyOrganizationTargetsRequest
|
|
9662
|
+
attr_accessor dry_run: bool
|
|
9663
|
+
attr_accessor max_results: ::Integer
|
|
9664
|
+
attr_accessor next_token: ::String
|
|
9665
|
+
attr_accessor ipam_policy_id: ::String
|
|
9666
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
9667
|
+
SENSITIVE: []
|
|
9668
|
+
end
|
|
9669
|
+
|
|
9670
|
+
class GetIpamPolicyOrganizationTargetsResult
|
|
9671
|
+
attr_accessor organization_targets: ::Array[Types::IpamPolicyOrganizationTarget]
|
|
9672
|
+
attr_accessor next_token: ::String
|
|
9673
|
+
SENSITIVE: []
|
|
9674
|
+
end
|
|
9675
|
+
|
|
9431
9676
|
class GetIpamPoolAllocationsRequest
|
|
9432
9677
|
attr_accessor dry_run: bool
|
|
9433
9678
|
attr_accessor ipam_pool_id: ::String
|
|
@@ -9513,7 +9758,7 @@ module Aws::EC2
|
|
|
9513
9758
|
attr_accessor ipam_scope_id: ::String
|
|
9514
9759
|
attr_accessor ipam_pool_id: ::String
|
|
9515
9760
|
attr_accessor resource_id: ::String
|
|
9516
|
-
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
|
9761
|
+
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni" | "anycast-ip-list")
|
|
9517
9762
|
attr_accessor resource_tag: Types::RequestIpamResourceTag
|
|
9518
9763
|
attr_accessor resource_owner: ::String
|
|
9519
9764
|
SENSITIVE: []
|
|
@@ -9751,6 +9996,21 @@ module Aws::EC2
|
|
|
9751
9996
|
SENSITIVE: []
|
|
9752
9997
|
end
|
|
9753
9998
|
|
|
9999
|
+
class GetTransitGatewayMeteringPolicyEntriesRequest
|
|
10000
|
+
attr_accessor transit_gateway_metering_policy_id: ::String
|
|
10001
|
+
attr_accessor filters: ::Array[Types::Filter]
|
|
10002
|
+
attr_accessor max_results: ::Integer
|
|
10003
|
+
attr_accessor next_token: ::String
|
|
10004
|
+
attr_accessor dry_run: bool
|
|
10005
|
+
SENSITIVE: []
|
|
10006
|
+
end
|
|
10007
|
+
|
|
10008
|
+
class GetTransitGatewayMeteringPolicyEntriesResult
|
|
10009
|
+
attr_accessor transit_gateway_metering_policy_entries: ::Array[Types::TransitGatewayMeteringPolicyEntry]
|
|
10010
|
+
attr_accessor next_token: ::String
|
|
10011
|
+
SENSITIVE: []
|
|
10012
|
+
end
|
|
10013
|
+
|
|
9754
10014
|
class GetTransitGatewayMulticastDomainAssociationsRequest
|
|
9755
10015
|
attr_accessor transit_gateway_multicast_domain_id: ::String
|
|
9756
10016
|
attr_accessor filters: ::Array[Types::Filter]
|
|
@@ -9878,6 +10138,20 @@ module Aws::EC2
|
|
|
9878
10138
|
SENSITIVE: []
|
|
9879
10139
|
end
|
|
9880
10140
|
|
|
10141
|
+
class GetVpcResourcesBlockingEncryptionEnforcementRequest
|
|
10142
|
+
attr_accessor vpc_id: ::String
|
|
10143
|
+
attr_accessor max_results: ::Integer
|
|
10144
|
+
attr_accessor next_token: ::String
|
|
10145
|
+
attr_accessor dry_run: bool
|
|
10146
|
+
SENSITIVE: []
|
|
10147
|
+
end
|
|
10148
|
+
|
|
10149
|
+
class GetVpcResourcesBlockingEncryptionEnforcementResult
|
|
10150
|
+
attr_accessor non_compliant_resources: ::Array[Types::VpcEncryptionNonCompliantResource]
|
|
10151
|
+
attr_accessor next_token: ::String
|
|
10152
|
+
SENSITIVE: []
|
|
10153
|
+
end
|
|
10154
|
+
|
|
9881
10155
|
class GetVpnConnectionDeviceSampleConfigurationRequest
|
|
9882
10156
|
attr_accessor vpn_connection_id: ::String
|
|
9883
10157
|
attr_accessor vpn_connection_device_type_id: ::String
|
|
@@ -11172,8 +11446,8 @@ module Aws::EC2
|
|
|
11172
11446
|
attr_accessor address_owner_id: ::String
|
|
11173
11447
|
attr_accessor address_allocation_id: ::String
|
|
11174
11448
|
attr_accessor association_status: ("associated" | "disassociated")
|
|
11175
|
-
attr_accessor address_type: ("service-managed-ip" | "service-managed-byoip" | "amazon-owned-eip" | "amazon-owned-contig" | "byoip" | "ec2-public-ip")
|
|
11176
|
-
attr_accessor service: ("nat-gateway" | "database-migration-service" | "redshift" | "elastic-container-service" | "relational-database-service" | "site-to-site-vpn" | "load-balancer" | "global-accelerator" | "other")
|
|
11449
|
+
attr_accessor address_type: ("service-managed-ip" | "service-managed-byoip" | "amazon-owned-eip" | "amazon-owned-contig" | "byoip" | "ec2-public-ip" | "anycast-ip-list-ip")
|
|
11450
|
+
attr_accessor service: ("nat-gateway" | "database-migration-service" | "redshift" | "elastic-container-service" | "relational-database-service" | "site-to-site-vpn" | "load-balancer" | "global-accelerator" | "cloudfront" | "other")
|
|
11177
11451
|
attr_accessor service_resource: ::String
|
|
11178
11452
|
attr_accessor vpc_id: ::String
|
|
11179
11453
|
attr_accessor subnet_id: ::String
|
|
@@ -11195,7 +11469,7 @@ module Aws::EC2
|
|
|
11195
11469
|
attr_accessor resource_owner_id: ::String
|
|
11196
11470
|
attr_accessor resource_cidr: ::String
|
|
11197
11471
|
attr_accessor ip_source: ("amazon" | "byoip" | "none")
|
|
11198
|
-
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
|
11472
|
+
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni" | "anycast-ip-list")
|
|
11199
11473
|
attr_accessor resource_tags: ::Array[Types::IpamResourceTag]
|
|
11200
11474
|
attr_accessor ip_usage: ::Float
|
|
11201
11475
|
attr_accessor vpc_id: ::String
|
|
@@ -11237,6 +11511,41 @@ module Aws::EC2
|
|
|
11237
11511
|
SENSITIVE: []
|
|
11238
11512
|
end
|
|
11239
11513
|
|
|
11514
|
+
class IpamPolicy
|
|
11515
|
+
attr_accessor owner_id: ::String
|
|
11516
|
+
attr_accessor ipam_policy_id: ::String
|
|
11517
|
+
attr_accessor ipam_policy_arn: ::String
|
|
11518
|
+
attr_accessor ipam_policy_region: ::String
|
|
11519
|
+
attr_accessor state: ("create-in-progress" | "create-complete" | "create-failed" | "modify-in-progress" | "modify-complete" | "modify-failed" | "delete-in-progress" | "delete-complete" | "delete-failed" | "isolate-in-progress" | "isolate-complete" | "restore-in-progress")
|
|
11520
|
+
attr_accessor state_message: ::String
|
|
11521
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
11522
|
+
attr_accessor ipam_id: ::String
|
|
11523
|
+
SENSITIVE: []
|
|
11524
|
+
end
|
|
11525
|
+
|
|
11526
|
+
class IpamPolicyAllocationRule
|
|
11527
|
+
attr_accessor source_ipam_pool_id: ::String
|
|
11528
|
+
SENSITIVE: []
|
|
11529
|
+
end
|
|
11530
|
+
|
|
11531
|
+
class IpamPolicyAllocationRuleRequest
|
|
11532
|
+
attr_accessor source_ipam_pool_id: ::String
|
|
11533
|
+
SENSITIVE: []
|
|
11534
|
+
end
|
|
11535
|
+
|
|
11536
|
+
class IpamPolicyDocument
|
|
11537
|
+
attr_accessor ipam_policy_id: ::String
|
|
11538
|
+
attr_accessor locale: ::String
|
|
11539
|
+
attr_accessor resource_type: ("alb" | "eip" | "rds" | "rnat")
|
|
11540
|
+
attr_accessor allocation_rules: ::Array[Types::IpamPolicyAllocationRule]
|
|
11541
|
+
SENSITIVE: []
|
|
11542
|
+
end
|
|
11543
|
+
|
|
11544
|
+
class IpamPolicyOrganizationTarget
|
|
11545
|
+
attr_accessor organization_target_id: ::String
|
|
11546
|
+
SENSITIVE: []
|
|
11547
|
+
end
|
|
11548
|
+
|
|
11240
11549
|
class IpamPool
|
|
11241
11550
|
attr_accessor owner_id: ::String
|
|
11242
11551
|
attr_accessor ipam_pool_id: ::String
|
|
@@ -11259,7 +11568,7 @@ module Aws::EC2
|
|
|
11259
11568
|
attr_accessor allocation_default_netmask_length: ::Integer
|
|
11260
11569
|
attr_accessor allocation_resource_tags: ::Array[Types::IpamResourceTag]
|
|
11261
11570
|
attr_accessor tags: ::Array[Types::Tag]
|
|
11262
|
-
attr_accessor aws_service: ("ec2")
|
|
11571
|
+
attr_accessor aws_service: ("ec2" | "global-services")
|
|
11263
11572
|
attr_accessor public_ip_source: ("amazon" | "byoip")
|
|
11264
11573
|
attr_accessor source_resource: Types::IpamPoolSourceResource
|
|
11265
11574
|
SENSITIVE: []
|
|
@@ -11270,7 +11579,7 @@ module Aws::EC2
|
|
|
11270
11579
|
attr_accessor ipam_pool_allocation_id: ::String
|
|
11271
11580
|
attr_accessor description: ::String
|
|
11272
11581
|
attr_accessor resource_id: ::String
|
|
11273
|
-
attr_accessor resource_type: ("ipam-pool" | "vpc" | "ec2-public-ipv4-pool" | "custom" | "subnet" | "eip")
|
|
11582
|
+
attr_accessor resource_type: ("ipam-pool" | "vpc" | "ec2-public-ipv4-pool" | "custom" | "subnet" | "eip" | "anycast-ip-list")
|
|
11274
11583
|
attr_accessor resource_region: ::String
|
|
11275
11584
|
attr_accessor resource_owner: ::String
|
|
11276
11585
|
SENSITIVE: []
|
|
@@ -11326,7 +11635,7 @@ module Aws::EC2
|
|
|
11326
11635
|
attr_accessor rule_type: ("static-cidr" | "ipam-resource-cidr" | "ipam-pool-cidr")
|
|
11327
11636
|
attr_accessor static_cidr: ::String
|
|
11328
11637
|
attr_accessor ipam_scope_id: ::String
|
|
11329
|
-
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
|
11638
|
+
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni" | "anycast-ip-list")
|
|
11330
11639
|
attr_accessor conditions: ::Array[Types::IpamPrefixListResolverRuleCondition]
|
|
11331
11640
|
SENSITIVE: []
|
|
11332
11641
|
end
|
|
@@ -11357,7 +11666,7 @@ module Aws::EC2
|
|
|
11357
11666
|
attr_accessor rule_type: ("static-cidr" | "ipam-resource-cidr" | "ipam-pool-cidr")
|
|
11358
11667
|
attr_accessor static_cidr: ::String
|
|
11359
11668
|
attr_accessor ipam_scope_id: ::String
|
|
11360
|
-
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
|
11669
|
+
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni" | "anycast-ip-list")
|
|
11361
11670
|
attr_accessor conditions: ::Array[Types::IpamPrefixListResolverRuleConditionRequest]
|
|
11362
11671
|
SENSITIVE: []
|
|
11363
11672
|
end
|
|
@@ -11414,7 +11723,7 @@ module Aws::EC2
|
|
|
11414
11723
|
attr_accessor resource_id: ::String
|
|
11415
11724
|
attr_accessor resource_name: ::String
|
|
11416
11725
|
attr_accessor resource_cidr: ::String
|
|
11417
|
-
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni")
|
|
11726
|
+
attr_accessor resource_type: ("vpc" | "subnet" | "eip" | "public-ipv4-pool" | "ipv6-pool" | "eni" | "anycast-ip-list")
|
|
11418
11727
|
attr_accessor resource_tags: ::Array[Types::IpamResourceTag]
|
|
11419
11728
|
attr_accessor ip_usage: ::Float
|
|
11420
11729
|
attr_accessor compliance_status: ("compliant" | "noncompliant" | "unmanaged" | "ignored")
|
|
@@ -11937,13 +12246,13 @@ module Aws::EC2
|
|
|
11937
12246
|
end
|
|
11938
12247
|
|
|
11939
12248
|
class LaunchTemplateTagSpecification
|
|
11940
|
-
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
12249
|
+
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-metering-policy" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "vpc-encryption-control" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-policy" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
11941
12250
|
attr_accessor tags: ::Array[Types::Tag]
|
|
11942
12251
|
SENSITIVE: []
|
|
11943
12252
|
end
|
|
11944
12253
|
|
|
11945
12254
|
class LaunchTemplateTagSpecificationRequest
|
|
11946
|
-
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
12255
|
+
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-metering-policy" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "vpc-encryption-control" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-policy" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
11947
12256
|
attr_accessor tags: ::Array[Types::Tag]
|
|
11948
12257
|
SENSITIVE: []
|
|
11949
12258
|
end
|
|
@@ -12009,6 +12318,20 @@ module Aws::EC2
|
|
|
12009
12318
|
SENSITIVE: []
|
|
12010
12319
|
end
|
|
12011
12320
|
|
|
12321
|
+
class ListVolumesInRecycleBinRequest
|
|
12322
|
+
attr_accessor volume_ids: ::Array[::String]
|
|
12323
|
+
attr_accessor dry_run: bool
|
|
12324
|
+
attr_accessor max_results: ::Integer
|
|
12325
|
+
attr_accessor next_token: ::String
|
|
12326
|
+
SENSITIVE: []
|
|
12327
|
+
end
|
|
12328
|
+
|
|
12329
|
+
class ListVolumesInRecycleBinResult
|
|
12330
|
+
attr_accessor volumes: ::Array[Types::VolumeRecycleBinInfo]
|
|
12331
|
+
attr_accessor next_token: ::String
|
|
12332
|
+
SENSITIVE: []
|
|
12333
|
+
end
|
|
12334
|
+
|
|
12012
12335
|
class LoadBalancersConfig
|
|
12013
12336
|
attr_accessor classic_load_balancers_config: Types::ClassicLoadBalancersConfig
|
|
12014
12337
|
attr_accessor target_groups_config: Types::TargetGroupsConfig
|
|
@@ -12653,6 +12976,20 @@ module Aws::EC2
|
|
|
12653
12976
|
SENSITIVE: []
|
|
12654
12977
|
end
|
|
12655
12978
|
|
|
12979
|
+
class ModifyIpamPolicyAllocationRulesRequest
|
|
12980
|
+
attr_accessor dry_run: bool
|
|
12981
|
+
attr_accessor ipam_policy_id: ::String
|
|
12982
|
+
attr_accessor locale: ::String
|
|
12983
|
+
attr_accessor resource_type: ("alb" | "eip" | "rds" | "rnat")
|
|
12984
|
+
attr_accessor allocation_rules: ::Array[Types::IpamPolicyAllocationRuleRequest]
|
|
12985
|
+
SENSITIVE: []
|
|
12986
|
+
end
|
|
12987
|
+
|
|
12988
|
+
class ModifyIpamPolicyAllocationRulesResult
|
|
12989
|
+
attr_accessor ipam_policy_document: Types::IpamPolicyDocument
|
|
12990
|
+
SENSITIVE: []
|
|
12991
|
+
end
|
|
12992
|
+
|
|
12656
12993
|
class ModifyIpamPoolRequest
|
|
12657
12994
|
attr_accessor dry_run: bool
|
|
12658
12995
|
attr_accessor ipam_pool_id: ::String
|
|
@@ -12993,6 +13330,19 @@ module Aws::EC2
|
|
|
12993
13330
|
SENSITIVE: []
|
|
12994
13331
|
end
|
|
12995
13332
|
|
|
13333
|
+
class ModifyTransitGatewayMeteringPolicyRequest
|
|
13334
|
+
attr_accessor transit_gateway_metering_policy_id: ::String
|
|
13335
|
+
attr_accessor add_middlebox_attachment_ids: ::Array[::String]
|
|
13336
|
+
attr_accessor remove_middlebox_attachment_ids: ::Array[::String]
|
|
13337
|
+
attr_accessor dry_run: bool
|
|
13338
|
+
SENSITIVE: []
|
|
13339
|
+
end
|
|
13340
|
+
|
|
13341
|
+
class ModifyTransitGatewayMeteringPolicyResult
|
|
13342
|
+
attr_accessor transit_gateway_metering_policy: Types::TransitGatewayMeteringPolicy
|
|
13343
|
+
SENSITIVE: []
|
|
13344
|
+
end
|
|
13345
|
+
|
|
12996
13346
|
class ModifyTransitGatewayOptions
|
|
12997
13347
|
attr_accessor add_transit_gateway_cidr_blocks: ::Array[::String]
|
|
12998
13348
|
attr_accessor remove_transit_gateway_cidr_blocks: ::Array[::String]
|
|
@@ -13005,6 +13355,7 @@ module Aws::EC2
|
|
|
13005
13355
|
attr_accessor default_route_table_propagation: ("enable" | "disable")
|
|
13006
13356
|
attr_accessor propagation_default_route_table_id: ::String
|
|
13007
13357
|
attr_accessor amazon_side_asn: ::Integer
|
|
13358
|
+
attr_accessor encryption_support: ("enable" | "disable")
|
|
13008
13359
|
SENSITIVE: []
|
|
13009
13360
|
end
|
|
13010
13361
|
|
|
@@ -13282,6 +13633,26 @@ module Aws::EC2
|
|
|
13282
13633
|
SENSITIVE: []
|
|
13283
13634
|
end
|
|
13284
13635
|
|
|
13636
|
+
class ModifyVpcEncryptionControlRequest
|
|
13637
|
+
attr_accessor dry_run: bool
|
|
13638
|
+
attr_accessor vpc_encryption_control_id: ::String
|
|
13639
|
+
attr_accessor mode: ("monitor" | "enforce")
|
|
13640
|
+
attr_accessor internet_gateway_exclusion: ("enable" | "disable")
|
|
13641
|
+
attr_accessor egress_only_internet_gateway_exclusion: ("enable" | "disable")
|
|
13642
|
+
attr_accessor nat_gateway_exclusion: ("enable" | "disable")
|
|
13643
|
+
attr_accessor virtual_private_gateway_exclusion: ("enable" | "disable")
|
|
13644
|
+
attr_accessor vpc_peering_exclusion: ("enable" | "disable")
|
|
13645
|
+
attr_accessor lambda_exclusion: ("enable" | "disable")
|
|
13646
|
+
attr_accessor vpc_lattice_exclusion: ("enable" | "disable")
|
|
13647
|
+
attr_accessor elastic_file_system_exclusion: ("enable" | "disable")
|
|
13648
|
+
SENSITIVE: []
|
|
13649
|
+
end
|
|
13650
|
+
|
|
13651
|
+
class ModifyVpcEncryptionControlResult
|
|
13652
|
+
attr_accessor vpc_encryption_control: Types::VpcEncryptionControl
|
|
13653
|
+
SENSITIVE: []
|
|
13654
|
+
end
|
|
13655
|
+
|
|
13285
13656
|
class ModifyVpcEndpointConnectionNotificationRequest
|
|
13286
13657
|
attr_accessor dry_run: bool
|
|
13287
13658
|
attr_accessor connection_notification_id: ::String
|
|
@@ -13548,6 +13919,10 @@ module Aws::EC2
|
|
|
13548
13919
|
attr_accessor vpc_id: ::String
|
|
13549
13920
|
attr_accessor tags: ::Array[Types::Tag]
|
|
13550
13921
|
attr_accessor connectivity_type: ("private" | "public")
|
|
13922
|
+
attr_accessor availability_mode: ("zonal" | "regional")
|
|
13923
|
+
attr_accessor auto_scaling_ips: ("enabled" | "disabled")
|
|
13924
|
+
attr_accessor auto_provision_zones: ("enabled" | "disabled")
|
|
13925
|
+
attr_accessor route_table_id: ::String
|
|
13551
13926
|
SENSITIVE: []
|
|
13552
13927
|
end
|
|
13553
13928
|
|
|
@@ -13560,6 +13935,8 @@ module Aws::EC2
|
|
|
13560
13935
|
attr_accessor is_primary: bool
|
|
13561
13936
|
attr_accessor failure_message: ::String
|
|
13562
13937
|
attr_accessor status: ("assigning" | "unassigning" | "associating" | "disassociating" | "succeeded" | "failed")
|
|
13938
|
+
attr_accessor availability_zone: ::String
|
|
13939
|
+
attr_accessor availability_zone_id: ::String
|
|
13563
13940
|
SENSITIVE: []
|
|
13564
13941
|
end
|
|
13565
13942
|
|
|
@@ -15250,6 +15627,17 @@ module Aws::EC2
|
|
|
15250
15627
|
SENSITIVE: []
|
|
15251
15628
|
end
|
|
15252
15629
|
|
|
15630
|
+
class RestoreVolumeFromRecycleBinRequest
|
|
15631
|
+
attr_accessor volume_id: ::String
|
|
15632
|
+
attr_accessor dry_run: bool
|
|
15633
|
+
SENSITIVE: []
|
|
15634
|
+
end
|
|
15635
|
+
|
|
15636
|
+
class RestoreVolumeFromRecycleBinResult
|
|
15637
|
+
attr_accessor return: bool
|
|
15638
|
+
SENSITIVE: []
|
|
15639
|
+
end
|
|
15640
|
+
|
|
15253
15641
|
class RevokeClientVpnIngressRequest
|
|
15254
15642
|
attr_accessor client_vpn_endpoint_id: ::String
|
|
15255
15643
|
attr_accessor target_network_cidr: ::String
|
|
@@ -16108,7 +16496,7 @@ module Aws::EC2
|
|
|
16108
16496
|
end
|
|
16109
16497
|
|
|
16110
16498
|
class SpotFleetTagSpecification
|
|
16111
|
-
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
16499
|
+
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-metering-policy" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "vpc-encryption-control" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-policy" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
16112
16500
|
attr_accessor tags: ::Array[Types::Tag]
|
|
16113
16501
|
SENSITIVE: []
|
|
16114
16502
|
end
|
|
@@ -16446,13 +16834,13 @@ module Aws::EC2
|
|
|
16446
16834
|
class TagDescription
|
|
16447
16835
|
attr_accessor key: ::String
|
|
16448
16836
|
attr_accessor resource_id: ::String
|
|
16449
|
-
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
16837
|
+
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-metering-policy" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "vpc-encryption-control" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-policy" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
16450
16838
|
attr_accessor value: ::String
|
|
16451
16839
|
SENSITIVE: []
|
|
16452
16840
|
end
|
|
16453
16841
|
|
|
16454
16842
|
class TagSpecification
|
|
16455
|
-
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
16843
|
+
attr_accessor resource_type: ("capacity-reservation" | "client-vpn-endpoint" | "customer-gateway" | "carrier-gateway" | "coip-pool" | "declarative-policies-report" | "dedicated-host" | "dhcp-options" | "egress-only-internet-gateway" | "elastic-ip" | "elastic-gpu" | "export-image-task" | "export-instance-task" | "fleet" | "fpga-image" | "host-reservation" | "image" | "image-usage-report" | "import-image-task" | "import-snapshot-task" | "instance" | "instance-event-window" | "internet-gateway" | "ipam" | "ipam-pool" | "ipam-scope" | "ipv4pool-ec2" | "ipv6pool-ec2" | "key-pair" | "launch-template" | "local-gateway" | "local-gateway-route-table" | "local-gateway-virtual-interface" | "local-gateway-virtual-interface-group" | "local-gateway-route-table-vpc-association" | "local-gateway-route-table-virtual-interface-group-association" | "natgateway" | "network-acl" | "network-interface" | "network-insights-analysis" | "network-insights-path" | "network-insights-access-scope" | "network-insights-access-scope-analysis" | "outpost-lag" | "placement-group" | "prefix-list" | "replace-root-volume-task" | "reserved-instances" | "route-table" | "security-group" | "security-group-rule" | "service-link-virtual-interface" | "snapshot" | "spot-fleet-request" | "spot-instances-request" | "subnet" | "subnet-cidr-reservation" | "traffic-mirror-filter" | "traffic-mirror-session" | "traffic-mirror-target" | "transit-gateway" | "transit-gateway-attachment" | "transit-gateway-connect-peer" | "transit-gateway-multicast-domain" | "transit-gateway-policy-table" | "transit-gateway-metering-policy" | "transit-gateway-route-table" | "transit-gateway-route-table-announcement" | "volume" | "vpc" | "vpc-endpoint" | "vpc-endpoint-connection" | "vpc-endpoint-service" | "vpc-endpoint-service-permission" | "vpc-peering-connection" | "vpn-connection" | "vpn-gateway" | "vpc-flow-log" | "capacity-reservation-fleet" | "traffic-mirror-filter-rule" | "vpc-endpoint-connection-device-type" | "verified-access-instance" | "verified-access-group" | "verified-access-endpoint" | "verified-access-policy" | "verified-access-trust-provider" | "vpn-connection-device-type" | "vpc-block-public-access-exclusion" | "vpc-encryption-control" | "route-server" | "route-server-endpoint" | "route-server-peer" | "ipam-resource-discovery" | "ipam-resource-discovery-association" | "instance-connect-endpoint" | "verified-access-endpoint-target" | "ipam-external-resource-verification-token" | "capacity-block" | "mac-modification-task" | "ipam-prefix-list-resolver" | "ipam-policy" | "ipam-prefix-list-resolver-target" | "capacity-manager-data-export" | "vpn-concentrator")
|
|
16456
16844
|
attr_accessor tags: ::Array[Types::Tag]
|
|
16457
16845
|
SENSITIVE: []
|
|
16458
16846
|
end
|
|
@@ -16730,6 +17118,39 @@ module Aws::EC2
|
|
|
16730
17118
|
SENSITIVE: []
|
|
16731
17119
|
end
|
|
16732
17120
|
|
|
17121
|
+
class TransitGatewayMeteringPolicy
|
|
17122
|
+
attr_accessor transit_gateway_metering_policy_id: ::String
|
|
17123
|
+
attr_accessor transit_gateway_id: ::String
|
|
17124
|
+
attr_accessor middlebox_attachment_ids: ::Array[::String]
|
|
17125
|
+
attr_accessor state: ("available" | "deleted" | "pending" | "modifying" | "deleting")
|
|
17126
|
+
attr_accessor update_effective_at: ::Time
|
|
17127
|
+
attr_accessor tags: ::Array[Types::Tag]
|
|
17128
|
+
SENSITIVE: []
|
|
17129
|
+
end
|
|
17130
|
+
|
|
17131
|
+
class TransitGatewayMeteringPolicyEntry
|
|
17132
|
+
attr_accessor policy_rule_number: ::String
|
|
17133
|
+
attr_accessor metered_account: ("source-attachment-owner" | "destination-attachment-owner" | "transit-gateway-owner")
|
|
17134
|
+
attr_accessor state: ("available" | "deleted")
|
|
17135
|
+
attr_accessor updated_at: ::Time
|
|
17136
|
+
attr_accessor update_effective_at: ::Time
|
|
17137
|
+
attr_accessor metering_policy_rule: Types::TransitGatewayMeteringPolicyRule
|
|
17138
|
+
SENSITIVE: []
|
|
17139
|
+
end
|
|
17140
|
+
|
|
17141
|
+
class TransitGatewayMeteringPolicyRule
|
|
17142
|
+
attr_accessor source_transit_gateway_attachment_id: ::String
|
|
17143
|
+
attr_accessor source_transit_gateway_attachment_type: ("vpc" | "vpn" | "vpn-concentrator" | "direct-connect-gateway" | "connect" | "peering" | "tgw-peering" | "network-function")
|
|
17144
|
+
attr_accessor source_cidr_block: ::String
|
|
17145
|
+
attr_accessor source_port_range: ::String
|
|
17146
|
+
attr_accessor destination_transit_gateway_attachment_id: ::String
|
|
17147
|
+
attr_accessor destination_transit_gateway_attachment_type: ("vpc" | "vpn" | "vpn-concentrator" | "direct-connect-gateway" | "connect" | "peering" | "tgw-peering" | "network-function")
|
|
17148
|
+
attr_accessor destination_cidr_block: ::String
|
|
17149
|
+
attr_accessor destination_port_range: ::String
|
|
17150
|
+
attr_accessor protocol: ::String
|
|
17151
|
+
SENSITIVE: []
|
|
17152
|
+
end
|
|
17153
|
+
|
|
16733
17154
|
class TransitGatewayMulticastDeregisteredGroupMembers
|
|
16734
17155
|
attr_accessor transit_gateway_multicast_domain_id: ::String
|
|
16735
17156
|
attr_accessor deregistered_network_interface_ids: ::Array[::String]
|
|
@@ -16823,6 +17244,7 @@ module Aws::EC2
|
|
|
16823
17244
|
attr_accessor dns_support: ("enable" | "disable")
|
|
16824
17245
|
attr_accessor security_group_referencing_support: ("enable" | "disable")
|
|
16825
17246
|
attr_accessor multicast_support: ("enable" | "disable")
|
|
17247
|
+
attr_accessor encryption_support: Types::EncryptionSupport
|
|
16826
17248
|
SENSITIVE: []
|
|
16827
17249
|
end
|
|
16828
17250
|
|
|
@@ -17555,6 +17977,25 @@ module Aws::EC2
|
|
|
17555
17977
|
SENSITIVE: []
|
|
17556
17978
|
end
|
|
17557
17979
|
|
|
17980
|
+
class VolumeRecycleBinInfo
|
|
17981
|
+
attr_accessor volume_id: ::String
|
|
17982
|
+
attr_accessor volume_type: ("standard" | "io1" | "io2" | "gp2" | "sc1" | "st1" | "gp3")
|
|
17983
|
+
attr_accessor state: ("creating" | "available" | "in-use" | "deleting" | "deleted" | "error")
|
|
17984
|
+
attr_accessor size: ::Integer
|
|
17985
|
+
attr_accessor iops: ::Integer
|
|
17986
|
+
attr_accessor throughput: ::Integer
|
|
17987
|
+
attr_accessor outpost_arn: ::String
|
|
17988
|
+
attr_accessor availability_zone: ::String
|
|
17989
|
+
attr_accessor availability_zone_id: ::String
|
|
17990
|
+
attr_accessor source_volume_id: ::String
|
|
17991
|
+
attr_accessor snapshot_id: ::String
|
|
17992
|
+
attr_accessor operator: Types::OperatorResponse
|
|
17993
|
+
attr_accessor create_time: ::Time
|
|
17994
|
+
attr_accessor recycle_bin_enter_time: ::Time
|
|
17995
|
+
attr_accessor recycle_bin_exit_time: ::Time
|
|
17996
|
+
SENSITIVE: []
|
|
17997
|
+
end
|
|
17998
|
+
|
|
17558
17999
|
class VolumeStatusAction
|
|
17559
18000
|
attr_accessor code: ::String
|
|
17560
18001
|
attr_accessor description: ::String
|
|
@@ -17682,6 +18123,19 @@ module Aws::EC2
|
|
|
17682
18123
|
SENSITIVE: []
|
|
17683
18124
|
end
|
|
17684
18125
|
|
|
18126
|
+
class VpcEncryptionControlConfiguration
|
|
18127
|
+
attr_accessor mode: ("monitor" | "enforce")
|
|
18128
|
+
attr_accessor internet_gateway_exclusion: ("enable" | "disable")
|
|
18129
|
+
attr_accessor egress_only_internet_gateway_exclusion: ("enable" | "disable")
|
|
18130
|
+
attr_accessor nat_gateway_exclusion: ("enable" | "disable")
|
|
18131
|
+
attr_accessor virtual_private_gateway_exclusion: ("enable" | "disable")
|
|
18132
|
+
attr_accessor vpc_peering_exclusion: ("enable" | "disable")
|
|
18133
|
+
attr_accessor lambda_exclusion: ("enable" | "disable")
|
|
18134
|
+
attr_accessor vpc_lattice_exclusion: ("enable" | "disable")
|
|
18135
|
+
attr_accessor elastic_file_system_exclusion: ("enable" | "disable")
|
|
18136
|
+
SENSITIVE: []
|
|
18137
|
+
end
|
|
18138
|
+
|
|
17685
18139
|
class VpcEncryptionControlExclusion
|
|
17686
18140
|
attr_accessor state: ("enabling" | "enabled" | "disabling" | "disabled")
|
|
17687
18141
|
attr_accessor state_message: ::String
|
|
@@ -17700,6 +18154,14 @@ module Aws::EC2
|
|
|
17700
18154
|
SENSITIVE: []
|
|
17701
18155
|
end
|
|
17702
18156
|
|
|
18157
|
+
class VpcEncryptionNonCompliantResource
|
|
18158
|
+
attr_accessor id: ::String
|
|
18159
|
+
attr_accessor type: ::String
|
|
18160
|
+
attr_accessor description: ::String
|
|
18161
|
+
attr_accessor is_excludable: bool
|
|
18162
|
+
SENSITIVE: []
|
|
18163
|
+
end
|
|
18164
|
+
|
|
17703
18165
|
class VpcEndpoint
|
|
17704
18166
|
attr_accessor vpc_endpoint_id: ::String
|
|
17705
18167
|
attr_accessor vpc_endpoint_type: ("Interface" | "Gateway" | "GatewayLoadBalancer" | "Resource" | "ServiceNetwork")
|