aws-sdk-ec2 1.489.0 → 1.491.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 +561 -62
- data/lib/aws-sdk-ec2/client_api.rb +173 -0
- data/lib/aws-sdk-ec2/instance.rb +6 -0
- data/lib/aws-sdk-ec2/network_interface.rb +6 -0
- data/lib/aws-sdk-ec2/resource.rb +55 -40
- data/lib/aws-sdk-ec2/subnet.rb +21 -5
- data/lib/aws-sdk-ec2/types.rb +632 -58
- data/lib/aws-sdk-ec2/volume.rb +6 -0
- data/lib/aws-sdk-ec2/vpc.rb +36 -30
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +109 -2
- data/sig/instance.rbs +3 -0
- data/sig/network_interface.rbs +3 -0
- data/sig/resource.rbs +9 -0
- data/sig/subnet.rbs +9 -0
- data/sig/types.rbs +129 -0
- data/sig/volume.rbs +3 -0
- data/sig/vpc.rbs +3 -0
- metadata +2 -2
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -3769,6 +3769,34 @@ module Aws::EC2
|
|
3769
3769
|
include Aws::Structure
|
3770
3770
|
end
|
3771
3771
|
|
3772
|
+
# The state of VPC Block Public Access (BPA).
|
3773
|
+
#
|
3774
|
+
# @!attribute [rw] internet_gateway_block_mode
|
3775
|
+
# The mode of VPC BPA.
|
3776
|
+
#
|
3777
|
+
# * `bidirectional-access-allowed`: VPC BPA is not enabled and traffic
|
3778
|
+
# is allowed to and from internet gateways and egress-only internet
|
3779
|
+
# gateways in this Region.
|
3780
|
+
#
|
3781
|
+
# * `bidirectional-access-blocked`: Block all traffic to and from
|
3782
|
+
# internet gateways and egress-only internet gateways in this Region
|
3783
|
+
# (except for excluded VPCs and subnets).
|
3784
|
+
#
|
3785
|
+
# * `ingress-access-blocked`: Block all internet traffic to the VPCs
|
3786
|
+
# in this Region (except for VPCs or subnets which are excluded).
|
3787
|
+
# Only traffic to and from NAT gateways and egress-only internet
|
3788
|
+
# gateways is allowed because these gateways only allow outbound
|
3789
|
+
# connections to be established.
|
3790
|
+
# @return [String]
|
3791
|
+
#
|
3792
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/BlockPublicAccessStates AWS API Documentation
|
3793
|
+
#
|
3794
|
+
class BlockPublicAccessStates < Struct.new(
|
3795
|
+
:internet_gateway_block_mode)
|
3796
|
+
SENSITIVE = []
|
3797
|
+
include Aws::Structure
|
3798
|
+
end
|
3799
|
+
|
3772
3800
|
# Contains the parameters for BundleInstance.
|
3773
3801
|
#
|
3774
3802
|
# @!attribute [rw] instance_id
|
@@ -9298,6 +9326,10 @@ module Aws::EC2
|
|
9298
9326
|
# The information for the launch template.
|
9299
9327
|
# @return [Types::RequestLaunchTemplateData]
|
9300
9328
|
#
|
9329
|
+
# @!attribute [rw] operator
|
9330
|
+
# Reserved for internal use.
|
9331
|
+
# @return [Types::OperatorRequest]
|
9332
|
+
#
|
9301
9333
|
# @!attribute [rw] tag_specifications
|
9302
9334
|
# The tags to apply to the launch template on creation. To tag the
|
9303
9335
|
# launch template, the resource type must be `launch-template`.
|
@@ -9319,6 +9351,7 @@ module Aws::EC2
|
|
9319
9351
|
:launch_template_name,
|
9320
9352
|
:version_description,
|
9321
9353
|
:launch_template_data,
|
9354
|
+
:operator,
|
9322
9355
|
:tag_specifications)
|
9323
9356
|
SENSITIVE = []
|
9324
9357
|
include Aws::Structure
|
@@ -10243,6 +10276,10 @@ module Aws::EC2
|
|
10243
10276
|
# A connection tracking specification for the network interface.
|
10244
10277
|
# @return [Types::ConnectionTrackingSpecificationRequest]
|
10245
10278
|
#
|
10279
|
+
# @!attribute [rw] operator
|
10280
|
+
# Reserved for internal use.
|
10281
|
+
# @return [Types::OperatorRequest]
|
10282
|
+
#
|
10246
10283
|
# @!attribute [rw] subnet_id
|
10247
10284
|
# The ID of the subnet to associate with the network interface.
|
10248
10285
|
# @return [String]
|
@@ -10324,6 +10361,7 @@ module Aws::EC2
|
|
10324
10361
|
:client_token,
|
10325
10362
|
:enable_primary_ipv_6,
|
10326
10363
|
:connection_tracking_specification,
|
10364
|
+
:operator,
|
10327
10365
|
:subnet_id,
|
10328
10366
|
:description,
|
10329
10367
|
:private_ip_address,
|
@@ -12977,6 +13015,10 @@ module Aws::EC2
|
|
12977
13015
|
# [1]: https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html
|
12978
13016
|
# @return [String]
|
12979
13017
|
#
|
13018
|
+
# @!attribute [rw] operator
|
13019
|
+
# Reserved for internal use.
|
13020
|
+
# @return [Types::OperatorRequest]
|
13021
|
+
#
|
12980
13022
|
# @!attribute [rw] dry_run
|
12981
13023
|
# Checks whether you have the required permissions for the action,
|
12982
13024
|
# without actually making the request, and provides an error response.
|
@@ -12999,11 +13041,71 @@ module Aws::EC2
|
|
12999
13041
|
:multi_attach_enabled,
|
13000
13042
|
:throughput,
|
13001
13043
|
:client_token,
|
13044
|
+
:operator,
|
13002
13045
|
:dry_run)
|
13003
13046
|
SENSITIVE = []
|
13004
13047
|
include Aws::Structure
|
13005
13048
|
end
|
13006
13049
|
|
13050
|
+
# @!attribute [rw] dry_run
|
13051
|
+
# Checks whether you have the required permissions for the action,
|
13052
|
+
# without actually making the request, and provides an error response.
|
13053
|
+
# If you have the required permissions, the error response is
|
13054
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
13055
|
+
# @return [Boolean]
|
13056
|
+
#
|
13057
|
+
# @!attribute [rw] subnet_id
|
13058
|
+
# A subnet ID.
|
13059
|
+
# @return [String]
|
13060
|
+
#
|
13061
|
+
# @!attribute [rw] vpc_id
|
13062
|
+
# A VPC ID.
|
13063
|
+
# @return [String]
|
13064
|
+
#
|
13065
|
+
# @!attribute [rw] internet_gateway_exclusion_mode
|
13066
|
+
# The exclusion mode for internet gateway traffic.
|
13067
|
+
#
|
13068
|
+
# * `bidirectional-access-allowed`: Allow all internet traffic to and
|
13069
|
+
# from the excluded VPCs and subnets.
|
13070
|
+
#
|
13071
|
+
# * `egress-access-allowed`: Allow outbound internet traffic from the
|
13072
|
+
# excluded VPCs and subnets. Block inbound internet traffic to the
|
13073
|
+
# excluded VPCs and subnets. Only applies when VPC Block Public
|
13074
|
+
# Access is set to Bidirectional.
|
13075
|
+
# @return [String]
|
13076
|
+
#
|
13077
|
+
# @!attribute [rw] tag_specifications
|
13078
|
+
# `tag` - The key/value combination of a tag assigned to the resource.
|
13079
|
+
# Use the tag key in the filter name and the tag value as the filter
|
13080
|
+
# value. For example, to find all resources that have a tag with the
|
13081
|
+
# key `Owner` and the value `TeamA`, specify `tag:Owner` for the
|
13082
|
+
# filter name and `TeamA` for the filter value.
|
13083
|
+
# @return [Array<Types::TagSpecification>]
|
13084
|
+
#
|
13085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcBlockPublicAccessExclusionRequest AWS API Documentation
|
13086
|
+
#
|
13087
|
+
class CreateVpcBlockPublicAccessExclusionRequest < Struct.new(
|
13088
|
+
:dry_run,
|
13089
|
+
:subnet_id,
|
13090
|
+
:vpc_id,
|
13091
|
+
:internet_gateway_exclusion_mode,
|
13092
|
+
:tag_specifications)
|
13093
|
+
SENSITIVE = []
|
13094
|
+
include Aws::Structure
|
13095
|
+
end
|
13096
|
+
|
13097
|
+
# @!attribute [rw] vpc_block_public_access_exclusion
|
13098
|
+
# Details about an exclusion.
|
13099
|
+
# @return [Types::VpcBlockPublicAccessExclusion]
|
13100
|
+
#
|
13101
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcBlockPublicAccessExclusionResult AWS API Documentation
|
13102
|
+
#
|
13103
|
+
class CreateVpcBlockPublicAccessExclusionResult < Struct.new(
|
13104
|
+
:vpc_block_public_access_exclusion)
|
13105
|
+
SENSITIVE = []
|
13106
|
+
include Aws::Structure
|
13107
|
+
end
|
13108
|
+
|
13007
13109
|
# @!attribute [rw] dry_run
|
13008
13110
|
# Checks whether you have the required permissions for the action,
|
13009
13111
|
# without actually making the request, and provides an error response.
|
@@ -16191,6 +16293,38 @@ module Aws::EC2
|
|
16191
16293
|
include Aws::Structure
|
16192
16294
|
end
|
16193
16295
|
|
16296
|
+
# @!attribute [rw] dry_run
|
16297
|
+
# Checks whether you have the required permissions for the action,
|
16298
|
+
# without actually making the request, and provides an error response.
|
16299
|
+
# If you have the required permissions, the error response is
|
16300
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
16301
|
+
# @return [Boolean]
|
16302
|
+
#
|
16303
|
+
# @!attribute [rw] exclusion_id
|
16304
|
+
# The ID of the exclusion.
|
16305
|
+
# @return [String]
|
16306
|
+
#
|
16307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcBlockPublicAccessExclusionRequest AWS API Documentation
|
16308
|
+
#
|
16309
|
+
class DeleteVpcBlockPublicAccessExclusionRequest < Struct.new(
|
16310
|
+
:dry_run,
|
16311
|
+
:exclusion_id)
|
16312
|
+
SENSITIVE = []
|
16313
|
+
include Aws::Structure
|
16314
|
+
end
|
16315
|
+
|
16316
|
+
# @!attribute [rw] vpc_block_public_access_exclusion
|
16317
|
+
# Details about an exclusion.
|
16318
|
+
# @return [Types::VpcBlockPublicAccessExclusion]
|
16319
|
+
#
|
16320
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVpcBlockPublicAccessExclusionResult AWS API Documentation
|
16321
|
+
#
|
16322
|
+
class DeleteVpcBlockPublicAccessExclusionResult < Struct.new(
|
16323
|
+
:vpc_block_public_access_exclusion)
|
16324
|
+
SENSITIVE = []
|
16325
|
+
include Aws::Structure
|
16326
|
+
end
|
16327
|
+
|
16194
16328
|
# @!attribute [rw] dry_run
|
16195
16329
|
# Checks whether you have the required permissions for the action,
|
16196
16330
|
# without actually making the request, and provides an error response.
|
@@ -17489,7 +17623,6 @@ module Aws::EC2
|
|
17489
17623
|
# * `dedicated` - The Capacity Reservation is created on
|
17490
17624
|
# single-tenant hardware that is dedicated to a single Amazon Web
|
17491
17625
|
# Services account.
|
17492
|
-
#
|
17493
17626
|
# * `outpost-arn` - The Amazon Resource Name (ARN) of the Outpost on
|
17494
17627
|
# which the Capacity Reservation was created.
|
17495
17628
|
#
|
@@ -17513,7 +17646,6 @@ module Aws::EC2
|
|
17513
17646
|
# request might fail due to invalid request parameters, capacity
|
17514
17647
|
# constraints, or instance limit constraints. Failed requests are
|
17515
17648
|
# retained for 60 minutes.
|
17516
|
-
#
|
17517
17649
|
# * `start-date` - The date and time at which the Capacity Reservation
|
17518
17650
|
# was started.
|
17519
17651
|
#
|
@@ -17532,7 +17664,6 @@ module Aws::EC2
|
|
17532
17664
|
#
|
17533
17665
|
# * `limited` - The Capacity Reservation expires automatically at a
|
17534
17666
|
# specified date and time.
|
17535
|
-
#
|
17536
17667
|
# * `instance-match-criteria` - Indicates the type of instance
|
17537
17668
|
# launches that the Capacity Reservation accepts. The options
|
17538
17669
|
# include:
|
@@ -17548,7 +17679,6 @@ module Aws::EC2
|
|
17548
17679
|
# Availability Zone), and explicitly target the Capacity
|
17549
17680
|
# Reservation. This ensures that only permitted instances can use
|
17550
17681
|
# the reserved capacity.
|
17551
|
-
#
|
17552
17682
|
# * `placement-group-arn` - The ARN of the cluster placement group in
|
17553
17683
|
# which the Capacity Reservation was created.
|
17554
17684
|
# @return [Array<Types::Filter>]
|
@@ -17685,10 +17815,10 @@ module Aws::EC2
|
|
17685
17815
|
#
|
17686
17816
|
# * `instance-id` - The ID of the instance.
|
17687
17817
|
#
|
17688
|
-
# * `tag
|
17689
|
-
#
|
17690
|
-
#
|
17691
|
-
#
|
17818
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
17819
|
+
# resource. Use the tag key in the filter name and the tag value as
|
17820
|
+
# the filter value. For example, to find all resources that have a
|
17821
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
17692
17822
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
17693
17823
|
#
|
17694
17824
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -18259,10 +18389,10 @@ module Aws::EC2
|
|
18259
18389
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
18260
18390
|
# the DHCP options set.
|
18261
18391
|
#
|
18262
|
-
# * `tag
|
18263
|
-
#
|
18264
|
-
#
|
18265
|
-
#
|
18392
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
18393
|
+
# resource. Use the tag key in the filter name and the tag value as
|
18394
|
+
# the filter value. For example, to find all resources that have a
|
18395
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
18266
18396
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
18267
18397
|
#
|
18268
18398
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -18330,10 +18460,10 @@ module Aws::EC2
|
|
18330
18460
|
# @!attribute [rw] filters
|
18331
18461
|
# The filters.
|
18332
18462
|
#
|
18333
|
-
# * `tag
|
18334
|
-
#
|
18335
|
-
#
|
18336
|
-
#
|
18463
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
18464
|
+
# resource. Use the tag key in the filter name and the tag value as
|
18465
|
+
# the filter value. For example, to find all resources that have a
|
18466
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
18337
18467
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
18338
18468
|
#
|
18339
18469
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -21526,10 +21656,10 @@ module Aws::EC2
|
|
21526
21656
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
21527
21657
|
# the internet gateway.
|
21528
21658
|
#
|
21529
|
-
# * `tag
|
21530
|
-
#
|
21531
|
-
#
|
21532
|
-
#
|
21659
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
21660
|
+
# resource. Use the tag key in the filter name and the tag value as
|
21661
|
+
# the filter value. For example, to find all resources that have a
|
21662
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
21533
21663
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
21534
21664
|
#
|
21535
21665
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -23018,10 +23148,10 @@ module Aws::EC2
|
|
23018
23148
|
# * `subnet-id` - The ID of the subnet in which the NAT gateway
|
23019
23149
|
# resides.
|
23020
23150
|
#
|
23021
|
-
# * `tag
|
23022
|
-
#
|
23023
|
-
#
|
23024
|
-
#
|
23151
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
23152
|
+
# resource. Use the tag key in the filter name and the tag value as
|
23153
|
+
# the filter value. For example, to find all resources that have a
|
23154
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
23025
23155
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
23026
23156
|
#
|
23027
23157
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -23154,10 +23284,10 @@ module Aws::EC2
|
|
23154
23284
|
# * `owner-id` - The ID of the Amazon Web Services account that owns
|
23155
23285
|
# the network ACL.
|
23156
23286
|
#
|
23157
|
-
# * `tag
|
23158
|
-
#
|
23159
|
-
#
|
23160
|
-
#
|
23287
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
23288
|
+
# resource. Use the tag key in the filter name and the tag value as
|
23289
|
+
# the filter value. For example, to find all resources that have a
|
23290
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
23161
23291
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
23162
23292
|
#
|
23163
23293
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -24671,10 +24801,10 @@ module Aws::EC2
|
|
24671
24801
|
# * `route.vpc-peering-connection-id` - The ID of a VPC peering
|
24672
24802
|
# connection specified in a route in the table.
|
24673
24803
|
#
|
24674
|
-
# * `tag
|
24675
|
-
#
|
24676
|
-
#
|
24677
|
-
#
|
24804
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
24805
|
+
# resource. Use the tag key in the filter name and the tag value as
|
24806
|
+
# the filter value. For example, to find all resources that have a
|
24807
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
24678
24808
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
24679
24809
|
#
|
24680
24810
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -26195,10 +26325,10 @@ module Aws::EC2
|
|
26195
26325
|
#
|
26196
26326
|
# * `subnet-id` - The ID of the subnet.
|
26197
26327
|
#
|
26198
|
-
# * `tag
|
26199
|
-
#
|
26200
|
-
#
|
26201
|
-
#
|
26328
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
26329
|
+
# resource. Use the tag key in the filter name and the tag value as
|
26330
|
+
# the filter value. For example, to find all resources that have a
|
26331
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
26202
26332
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
26203
26333
|
#
|
26204
26334
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -28081,6 +28211,119 @@ module Aws::EC2
|
|
28081
28211
|
include Aws::Structure
|
28082
28212
|
end
|
28083
28213
|
|
28214
|
+
# @!attribute [rw] dry_run
|
28215
|
+
# Checks whether you have the required permissions for the action,
|
28216
|
+
# without actually making the request, and provides an error response.
|
28217
|
+
# If you have the required permissions, the error response is
|
28218
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
28219
|
+
# @return [Boolean]
|
28220
|
+
#
|
28221
|
+
# @!attribute [rw] filters
|
28222
|
+
# Filters for the request:
|
28223
|
+
#
|
28224
|
+
# * `resource-arn` - The Amazon Resource Name (ARN) of a exclusion.
|
28225
|
+
#
|
28226
|
+
# * `internet-gateway-exclusion-mode` - The mode of a VPC BPA
|
28227
|
+
# exclusion. Possible values: `bidirectional-access-allowed |
|
28228
|
+
# egress-access-allowed`.
|
28229
|
+
#
|
28230
|
+
# * `state` - The state of VPC BPA. Possible values:
|
28231
|
+
# `create-in-progress | create-complete | update-in-progress |
|
28232
|
+
# update-complete | delete-in-progress | deleted-complete |
|
28233
|
+
# disable-in-progress | disable-complete`
|
28234
|
+
#
|
28235
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
28236
|
+
# resource. Use the tag key in the filter name and the tag value as
|
28237
|
+
# the filter value. For example, to find all resources that have a
|
28238
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
28239
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
28240
|
+
#
|
28241
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
28242
|
+
# filter to find all resources assigned a tag with a specific key,
|
28243
|
+
# regardless of the tag value.
|
28244
|
+
#
|
28245
|
+
# * `tag-value`: The value of a tag assigned to the resource. Use this
|
28246
|
+
# filter to find all resources assigned a tag with a specific value,
|
28247
|
+
# regardless of the tag key.
|
28248
|
+
# @return [Array<Types::Filter>]
|
28249
|
+
#
|
28250
|
+
# @!attribute [rw] exclusion_ids
|
28251
|
+
# IDs of exclusions.
|
28252
|
+
# @return [Array<String>]
|
28253
|
+
#
|
28254
|
+
# @!attribute [rw] next_token
|
28255
|
+
# The token returned from a previous paginated request. Pagination
|
28256
|
+
# continues from the end of the items returned by the previous
|
28257
|
+
# request.
|
28258
|
+
# @return [String]
|
28259
|
+
#
|
28260
|
+
# @!attribute [rw] max_results
|
28261
|
+
# The maximum number of items to return for this request. To get the
|
28262
|
+
# next page of items, make another request with the token returned in
|
28263
|
+
# the output. For more information, see [Pagination][1].
|
28264
|
+
#
|
28265
|
+
#
|
28266
|
+
#
|
28267
|
+
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Query-Requests.html#api-pagination
|
28268
|
+
# @return [Integer]
|
28269
|
+
#
|
28270
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcBlockPublicAccessExclusionsRequest AWS API Documentation
|
28271
|
+
#
|
28272
|
+
class DescribeVpcBlockPublicAccessExclusionsRequest < Struct.new(
|
28273
|
+
:dry_run,
|
28274
|
+
:filters,
|
28275
|
+
:exclusion_ids,
|
28276
|
+
:next_token,
|
28277
|
+
:max_results)
|
28278
|
+
SENSITIVE = []
|
28279
|
+
include Aws::Structure
|
28280
|
+
end
|
28281
|
+
|
28282
|
+
# @!attribute [rw] vpc_block_public_access_exclusions
|
28283
|
+
# Details related to the exclusions.
|
28284
|
+
# @return [Array<Types::VpcBlockPublicAccessExclusion>]
|
28285
|
+
#
|
28286
|
+
# @!attribute [rw] next_token
|
28287
|
+
# The token to include in another request to get the next page of
|
28288
|
+
# items. This value is `null` when there are no more items to return.
|
28289
|
+
# @return [String]
|
28290
|
+
#
|
28291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcBlockPublicAccessExclusionsResult AWS API Documentation
|
28292
|
+
#
|
28293
|
+
class DescribeVpcBlockPublicAccessExclusionsResult < Struct.new(
|
28294
|
+
:vpc_block_public_access_exclusions,
|
28295
|
+
:next_token)
|
28296
|
+
SENSITIVE = []
|
28297
|
+
include Aws::Structure
|
28298
|
+
end
|
28299
|
+
|
28300
|
+
# @!attribute [rw] dry_run
|
28301
|
+
# Checks whether you have the required permissions for the action,
|
28302
|
+
# without actually making the request, and provides an error response.
|
28303
|
+
# If you have the required permissions, the error response is
|
28304
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
28305
|
+
# @return [Boolean]
|
28306
|
+
#
|
28307
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcBlockPublicAccessOptionsRequest AWS API Documentation
|
28308
|
+
#
|
28309
|
+
class DescribeVpcBlockPublicAccessOptionsRequest < Struct.new(
|
28310
|
+
:dry_run)
|
28311
|
+
SENSITIVE = []
|
28312
|
+
include Aws::Structure
|
28313
|
+
end
|
28314
|
+
|
28315
|
+
# @!attribute [rw] vpc_block_public_access_options
|
28316
|
+
# Details related to the options.
|
28317
|
+
# @return [Types::VpcBlockPublicAccessOptions]
|
28318
|
+
#
|
28319
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcBlockPublicAccessOptionsResult AWS API Documentation
|
28320
|
+
#
|
28321
|
+
class DescribeVpcBlockPublicAccessOptionsResult < Struct.new(
|
28322
|
+
:vpc_block_public_access_options)
|
28323
|
+
SENSITIVE = []
|
28324
|
+
include Aws::Structure
|
28325
|
+
end
|
28326
|
+
|
28084
28327
|
# @!attribute [rw] vpc_ids
|
28085
28328
|
# The IDs of the VPCs.
|
28086
28329
|
# @return [Array<String>]
|
@@ -28146,10 +28389,10 @@ module Aws::EC2
|
|
28146
28389
|
# * `is-classic-link-enabled` - Whether the VPC is enabled for
|
28147
28390
|
# ClassicLink (`true` \| `false`).
|
28148
28391
|
#
|
28149
|
-
# * `tag
|
28150
|
-
#
|
28151
|
-
#
|
28152
|
-
#
|
28392
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
28393
|
+
# resource. Use the tag key in the filter name and the tag value as
|
28394
|
+
# the filter value. For example, to find all resources that have a
|
28395
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
28153
28396
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
28154
28397
|
#
|
28155
28398
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -28680,10 +28923,10 @@ module Aws::EC2
|
|
28680
28923
|
# * `status-message` - A message that provides more information about
|
28681
28924
|
# the status of the VPC peering connection, if applicable.
|
28682
28925
|
#
|
28683
|
-
# * `tag
|
28684
|
-
#
|
28685
|
-
#
|
28686
|
-
#
|
28926
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
28927
|
+
# resource. Use the tag key in the filter name and the tag value as
|
28928
|
+
# the filter value. For example, to find all resources that have a
|
28929
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
28687
28930
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
28688
28931
|
#
|
28689
28932
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -28762,10 +29005,10 @@ module Aws::EC2
|
|
28762
29005
|
#
|
28763
29006
|
# * `state` - The state of the VPC (`pending` \| `available`).
|
28764
29007
|
#
|
28765
|
-
# * `tag
|
28766
|
-
#
|
28767
|
-
#
|
28768
|
-
#
|
29008
|
+
# * `tag` - The key/value combination of a tag assigned to the
|
29009
|
+
# resource. Use the tag key in the filter name and the tag value as
|
29010
|
+
# the filter value. For example, to find all resources that have a
|
29011
|
+
# tag with the key `Owner` and the value `TeamA`, specify
|
28769
29012
|
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
28770
29013
|
#
|
28771
29014
|
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
@@ -31184,6 +31427,10 @@ module Aws::EC2
|
|
31184
31427
|
# Fargate tasks.
|
31185
31428
|
# @return [String]
|
31186
31429
|
#
|
31430
|
+
# @!attribute [rw] operator
|
31431
|
+
# The entity that manages the EBS volume.
|
31432
|
+
# @return [Types::OperatorResponse]
|
31433
|
+
#
|
31187
31434
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EbsInstanceBlockDevice AWS API Documentation
|
31188
31435
|
#
|
31189
31436
|
class EbsInstanceBlockDevice < Struct.new(
|
@@ -31192,7 +31439,8 @@ module Aws::EC2
|
|
31192
31439
|
:status,
|
31193
31440
|
:volume_id,
|
31194
31441
|
:associated_resource,
|
31195
|
-
:volume_owner_id
|
31442
|
+
:volume_owner_id,
|
31443
|
+
:operator)
|
31196
31444
|
SENSITIVE = []
|
31197
31445
|
include Aws::Structure
|
31198
31446
|
end
|
@@ -40067,6 +40315,10 @@ module Aws::EC2
|
|
40067
40315
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ami-boot.html
|
40068
40316
|
# @return [String]
|
40069
40317
|
#
|
40318
|
+
# @!attribute [rw] operator
|
40319
|
+
# The entity that manages the instance.
|
40320
|
+
# @return [Types::OperatorResponse]
|
40321
|
+
#
|
40070
40322
|
# @!attribute [rw] instance_id
|
40071
40323
|
# The ID of the instance.
|
40072
40324
|
# @return [String]
|
@@ -40209,6 +40461,7 @@ module Aws::EC2
|
|
40209
40461
|
:tpm_support,
|
40210
40462
|
:maintenance_options,
|
40211
40463
|
:current_instance_boot_mode,
|
40464
|
+
:operator,
|
40212
40465
|
:instance_id,
|
40213
40466
|
:image_id,
|
40214
40467
|
:state,
|
@@ -40818,6 +41071,10 @@ module Aws::EC2
|
|
40818
41071
|
# Information about the AMI used to launch the instance.
|
40819
41072
|
# @return [Types::ImageMetadata]
|
40820
41073
|
#
|
41074
|
+
# @!attribute [rw] operator
|
41075
|
+
# The entity that manages the instance.
|
41076
|
+
# @return [Types::OperatorResponse]
|
41077
|
+
#
|
40821
41078
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceImageMetadata AWS API Documentation
|
40822
41079
|
#
|
40823
41080
|
class InstanceImageMetadata < Struct.new(
|
@@ -40829,7 +41086,8 @@ module Aws::EC2
|
|
40829
41086
|
:state,
|
40830
41087
|
:owner_id,
|
40831
41088
|
:tags,
|
40832
|
-
:image_metadata
|
41089
|
+
:image_metadata,
|
41090
|
+
:operator)
|
40833
41091
|
SENSITIVE = []
|
40834
41092
|
include Aws::Structure
|
40835
41093
|
end
|
@@ -41254,6 +41512,10 @@ module Aws::EC2
|
|
41254
41512
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/security-group-connection-tracking.html#connection-tracking-timeouts
|
41255
41513
|
# @return [Types::ConnectionTrackingSpecificationResponse]
|
41256
41514
|
#
|
41515
|
+
# @!attribute [rw] operator
|
41516
|
+
# The entity that manages the network interface.
|
41517
|
+
# @return [Types::OperatorResponse]
|
41518
|
+
#
|
41257
41519
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceNetworkInterface AWS API Documentation
|
41258
41520
|
#
|
41259
41521
|
class InstanceNetworkInterface < Struct.new(
|
@@ -41275,7 +41537,8 @@ module Aws::EC2
|
|
41275
41537
|
:interface_type,
|
41276
41538
|
:ipv_4_prefixes,
|
41277
41539
|
:ipv_6_prefixes,
|
41278
|
-
:connection_tracking_configuration
|
41540
|
+
:connection_tracking_configuration,
|
41541
|
+
:operator)
|
41279
41542
|
SENSITIVE = []
|
41280
41543
|
include Aws::Structure
|
41281
41544
|
end
|
@@ -42691,6 +42954,10 @@ module Aws::EC2
|
|
42691
42954
|
# The Amazon Resource Name (ARN) of the Outpost.
|
42692
42955
|
# @return [String]
|
42693
42956
|
#
|
42957
|
+
# @!attribute [rw] operator
|
42958
|
+
# The entity that manages the instance.
|
42959
|
+
# @return [Types::OperatorResponse]
|
42960
|
+
#
|
42694
42961
|
# @!attribute [rw] events
|
42695
42962
|
# Any scheduled events associated with the instance.
|
42696
42963
|
# @return [Array<Types::InstanceStatusEvent>]
|
@@ -42726,6 +42993,7 @@ module Aws::EC2
|
|
42726
42993
|
class InstanceStatus < Struct.new(
|
42727
42994
|
:availability_zone,
|
42728
42995
|
:outpost_arn,
|
42996
|
+
:operator,
|
42729
42997
|
:events,
|
42730
42998
|
:instance_id,
|
42731
42999
|
:instance_state,
|
@@ -43827,7 +44095,6 @@ module Aws::EC2
|
|
43827
44095
|
# * You have opted-out of the IPAM home Region.
|
43828
44096
|
#
|
43829
44097
|
# * Account you are using as your IPAM account has been suspended.
|
43830
|
-
#
|
43831
44098
|
# * `throttling-failure` - IPAM account is already using the allotted
|
43832
44099
|
# transactions per second and IPAM is receiving a throttling error
|
43833
44100
|
# when assuming the Amazon Web Services IAM SLR.
|
@@ -45291,6 +45558,10 @@ module Aws::EC2
|
|
45291
45558
|
# The tags for the launch template.
|
45292
45559
|
# @return [Array<Types::Tag>]
|
45293
45560
|
#
|
45561
|
+
# @!attribute [rw] operator
|
45562
|
+
# The entity that manages the launch template.
|
45563
|
+
# @return [Types::OperatorResponse]
|
45564
|
+
#
|
45294
45565
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplate AWS API Documentation
|
45295
45566
|
#
|
45296
45567
|
class LaunchTemplate < Struct.new(
|
@@ -45300,7 +45571,8 @@ module Aws::EC2
|
|
45300
45571
|
:created_by,
|
45301
45572
|
:default_version_number,
|
45302
45573
|
:latest_version_number,
|
45303
|
-
:tags
|
45574
|
+
:tags,
|
45575
|
+
:operator)
|
45304
45576
|
SENSITIVE = []
|
45305
45577
|
include Aws::Structure
|
45306
45578
|
end
|
@@ -47004,6 +47276,10 @@ module Aws::EC2
|
|
47004
47276
|
# Information about the launch template.
|
47005
47277
|
# @return [Types::ResponseLaunchTemplateData]
|
47006
47278
|
#
|
47279
|
+
# @!attribute [rw] operator
|
47280
|
+
# The entity that manages the launch template.
|
47281
|
+
# @return [Types::OperatorResponse]
|
47282
|
+
#
|
47007
47283
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/LaunchTemplateVersion AWS API Documentation
|
47008
47284
|
#
|
47009
47285
|
class LaunchTemplateVersion < Struct.new(
|
@@ -47014,7 +47290,8 @@ module Aws::EC2
|
|
47014
47290
|
:create_time,
|
47015
47291
|
:created_by,
|
47016
47292
|
:default_version,
|
47017
|
-
:launch_template_data
|
47293
|
+
:launch_template_data,
|
47294
|
+
:operator)
|
47018
47295
|
SENSITIVE = []
|
47019
47296
|
include Aws::Structure
|
47020
47297
|
end
|
@@ -47643,7 +47920,6 @@ module Aws::EC2
|
|
47643
47920
|
#
|
47644
47921
|
# * The snapshot is unlocked by a user with the appropriate
|
47645
47922
|
# permissions.
|
47646
|
-
#
|
47647
47923
|
# Users with the appropriate IAM permissions can unlock the
|
47648
47924
|
# snapshot, increase or decrease the lock duration, and change the
|
47649
47925
|
# lock mode to `compliance` at any time.
|
@@ -51964,6 +52240,97 @@ module Aws::EC2
|
|
51964
52240
|
include Aws::Structure
|
51965
52241
|
end
|
51966
52242
|
|
52243
|
+
# @!attribute [rw] dry_run
|
52244
|
+
# Checks whether you have the required permissions for the action,
|
52245
|
+
# without actually making the request, and provides an error response.
|
52246
|
+
# If you have the required permissions, the error response is
|
52247
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
52248
|
+
# @return [Boolean]
|
52249
|
+
#
|
52250
|
+
# @!attribute [rw] exclusion_id
|
52251
|
+
# The ID of an exclusion.
|
52252
|
+
# @return [String]
|
52253
|
+
#
|
52254
|
+
# @!attribute [rw] internet_gateway_exclusion_mode
|
52255
|
+
# The exclusion mode for internet gateway traffic.
|
52256
|
+
#
|
52257
|
+
# * `bidirectional-access-allowed`: Allow all internet traffic to and
|
52258
|
+
# from the excluded VPCs and subnets.
|
52259
|
+
#
|
52260
|
+
# * `egress-access-allowed`: Allow outbound internet traffic from the
|
52261
|
+
# excluded VPCs and subnets. Block inbound internet traffic to the
|
52262
|
+
# excluded VPCs and subnets. Only applies when VPC Block Public
|
52263
|
+
# Access is set to Bidirectional.
|
52264
|
+
# @return [String]
|
52265
|
+
#
|
52266
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcBlockPublicAccessExclusionRequest AWS API Documentation
|
52267
|
+
#
|
52268
|
+
class ModifyVpcBlockPublicAccessExclusionRequest < Struct.new(
|
52269
|
+
:dry_run,
|
52270
|
+
:exclusion_id,
|
52271
|
+
:internet_gateway_exclusion_mode)
|
52272
|
+
SENSITIVE = []
|
52273
|
+
include Aws::Structure
|
52274
|
+
end
|
52275
|
+
|
52276
|
+
# @!attribute [rw] vpc_block_public_access_exclusion
|
52277
|
+
# Details related to the exclusion.
|
52278
|
+
# @return [Types::VpcBlockPublicAccessExclusion]
|
52279
|
+
#
|
52280
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcBlockPublicAccessExclusionResult AWS API Documentation
|
52281
|
+
#
|
52282
|
+
class ModifyVpcBlockPublicAccessExclusionResult < Struct.new(
|
52283
|
+
:vpc_block_public_access_exclusion)
|
52284
|
+
SENSITIVE = []
|
52285
|
+
include Aws::Structure
|
52286
|
+
end
|
52287
|
+
|
52288
|
+
# @!attribute [rw] dry_run
|
52289
|
+
# Checks whether you have the required permissions for the action,
|
52290
|
+
# without actually making the request, and provides an error response.
|
52291
|
+
# If you have the required permissions, the error response is
|
52292
|
+
# `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
|
52293
|
+
# @return [Boolean]
|
52294
|
+
#
|
52295
|
+
# @!attribute [rw] internet_gateway_block_mode
|
52296
|
+
# The mode of VPC BPA.
|
52297
|
+
#
|
52298
|
+
# * `bidirectional-access-allowed`: VPC BPA is not enabled and traffic
|
52299
|
+
# is allowed to and from internet gateways and egress-only internet
|
52300
|
+
# gateways in this Region.
|
52301
|
+
#
|
52302
|
+
# * `bidirectional-access-blocked`: Block all traffic to and from
|
52303
|
+
# internet gateways and egress-only internet gateways in this Region
|
52304
|
+
# (except for excluded VPCs and subnets).
|
52305
|
+
#
|
52306
|
+
# * `ingress-access-blocked`: Block all internet traffic to the VPCs
|
52307
|
+
# in this Region (except for VPCs or subnets which are excluded).
|
52308
|
+
# Only traffic to and from NAT gateways and egress-only internet
|
52309
|
+
# gateways is allowed because these gateways only allow outbound
|
52310
|
+
# connections to be established.
|
52311
|
+
# @return [String]
|
52312
|
+
#
|
52313
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcBlockPublicAccessOptionsRequest AWS API Documentation
|
52314
|
+
#
|
52315
|
+
class ModifyVpcBlockPublicAccessOptionsRequest < Struct.new(
|
52316
|
+
:dry_run,
|
52317
|
+
:internet_gateway_block_mode)
|
52318
|
+
SENSITIVE = []
|
52319
|
+
include Aws::Structure
|
52320
|
+
end
|
52321
|
+
|
52322
|
+
# @!attribute [rw] vpc_block_public_access_options
|
52323
|
+
# Details related to the VPC Block Public Access (BPA) options.
|
52324
|
+
# @return [Types::VpcBlockPublicAccessOptions]
|
52325
|
+
#
|
52326
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVpcBlockPublicAccessOptionsResult AWS API Documentation
|
52327
|
+
#
|
52328
|
+
class ModifyVpcBlockPublicAccessOptionsResult < Struct.new(
|
52329
|
+
:vpc_block_public_access_options)
|
52330
|
+
SENSITIVE = []
|
52331
|
+
include Aws::Structure
|
52332
|
+
end
|
52333
|
+
|
51967
52334
|
# @!attribute [rw] dry_run
|
51968
52335
|
# Checks whether you have the required permissions for the action,
|
51969
52336
|
# without actually making the request, and provides an error response.
|
@@ -53896,6 +54263,10 @@ module Aws::EC2
|
|
53896
54263
|
# interface.
|
53897
54264
|
# @return [String]
|
53898
54265
|
#
|
54266
|
+
# @!attribute [rw] operator
|
54267
|
+
# The entity that manages the network interface.
|
54268
|
+
# @return [Types::OperatorResponse]
|
54269
|
+
#
|
53899
54270
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/NetworkInterface AWS API Documentation
|
53900
54271
|
#
|
53901
54272
|
class NetworkInterface < Struct.new(
|
@@ -53925,7 +54296,8 @@ module Aws::EC2
|
|
53925
54296
|
:vpc_id,
|
53926
54297
|
:deny_all_igw_traffic,
|
53927
54298
|
:ipv_6_native,
|
53928
|
-
:ipv_6_address
|
54299
|
+
:ipv_6_address,
|
54300
|
+
:operator)
|
53929
54301
|
SENSITIVE = []
|
53930
54302
|
include Aws::Structure
|
53931
54303
|
end
|
@@ -54534,6 +54906,41 @@ module Aws::EC2
|
|
54534
54906
|
include Aws::Structure
|
54535
54907
|
end
|
54536
54908
|
|
54909
|
+
# The entity that manages the resource.
|
54910
|
+
#
|
54911
|
+
# @!attribute [rw] principal
|
54912
|
+
# The entity that manages the resource.
|
54913
|
+
# @return [String]
|
54914
|
+
#
|
54915
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/OperatorRequest AWS API Documentation
|
54916
|
+
#
|
54917
|
+
class OperatorRequest < Struct.new(
|
54918
|
+
:principal)
|
54919
|
+
SENSITIVE = []
|
54920
|
+
include Aws::Structure
|
54921
|
+
end
|
54922
|
+
|
54923
|
+
# Describes whether the resource is managed by an entity and, if so,
|
54924
|
+
# describes the entity that manages it.
|
54925
|
+
#
|
54926
|
+
# @!attribute [rw] managed
|
54927
|
+
# If `true`, the resource is managed by an entity.
|
54928
|
+
# @return [Boolean]
|
54929
|
+
#
|
54930
|
+
# @!attribute [rw] principal
|
54931
|
+
# If `managed` is `true`, then the principal is returned. The
|
54932
|
+
# principal is the entity that manages the resource.
|
54933
|
+
# @return [String]
|
54934
|
+
#
|
54935
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/OperatorResponse AWS API Documentation
|
54936
|
+
#
|
54937
|
+
class OperatorResponse < Struct.new(
|
54938
|
+
:managed,
|
54939
|
+
:principal)
|
54940
|
+
SENSITIVE = []
|
54941
|
+
include Aws::Structure
|
54942
|
+
end
|
54943
|
+
|
54537
54944
|
# Describes a packet header statement.
|
54538
54945
|
#
|
54539
54946
|
# @!attribute [rw] source_addresses
|
@@ -58249,6 +58656,10 @@ module Aws::EC2
|
|
58249
58656
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-stop-protection.html
|
58250
58657
|
# @return [Boolean]
|
58251
58658
|
#
|
58659
|
+
# @!attribute [rw] operator
|
58660
|
+
# The entity that manages the launch template.
|
58661
|
+
# @return [Types::OperatorRequest]
|
58662
|
+
#
|
58252
58663
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/RequestLaunchTemplateData AWS API Documentation
|
58253
58664
|
#
|
58254
58665
|
class RequestLaunchTemplateData < Struct.new(
|
@@ -58282,7 +58693,8 @@ module Aws::EC2
|
|
58282
58693
|
:instance_requirements,
|
58283
58694
|
:private_dns_name_options,
|
58284
58695
|
:maintenance_options,
|
58285
|
-
:disable_api_stop
|
58696
|
+
:disable_api_stop,
|
58697
|
+
:operator)
|
58286
58698
|
SENSITIVE = [:user_data]
|
58287
58699
|
include Aws::Structure
|
58288
58700
|
end
|
@@ -59644,6 +60056,10 @@ module Aws::EC2
|
|
59644
60056
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-stop-protection.html
|
59645
60057
|
# @return [Boolean]
|
59646
60058
|
#
|
60059
|
+
# @!attribute [rw] operator
|
60060
|
+
# The entity that manages the launch template.
|
60061
|
+
# @return [Types::OperatorResponse]
|
60062
|
+
#
|
59647
60063
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ResponseLaunchTemplateData AWS API Documentation
|
59648
60064
|
#
|
59649
60065
|
class ResponseLaunchTemplateData < Struct.new(
|
@@ -59677,7 +60093,8 @@ module Aws::EC2
|
|
59677
60093
|
:instance_requirements,
|
59678
60094
|
:private_dns_name_options,
|
59679
60095
|
:maintenance_options,
|
59680
|
-
:disable_api_stop
|
60096
|
+
:disable_api_stop,
|
60097
|
+
:operator)
|
59681
60098
|
SENSITIVE = [:user_data]
|
59682
60099
|
include Aws::Structure
|
59683
60100
|
end
|
@@ -60881,6 +61298,10 @@ module Aws::EC2
|
|
60881
61298
|
# ENI becomes the primary IPv6 address.
|
60882
61299
|
# @return [Boolean]
|
60883
61300
|
#
|
61301
|
+
# @!attribute [rw] operator
|
61302
|
+
# Reserved for internal use.
|
61303
|
+
# @return [Types::OperatorRequest]
|
61304
|
+
#
|
60884
61305
|
# @!attribute [rw] dry_run
|
60885
61306
|
# Checks whether you have the required permissions for the operation,
|
60886
61307
|
# without actually making the request, and provides an error response.
|
@@ -61002,6 +61423,7 @@ module Aws::EC2
|
|
61002
61423
|
:maintenance_options,
|
61003
61424
|
:disable_api_stop,
|
61004
61425
|
:enable_primary_ipv_6,
|
61426
|
+
:operator,
|
61005
61427
|
:dry_run,
|
61006
61428
|
:disable_api_termination,
|
61007
61429
|
:instance_initiated_shutdown_behavior,
|
@@ -65048,6 +65470,10 @@ module Aws::EC2
|
|
65048
65470
|
# the instance.
|
65049
65471
|
# @return [Types::PrivateDnsNameOptionsOnLaunch]
|
65050
65472
|
#
|
65473
|
+
# @!attribute [rw] block_public_access_states
|
65474
|
+
# The state of VPC Block Public Access (BPA).
|
65475
|
+
# @return [Types::BlockPublicAccessStates]
|
65476
|
+
#
|
65051
65477
|
# @!attribute [rw] subnet_id
|
65052
65478
|
# The ID of the subnet.
|
65053
65479
|
# @return [String]
|
@@ -65108,6 +65534,7 @@ module Aws::EC2
|
|
65108
65534
|
:enable_dns_64,
|
65109
65535
|
:ipv_6_native,
|
65110
65536
|
:private_dns_name_options_on_launch,
|
65537
|
+
:block_public_access_states,
|
65111
65538
|
:subnet_id,
|
65112
65539
|
:state,
|
65113
65540
|
:vpc_id,
|
@@ -69252,6 +69679,10 @@ module Aws::EC2
|
|
69252
69679
|
# Reserved for future use.
|
69253
69680
|
# @return [String]
|
69254
69681
|
#
|
69682
|
+
# @!attribute [rw] operator
|
69683
|
+
# The entity that manages the volume.
|
69684
|
+
# @return [Types::OperatorResponse]
|
69685
|
+
#
|
69255
69686
|
# @!attribute [rw] volume_id
|
69256
69687
|
# The ID of the volume.
|
69257
69688
|
# @return [String]
|
@@ -69304,6 +69735,7 @@ module Aws::EC2
|
|
69304
69735
|
:multi_attach_enabled,
|
69305
69736
|
:throughput,
|
69306
69737
|
:sse_type,
|
69738
|
+
:operator,
|
69307
69739
|
:volume_id,
|
69308
69740
|
:size,
|
69309
69741
|
:snapshot_id,
|
@@ -69675,6 +70107,10 @@ module Aws::EC2
|
|
69675
70107
|
# Any tags assigned to the VPC.
|
69676
70108
|
# @return [Array<Types::Tag>]
|
69677
70109
|
#
|
70110
|
+
# @!attribute [rw] block_public_access_states
|
70111
|
+
# The state of VPC Block Public Access (BPA).
|
70112
|
+
# @return [Types::BlockPublicAccessStates]
|
70113
|
+
#
|
69678
70114
|
# @!attribute [rw] vpc_id
|
69679
70115
|
# The ID of the VPC.
|
69680
70116
|
# @return [String]
|
@@ -69700,6 +70136,7 @@ module Aws::EC2
|
|
69700
70136
|
:cidr_block_association_set,
|
69701
70137
|
:is_default,
|
69702
70138
|
:tags,
|
70139
|
+
:block_public_access_states,
|
69703
70140
|
:vpc_id,
|
69704
70141
|
:state,
|
69705
70142
|
:cidr_block,
|
@@ -69727,6 +70164,143 @@ module Aws::EC2
|
|
69727
70164
|
include Aws::Structure
|
69728
70165
|
end
|
69729
70166
|
|
70167
|
+
# A VPC BPA exclusion is a mode that can be applied to a single VPC or
|
70168
|
+
# subnet that exempts it from the account’s BPA mode and will allow
|
70169
|
+
# bidirectional or egress-only access. You can create BPA exclusions for
|
70170
|
+
# VPCs and subnets even when BPA is not enabled on the account to ensure
|
70171
|
+
# that there is no traffic disruption to the exclusions when VPC BPA is
|
70172
|
+
# turned on. To learn more about VPC BPA, see [Block public access to
|
70173
|
+
# VPCs and subnets][1] in the *Amazon VPC User Guide*.
|
70174
|
+
#
|
70175
|
+
#
|
70176
|
+
#
|
70177
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/security-vpc-bpa.html
|
70178
|
+
#
|
70179
|
+
# @!attribute [rw] exclusion_id
|
70180
|
+
# The ID of the exclusion.
|
70181
|
+
# @return [String]
|
70182
|
+
#
|
70183
|
+
# @!attribute [rw] internet_gateway_exclusion_mode
|
70184
|
+
# The exclusion mode for internet gateway traffic.
|
70185
|
+
#
|
70186
|
+
# * `bidirectional-access-allowed`: Allow all internet traffic to and
|
70187
|
+
# from the excluded VPCs and subnets.
|
70188
|
+
#
|
70189
|
+
# * `egress-access-allowed`: Allow outbound internet traffic from the
|
70190
|
+
# excluded VPCs and subnets. Block inbound internet traffic to the
|
70191
|
+
# excluded VPCs and subnets. Only applies when VPC Block Public
|
70192
|
+
# Access is set to Bidirectional.
|
70193
|
+
# @return [String]
|
70194
|
+
#
|
70195
|
+
# @!attribute [rw] resource_arn
|
70196
|
+
# The ARN of the exclusion.
|
70197
|
+
# @return [String]
|
70198
|
+
#
|
70199
|
+
# @!attribute [rw] state
|
70200
|
+
# The state of the exclusion.
|
70201
|
+
# @return [String]
|
70202
|
+
#
|
70203
|
+
# @!attribute [rw] reason
|
70204
|
+
# The reason for the current exclusion state.
|
70205
|
+
# @return [String]
|
70206
|
+
#
|
70207
|
+
# @!attribute [rw] creation_timestamp
|
70208
|
+
# When the exclusion was created.
|
70209
|
+
# @return [Time]
|
70210
|
+
#
|
70211
|
+
# @!attribute [rw] last_update_timestamp
|
70212
|
+
# When the exclusion was last updated.
|
70213
|
+
# @return [Time]
|
70214
|
+
#
|
70215
|
+
# @!attribute [rw] deletion_timestamp
|
70216
|
+
# When the exclusion was deleted.
|
70217
|
+
# @return [Time]
|
70218
|
+
#
|
70219
|
+
# @!attribute [rw] tags
|
70220
|
+
# `tag` - The key/value combination of a tag assigned to the resource.
|
70221
|
+
# Use the tag key in the filter name and the tag value as the filter
|
70222
|
+
# value. For example, to find all resources that have a tag with the
|
70223
|
+
# key `Owner` and the value `TeamA`, specify `tag:Owner` for the
|
70224
|
+
# filter name and `TeamA` for the filter value.
|
70225
|
+
# @return [Array<Types::Tag>]
|
70226
|
+
#
|
70227
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcBlockPublicAccessExclusion AWS API Documentation
|
70228
|
+
#
|
70229
|
+
class VpcBlockPublicAccessExclusion < Struct.new(
|
70230
|
+
:exclusion_id,
|
70231
|
+
:internet_gateway_exclusion_mode,
|
70232
|
+
:resource_arn,
|
70233
|
+
:state,
|
70234
|
+
:reason,
|
70235
|
+
:creation_timestamp,
|
70236
|
+
:last_update_timestamp,
|
70237
|
+
:deletion_timestamp,
|
70238
|
+
:tags)
|
70239
|
+
SENSITIVE = []
|
70240
|
+
include Aws::Structure
|
70241
|
+
end
|
70242
|
+
|
70243
|
+
# VPC Block public Access (BPA) enables you to block resources in VPCs
|
70244
|
+
# and subnets that you own in a Region from reaching or being reached
|
70245
|
+
# from the internet through internet gateways and egress-only internet
|
70246
|
+
# gateways. To learn more about VPC BPA, see [Block public access to
|
70247
|
+
# VPCs and subnets][1] in the *Amazon VPC User Guide*.
|
70248
|
+
#
|
70249
|
+
#
|
70250
|
+
#
|
70251
|
+
# [1]: https://docs.aws.amazon.com/vpc/latest/userguide/security-vpc-bpa.html
|
70252
|
+
#
|
70253
|
+
# @!attribute [rw] aws_account_id
|
70254
|
+
# An Amazon Web Services account ID.
|
70255
|
+
# @return [String]
|
70256
|
+
#
|
70257
|
+
# @!attribute [rw] aws_region
|
70258
|
+
# An Amazon Web Services Region.
|
70259
|
+
# @return [String]
|
70260
|
+
#
|
70261
|
+
# @!attribute [rw] state
|
70262
|
+
# The current state of VPC BPA.
|
70263
|
+
# @return [String]
|
70264
|
+
#
|
70265
|
+
# @!attribute [rw] internet_gateway_block_mode
|
70266
|
+
# The current mode of VPC BPA.
|
70267
|
+
#
|
70268
|
+
# * `bidirectional-access-allowed`: VPC BPA is not enabled and traffic
|
70269
|
+
# is allowed to and from internet gateways and egress-only internet
|
70270
|
+
# gateways in this Region.
|
70271
|
+
#
|
70272
|
+
# * `bidirectional-access-blocked`: Block all traffic to and from
|
70273
|
+
# internet gateways and egress-only internet gateways in this Region
|
70274
|
+
# (except for excluded VPCs and subnets).
|
70275
|
+
#
|
70276
|
+
# * `ingress-access-blocked`: Block all internet traffic to the VPCs
|
70277
|
+
# in this Region (except for VPCs or subnets which are excluded).
|
70278
|
+
# Only traffic to and from NAT gateways and egress-only internet
|
70279
|
+
# gateways is allowed because these gateways only allow outbound
|
70280
|
+
# connections to be established.
|
70281
|
+
# @return [String]
|
70282
|
+
#
|
70283
|
+
# @!attribute [rw] reason
|
70284
|
+
# The reason for the current state.
|
70285
|
+
# @return [String]
|
70286
|
+
#
|
70287
|
+
# @!attribute [rw] last_update_timestamp
|
70288
|
+
# The last time the VPC BPA mode was updated.
|
70289
|
+
# @return [Time]
|
70290
|
+
#
|
70291
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcBlockPublicAccessOptions AWS API Documentation
|
70292
|
+
#
|
70293
|
+
class VpcBlockPublicAccessOptions < Struct.new(
|
70294
|
+
:aws_account_id,
|
70295
|
+
:aws_region,
|
70296
|
+
:state,
|
70297
|
+
:internet_gateway_block_mode,
|
70298
|
+
:reason,
|
70299
|
+
:last_update_timestamp)
|
70300
|
+
SENSITIVE = []
|
70301
|
+
include Aws::Structure
|
70302
|
+
end
|
70303
|
+
|
69730
70304
|
# Describes an IPv4 CIDR block associated with a VPC.
|
69731
70305
|
#
|
69732
70306
|
# @!attribute [rw] association_id
|