aws-sdk-ec2 1.508.0 → 1.512.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 678fcbcf29be678cf2869ea51625d3ffcb23c8e071a23811f4c205e8df05daa7
4
- data.tar.gz: 7f158ca4f18c8760026afc735a3d0641dd3e06d39f5e3cc43222d8d9ccbded6f
3
+ metadata.gz: f9eb91fe4c4a35590c578e78e5fa7144614ffba5cfe8cf5a747e00caca0acf1b
4
+ data.tar.gz: eafd684be608d8ace393b41d8845d3f9c9359ec3c0a5617d484eae893934db3a
5
5
  SHA512:
6
- metadata.gz: 9e68abee19500d200f7c7b85b27af1006b41327a7bd5d9873fa4b705c090dccd40436d85bfbbbb25a50745dcfdcaa986bc3c849980ab13d236872ebeb9113317
7
- data.tar.gz: adc62a526b8fbd320a042898b8e41669c6a7bf14738d5b1a69613bb33d9cd1155c45f3cbbaccfc0ef8bdc743d99575d013111f954487b4080929e44e96b17267
6
+ metadata.gz: 5757a3fbc1ba4862aad77c6e0073a0f9ad48d74f8767ee07b016b115621400f41b52562939ce27dc1a0758034ce5135b73097e2dd82985182ca5991b87b163d6
7
+ data.tar.gz: dd001501a14208ec77ae0a708c631feb5419c95677e2c838fbe431a040b48675a5124c7cdf98def58ab64ae6a6c42fdd094162b16acbeffd7f077540a9fe0df2
data/CHANGELOG.md CHANGED
@@ -1,6 +1,26 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.512.0 (2025-03-13)
5
+ ------------------
6
+
7
+ * Feature - This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
8
+
9
+ 1.511.0 (2025-03-11)
10
+ ------------------
11
+
12
+ * Feature - This release adds the GroupLongName field to the response of the DescribeAvailabilityZones API.
13
+
14
+ 1.510.0 (2025-03-07)
15
+ ------------------
16
+
17
+ * Feature - Add serviceManaged field to DescribeAddresses API response.
18
+
19
+ 1.509.0 (2025-03-03)
20
+ ------------------
21
+
22
+ * Feature - Update the DescribeVpcs response
23
+
4
24
  1.508.0 (2025-02-26)
5
25
  ------------------
6
26
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.508.0
1
+ 1.512.0
@@ -111,6 +111,16 @@ module Aws::EC2
111
111
  data[:carrier_ip]
112
112
  end
113
113
 
114
+ # The service that manages the elastic IP address.
115
+ #
116
+ # <note markdown="1"> The only option supported today is `alb`.
117
+ #
118
+ # </note>
119
+ # @return [String]
120
+ def service_managed
121
+ data[:service_managed]
122
+ end
123
+
114
124
  # The ID of the instance that the address is associated with (if any).
115
125
  # @return [String]
116
126
  def instance_id
@@ -6573,6 +6573,24 @@ module Aws::EC2
6573
6573
  # resp.vpc.cidr_block_association_set[0].cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
6574
6574
  # resp.vpc.cidr_block_association_set[0].cidr_block_state.status_message #=> String
6575
6575
  # resp.vpc.is_default #=> Boolean
6576
+ # resp.vpc.encryption_control.vpc_id #=> String
6577
+ # resp.vpc.encryption_control.vpc_encryption_control_id #=> String
6578
+ # resp.vpc.encryption_control.mode #=> String, one of "monitor", "enforce"
6579
+ # resp.vpc.encryption_control.state #=> String, one of "enforce-in-progress", "monitor-in-progress", "enforce-failed", "monitor-failed", "deleting", "deleted", "available"
6580
+ # resp.vpc.encryption_control.state_message #=> String
6581
+ # resp.vpc.encryption_control.resource_exclusions.internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
6582
+ # resp.vpc.encryption_control.resource_exclusions.internet_gateway.state_message #=> String
6583
+ # resp.vpc.encryption_control.resource_exclusions.egress_only_internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
6584
+ # resp.vpc.encryption_control.resource_exclusions.egress_only_internet_gateway.state_message #=> String
6585
+ # resp.vpc.encryption_control.resource_exclusions.nat_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
6586
+ # resp.vpc.encryption_control.resource_exclusions.nat_gateway.state_message #=> String
6587
+ # resp.vpc.encryption_control.resource_exclusions.virtual_private_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
6588
+ # resp.vpc.encryption_control.resource_exclusions.virtual_private_gateway.state_message #=> String
6589
+ # resp.vpc.encryption_control.resource_exclusions.vpc_peering.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
6590
+ # resp.vpc.encryption_control.resource_exclusions.vpc_peering.state_message #=> String
6591
+ # resp.vpc.encryption_control.tags #=> Array
6592
+ # resp.vpc.encryption_control.tags[0].key #=> String
6593
+ # resp.vpc.encryption_control.tags[0].value #=> String
6576
6594
  # resp.vpc.tags #=> Array
6577
6595
  # resp.vpc.tags[0].key #=> String
6578
6596
  # resp.vpc.tags[0].value #=> String
@@ -7077,7 +7095,7 @@ module Aws::EC2
7077
7095
  # },
7078
7096
  # },
7079
7097
  # },
7080
- # image_id: "ImageId",
7098
+ # image_id: "String",
7081
7099
  # },
7082
7100
  # ],
7083
7101
  # },
@@ -8876,11 +8894,16 @@ module Aws::EC2
8876
8894
  #
8877
8895
  # @option params [String] :client_token
8878
8896
  # Unique, case-sensitive identifier you provide to ensure the
8879
- # idempotency of the request. For more information, see [Ensuring
8880
- # idempotency][1].
8897
+ # idempotency of the request. If a client token isn't specified, a
8898
+ # randomly generated token is used in the request to ensure idempotency.
8899
+ #
8900
+ # For more information, see [Ensuring idempotency][1].
8881
8901
  #
8882
8902
  # Constraint: Maximum 128 ASCII characters.
8883
8903
  #
8904
+ # **A suitable default value is auto-generated.** You should normally
8905
+ # not need to pass this option.**
8906
+ #
8884
8907
  #
8885
8908
  #
8886
8909
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
@@ -9279,11 +9302,16 @@ module Aws::EC2
9279
9302
  #
9280
9303
  # @option params [String] :client_token
9281
9304
  # Unique, case-sensitive identifier you provide to ensure the
9282
- # idempotency of the request. For more information, see [Ensuring
9283
- # idempotency][1].
9305
+ # idempotency of the request. If a client token isn't specified, a
9306
+ # randomly generated token is used in the request to ensure idempotency.
9307
+ #
9308
+ # For more information, see [Ensuring idempotency][1].
9284
9309
  #
9285
9310
  # Constraint: Maximum 128 ASCII characters.
9286
9311
  #
9312
+ # **A suitable default value is auto-generated.** You should normally
9313
+ # not need to pass this option.**
9314
+ #
9287
9315
  #
9288
9316
  #
9289
9317
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
@@ -12205,9 +12233,10 @@ module Aws::EC2
12205
12233
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
12206
12234
  #
12207
12235
  # @option params [required, String] :group_name
12208
- # The name of the security group.
12236
+ # The name of the security group. Names are case-insensitive and must be
12237
+ # unique within the VPC.
12209
12238
  #
12210
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
12239
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
12211
12240
  #
12212
12241
  # Valid characters: a-z, A-Z, 0-9, spaces, and
12213
12242
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -15514,6 +15543,24 @@ module Aws::EC2
15514
15543
  # resp.vpc.cidr_block_association_set[0].cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
15515
15544
  # resp.vpc.cidr_block_association_set[0].cidr_block_state.status_message #=> String
15516
15545
  # resp.vpc.is_default #=> Boolean
15546
+ # resp.vpc.encryption_control.vpc_id #=> String
15547
+ # resp.vpc.encryption_control.vpc_encryption_control_id #=> String
15548
+ # resp.vpc.encryption_control.mode #=> String, one of "monitor", "enforce"
15549
+ # resp.vpc.encryption_control.state #=> String, one of "enforce-in-progress", "monitor-in-progress", "enforce-failed", "monitor-failed", "deleting", "deleted", "available"
15550
+ # resp.vpc.encryption_control.state_message #=> String
15551
+ # resp.vpc.encryption_control.resource_exclusions.internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15552
+ # resp.vpc.encryption_control.resource_exclusions.internet_gateway.state_message #=> String
15553
+ # resp.vpc.encryption_control.resource_exclusions.egress_only_internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15554
+ # resp.vpc.encryption_control.resource_exclusions.egress_only_internet_gateway.state_message #=> String
15555
+ # resp.vpc.encryption_control.resource_exclusions.nat_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15556
+ # resp.vpc.encryption_control.resource_exclusions.nat_gateway.state_message #=> String
15557
+ # resp.vpc.encryption_control.resource_exclusions.virtual_private_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15558
+ # resp.vpc.encryption_control.resource_exclusions.virtual_private_gateway.state_message #=> String
15559
+ # resp.vpc.encryption_control.resource_exclusions.vpc_peering.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15560
+ # resp.vpc.encryption_control.resource_exclusions.vpc_peering.state_message #=> String
15561
+ # resp.vpc.encryption_control.tags #=> Array
15562
+ # resp.vpc.encryption_control.tags[0].key #=> String
15563
+ # resp.vpc.encryption_control.tags[0].value #=> String
15517
15564
  # resp.vpc.tags #=> Array
15518
15565
  # resp.vpc.tags[0].key #=> String
15519
15566
  # resp.vpc.tags[0].value #=> String
@@ -20980,6 +21027,7 @@ module Aws::EC2
20980
21027
  # resp.addresses[0].customer_owned_ip #=> String
20981
21028
  # resp.addresses[0].customer_owned_ipv_4_pool #=> String
20982
21029
  # resp.addresses[0].carrier_ip #=> String
21030
+ # resp.addresses[0].service_managed #=> String, one of "alb", "nlb"
20983
21031
  # resp.addresses[0].instance_id #=> String
20984
21032
  # resp.addresses[0].public_ip #=> String
20985
21033
  #
@@ -21111,9 +21159,7 @@ module Aws::EC2
21111
21159
  end
21112
21160
 
21113
21161
  # Describes the Availability Zones, Local Zones, and Wavelength Zones
21114
- # that are available to you. If there is an event impacting a zone, you
21115
- # can use this request to view the state and any provided messages for
21116
- # that zone.
21162
+ # that are available to you.
21117
21163
  #
21118
21164
  # For more information about Availability Zones, Local Zones, and
21119
21165
  # Wavelength Zones, see [Regions and zones][1] in the *Amazon EC2 User
@@ -21152,6 +21198,12 @@ module Aws::EC2
21152
21198
  # @option params [Array<Types::Filter>] :filters
21153
21199
  # The filters.
21154
21200
  #
21201
+ # * `group-long-name` - The long name of the zone group for the
21202
+ # Availability Zone (for example, `US West (Oregon) 1`), the Local
21203
+ # Zone (for example, for Zone group `us-west-2-lax-1`, it is `US West
21204
+ # (Los Angeles)`, or the Wavelength Zone (for example, for Zone group
21205
+ # `us-east-1-wl1`, it is `US East (Verizon)`.
21206
+ #
21155
21207
  # * `group-name` - The name of the zone group for the Availability Zone
21156
21208
  # (for example, `us-east-1-zg-1`), the Local Zone (for example,
21157
21209
  # `us-west-2-lax-1`), or the Wavelength Zone (for example,
@@ -21263,6 +21315,7 @@ module Aws::EC2
21263
21315
  # resp.availability_zones[0].zone_type #=> String
21264
21316
  # resp.availability_zones[0].parent_zone_name #=> String
21265
21317
  # resp.availability_zones[0].parent_zone_id #=> String
21318
+ # resp.availability_zones[0].group_long_name #=> String
21266
21319
  # resp.availability_zones[0].state #=> String, one of "available", "information", "impaired", "unavailable", "constrained"
21267
21320
  #
21268
21321
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeAvailabilityZones AWS API Documentation
@@ -40045,6 +40098,24 @@ module Aws::EC2
40045
40098
  # resp.vpcs[0].cidr_block_association_set[0].cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
40046
40099
  # resp.vpcs[0].cidr_block_association_set[0].cidr_block_state.status_message #=> String
40047
40100
  # resp.vpcs[0].is_default #=> Boolean
40101
+ # resp.vpcs[0].encryption_control.vpc_id #=> String
40102
+ # resp.vpcs[0].encryption_control.vpc_encryption_control_id #=> String
40103
+ # resp.vpcs[0].encryption_control.mode #=> String, one of "monitor", "enforce"
40104
+ # resp.vpcs[0].encryption_control.state #=> String, one of "enforce-in-progress", "monitor-in-progress", "enforce-failed", "monitor-failed", "deleting", "deleted", "available"
40105
+ # resp.vpcs[0].encryption_control.state_message #=> String
40106
+ # resp.vpcs[0].encryption_control.resource_exclusions.internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40107
+ # resp.vpcs[0].encryption_control.resource_exclusions.internet_gateway.state_message #=> String
40108
+ # resp.vpcs[0].encryption_control.resource_exclusions.egress_only_internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40109
+ # resp.vpcs[0].encryption_control.resource_exclusions.egress_only_internet_gateway.state_message #=> String
40110
+ # resp.vpcs[0].encryption_control.resource_exclusions.nat_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40111
+ # resp.vpcs[0].encryption_control.resource_exclusions.nat_gateway.state_message #=> String
40112
+ # resp.vpcs[0].encryption_control.resource_exclusions.virtual_private_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40113
+ # resp.vpcs[0].encryption_control.resource_exclusions.virtual_private_gateway.state_message #=> String
40114
+ # resp.vpcs[0].encryption_control.resource_exclusions.vpc_peering.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40115
+ # resp.vpcs[0].encryption_control.resource_exclusions.vpc_peering.state_message #=> String
40116
+ # resp.vpcs[0].encryption_control.tags #=> Array
40117
+ # resp.vpcs[0].encryption_control.tags[0].key #=> String
40118
+ # resp.vpcs[0].encryption_control.tags[0].value #=> String
40048
40119
  # resp.vpcs[0].tags #=> Array
40049
40120
  # resp.vpcs[0].tags[0].key #=> String
40050
40121
  # resp.vpcs[0].tags[0].value #=> String
@@ -49556,7 +49627,7 @@ module Aws::EC2
49556
49627
  # },
49557
49628
  # },
49558
49629
  # },
49559
- # image_id: "ImageId",
49630
+ # image_id: "String",
49560
49631
  # },
49561
49632
  # ],
49562
49633
  # },
@@ -51583,11 +51654,16 @@ module Aws::EC2
51583
51654
  #
51584
51655
  # @option params [String] :client_token
51585
51656
  # Unique, case-sensitive identifier you provide to ensure the
51586
- # idempotency of the request. For more information, see [Ensuring
51587
- # idempotency in Amazon EC2 API requests][1].
51657
+ # idempotency of the request. If a client token isn't specified, a
51658
+ # randomly generated token is used in the request to ensure idempotency.
51659
+ #
51660
+ # For more information, see [Ensuring idempotency][1].
51588
51661
  #
51589
51662
  # Constraint: Maximum 128 ASCII characters.
51590
51663
  #
51664
+ # **A suitable default value is auto-generated.** You should normally
51665
+ # not need to pass this option.**
51666
+ #
51591
51667
  #
51592
51668
  #
51593
51669
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
@@ -63326,7 +63402,7 @@ module Aws::EC2
63326
63402
  tracer: tracer
63327
63403
  )
63328
63404
  context[:gem_name] = 'aws-sdk-ec2'
63329
- context[:gem_version] = '1.508.0'
63405
+ context[:gem_version] = '1.512.0'
63330
63406
  Seahorse::Client::Request.new(handlers, context)
63331
63407
  end
63332
63408
 
@@ -2901,6 +2901,7 @@ module Aws::EC2
2901
2901
  ServiceConnectivityType = Shapes::StringShape.new(name: 'ServiceConnectivityType')
2902
2902
  ServiceDetail = Shapes::StructureShape.new(name: 'ServiceDetail')
2903
2903
  ServiceDetailSet = Shapes::ListShape.new(name: 'ServiceDetailSet')
2904
+ ServiceManaged = Shapes::StringShape.new(name: 'ServiceManaged')
2904
2905
  ServiceNetworkArn = Shapes::StringShape.new(name: 'ServiceNetworkArn')
2905
2906
  ServiceState = Shapes::StringShape.new(name: 'ServiceState')
2906
2907
  ServiceType = Shapes::StringShape.new(name: 'ServiceType')
@@ -3351,6 +3352,13 @@ module Aws::EC2
3351
3352
  VpcClassicLink = Shapes::StructureShape.new(name: 'VpcClassicLink')
3352
3353
  VpcClassicLinkIdList = Shapes::ListShape.new(name: 'VpcClassicLinkIdList')
3353
3354
  VpcClassicLinkList = Shapes::ListShape.new(name: 'VpcClassicLinkList')
3355
+ VpcEncryptionControl = Shapes::StructureShape.new(name: 'VpcEncryptionControl')
3356
+ VpcEncryptionControlExclusion = Shapes::StructureShape.new(name: 'VpcEncryptionControlExclusion')
3357
+ VpcEncryptionControlExclusionState = Shapes::StringShape.new(name: 'VpcEncryptionControlExclusionState')
3358
+ VpcEncryptionControlExclusions = Shapes::StructureShape.new(name: 'VpcEncryptionControlExclusions')
3359
+ VpcEncryptionControlId = Shapes::StringShape.new(name: 'VpcEncryptionControlId')
3360
+ VpcEncryptionControlMode = Shapes::StringShape.new(name: 'VpcEncryptionControlMode')
3361
+ VpcEncryptionControlState = Shapes::StringShape.new(name: 'VpcEncryptionControlState')
3354
3362
  VpcEndpoint = Shapes::StructureShape.new(name: 'VpcEndpoint')
3355
3363
  VpcEndpointAssociation = Shapes::StructureShape.new(name: 'VpcEndpointAssociation')
3356
3364
  VpcEndpointAssociationSet = Shapes::ListShape.new(name: 'VpcEndpointAssociationSet')
@@ -3594,6 +3602,7 @@ module Aws::EC2
3594
3602
  Address.add_member(:customer_owned_ip, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIp"))
3595
3603
  Address.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIpv4Pool"))
3596
3604
  Address.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
3605
+ Address.add_member(:service_managed, Shapes::ShapeRef.new(shape: ServiceManaged, location_name: "serviceManaged"))
3597
3606
  Address.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
3598
3607
  Address.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
3599
3608
  Address.struct_class = Types::Address
@@ -4158,6 +4167,7 @@ module Aws::EC2
4158
4167
  AvailabilityZone.add_member(:zone_type, Shapes::ShapeRef.new(shape: String, location_name: "zoneType"))
4159
4168
  AvailabilityZone.add_member(:parent_zone_name, Shapes::ShapeRef.new(shape: String, location_name: "parentZoneName"))
4160
4169
  AvailabilityZone.add_member(:parent_zone_id, Shapes::ShapeRef.new(shape: String, location_name: "parentZoneId"))
4170
+ AvailabilityZone.add_member(:group_long_name, Shapes::ShapeRef.new(shape: String, location_name: "groupLongName"))
4161
4171
  AvailabilityZone.add_member(:state, Shapes::ShapeRef.new(shape: AvailabilityZoneState, location_name: "zoneState"))
4162
4172
  AvailabilityZone.struct_class = Types::AvailabilityZone
4163
4173
 
@@ -5222,7 +5232,7 @@ module Aws::EC2
5222
5232
  CreateKeyPairRequest.struct_class = Types::CreateKeyPairRequest
5223
5233
 
5224
5234
  CreateLaunchTemplateRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5225
- CreateLaunchTemplateRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
5235
+ CreateLaunchTemplateRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5226
5236
  CreateLaunchTemplateRequest.add_member(:launch_template_name, Shapes::ShapeRef.new(shape: LaunchTemplateName, required: true, location_name: "LaunchTemplateName"))
5227
5237
  CreateLaunchTemplateRequest.add_member(:version_description, Shapes::ShapeRef.new(shape: VersionDescription, location_name: "VersionDescription"))
5228
5238
  CreateLaunchTemplateRequest.add_member(:launch_template_data, Shapes::ShapeRef.new(shape: RequestLaunchTemplateData, required: true, location_name: "LaunchTemplateData"))
@@ -5235,7 +5245,7 @@ module Aws::EC2
5235
5245
  CreateLaunchTemplateResult.struct_class = Types::CreateLaunchTemplateResult
5236
5246
 
5237
5247
  CreateLaunchTemplateVersionRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5238
- CreateLaunchTemplateVersionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
5248
+ CreateLaunchTemplateVersionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5239
5249
  CreateLaunchTemplateVersionRequest.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: LaunchTemplateId, location_name: "LaunchTemplateId"))
5240
5250
  CreateLaunchTemplateVersionRequest.add_member(:launch_template_name, Shapes::ShapeRef.new(shape: LaunchTemplateName, location_name: "LaunchTemplateName"))
5241
5251
  CreateLaunchTemplateVersionRequest.add_member(:source_version, Shapes::ShapeRef.new(shape: String, location_name: "SourceVersion"))
@@ -9541,7 +9551,7 @@ module Aws::EC2
9541
9551
  FleetLaunchTemplateOverridesRequest.add_member(:placement, Shapes::ShapeRef.new(shape: Placement, location_name: "Placement"))
9542
9552
  FleetLaunchTemplateOverridesRequest.add_member(:block_device_mappings, Shapes::ShapeRef.new(shape: FleetBlockDeviceMappingRequestList, location_name: "BlockDeviceMapping"))
9543
9553
  FleetLaunchTemplateOverridesRequest.add_member(:instance_requirements, Shapes::ShapeRef.new(shape: InstanceRequirementsRequest, location_name: "InstanceRequirements"))
9544
- FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: ImageId, location_name: "ImageId"))
9554
+ FleetLaunchTemplateOverridesRequest.add_member(:image_id, Shapes::ShapeRef.new(shape: String, location_name: "ImageId"))
9545
9555
  FleetLaunchTemplateOverridesRequest.struct_class = Types::FleetLaunchTemplateOverridesRequest
9546
9556
 
9547
9557
  FleetLaunchTemplateSpecification.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: String, location_name: "launchTemplateId"))
@@ -12474,7 +12484,7 @@ module Aws::EC2
12474
12484
  ModifyIpamScopeResult.struct_class = Types::ModifyIpamScopeResult
12475
12485
 
12476
12486
  ModifyLaunchTemplateRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
12477
- ModifyLaunchTemplateRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken"))
12487
+ ModifyLaunchTemplateRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
12478
12488
  ModifyLaunchTemplateRequest.add_member(:launch_template_id, Shapes::ShapeRef.new(shape: LaunchTemplateId, location_name: "LaunchTemplateId"))
12479
12489
  ModifyLaunchTemplateRequest.add_member(:launch_template_name, Shapes::ShapeRef.new(shape: LaunchTemplateName, location_name: "LaunchTemplateName"))
12480
12490
  ModifyLaunchTemplateRequest.add_member(:default_version, Shapes::ShapeRef.new(shape: String, location_name: "SetDefaultVersion"))
@@ -16555,6 +16565,7 @@ module Aws::EC2
16555
16565
  Vpc.add_member(:ipv_6_cidr_block_association_set, Shapes::ShapeRef.new(shape: VpcIpv6CidrBlockAssociationSet, location_name: "ipv6CidrBlockAssociationSet"))
16556
16566
  Vpc.add_member(:cidr_block_association_set, Shapes::ShapeRef.new(shape: VpcCidrBlockAssociationSet, location_name: "cidrBlockAssociationSet"))
16557
16567
  Vpc.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "isDefault"))
16568
+ Vpc.add_member(:encryption_control, Shapes::ShapeRef.new(shape: VpcEncryptionControl, location_name: "encryptionControl"))
16558
16569
  Vpc.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
16559
16570
  Vpc.add_member(:block_public_access_states, Shapes::ShapeRef.new(shape: BlockPublicAccessStates, location_name: "blockPublicAccessStates"))
16560
16571
  Vpc.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
@@ -16614,6 +16625,26 @@ module Aws::EC2
16614
16625
 
16615
16626
  VpcClassicLinkList.member = Shapes::ShapeRef.new(shape: VpcClassicLink, location_name: "item")
16616
16627
 
16628
+ VpcEncryptionControl.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
16629
+ VpcEncryptionControl.add_member(:vpc_encryption_control_id, Shapes::ShapeRef.new(shape: VpcEncryptionControlId, location_name: "vpcEncryptionControlId"))
16630
+ VpcEncryptionControl.add_member(:mode, Shapes::ShapeRef.new(shape: VpcEncryptionControlMode, location_name: "mode"))
16631
+ VpcEncryptionControl.add_member(:state, Shapes::ShapeRef.new(shape: VpcEncryptionControlState, location_name: "state"))
16632
+ VpcEncryptionControl.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
16633
+ VpcEncryptionControl.add_member(:resource_exclusions, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusions, location_name: "resourceExclusions"))
16634
+ VpcEncryptionControl.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
16635
+ VpcEncryptionControl.struct_class = Types::VpcEncryptionControl
16636
+
16637
+ VpcEncryptionControlExclusion.add_member(:state, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusionState, location_name: "state"))
16638
+ VpcEncryptionControlExclusion.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
16639
+ VpcEncryptionControlExclusion.struct_class = Types::VpcEncryptionControlExclusion
16640
+
16641
+ VpcEncryptionControlExclusions.add_member(:internet_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "internetGateway"))
16642
+ VpcEncryptionControlExclusions.add_member(:egress_only_internet_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "egressOnlyInternetGateway"))
16643
+ VpcEncryptionControlExclusions.add_member(:nat_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "natGateway"))
16644
+ VpcEncryptionControlExclusions.add_member(:virtual_private_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "virtualPrivateGateway"))
16645
+ VpcEncryptionControlExclusions.add_member(:vpc_peering, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "vpcPeering"))
16646
+ VpcEncryptionControlExclusions.struct_class = Types::VpcEncryptionControlExclusions
16647
+
16617
16648
  VpcEndpoint.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointId"))
16618
16649
  VpcEndpoint.add_member(:vpc_endpoint_type, Shapes::ShapeRef.new(shape: VpcEndpointType, location_name: "vpcEndpointType"))
16619
16650
  VpcEndpoint.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
@@ -1173,9 +1173,10 @@ module Aws::EC2
1173
1173
  # Valid characters: a-z, A-Z, 0-9, spaces, and
1174
1174
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
1175
1175
  # @option options [required, String] :group_name
1176
- # The name of the security group.
1176
+ # The name of the security group. Names are case-insensitive and must be
1177
+ # unique within the VPC.
1177
1178
  #
1178
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
1179
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
1179
1180
  #
1180
1181
  # Valid characters: a-z, A-Z, 0-9, spaces, and
1181
1182
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -771,6 +771,14 @@ module Aws::EC2
771
771
  # (for example an EC2 instance).
772
772
  # @return [String]
773
773
  #
774
+ # @!attribute [rw] service_managed
775
+ # The service that manages the elastic IP address.
776
+ #
777
+ # <note markdown="1"> The only option supported today is `alb`.
778
+ #
779
+ # </note>
780
+ # @return [String]
781
+ #
774
782
  # @!attribute [rw] instance_id
775
783
  # The ID of the instance that the address is associated with (if any).
776
784
  # @return [String]
@@ -794,6 +802,7 @@ module Aws::EC2
794
802
  :customer_owned_ip,
795
803
  :customer_owned_ipv_4_pool,
796
804
  :carrier_ip,
805
+ :service_managed,
797
806
  :instance_id,
798
807
  :public_ip)
799
808
  SENSITIVE = []
@@ -3649,7 +3658,7 @@ module Aws::EC2
3649
3658
  # `opt-in-not-required`.
3650
3659
  #
3651
3660
  # For Local Zones and Wavelength Zones, this parameter is the opt-in
3652
- # status. The possible values are `opted-in`, and `not-opted-in`.
3661
+ # status. The possible values are `opted-in` and `not-opted-in`.
3653
3662
  # @return [String]
3654
3663
  #
3655
3664
  # @!attribute [rw] messages
@@ -3684,8 +3693,10 @@ module Aws::EC2
3684
3693
  # @return [String]
3685
3694
  #
3686
3695
  # @!attribute [rw] zone_type
3687
- # The type of zone. The valid values are `availability-zone`,
3688
- # `local-zone`, and `wavelength-zone`.
3696
+ # The type of zone.
3697
+ #
3698
+ # Valid values: `availability-zone` \| `local-zone` \|
3699
+ # `wavelength-zone`
3689
3700
  # @return [String]
3690
3701
  #
3691
3702
  # @!attribute [rw] parent_zone_name
@@ -3698,9 +3709,15 @@ module Aws::EC2
3698
3709
  # Zone control plane operations, such as API calls.
3699
3710
  # @return [String]
3700
3711
  #
3712
+ # @!attribute [rw] group_long_name
3713
+ # The long name of the Availability Zone group, Local Zone group, or
3714
+ # Wavelength Zone group.
3715
+ # @return [String]
3716
+ #
3701
3717
  # @!attribute [rw] state
3702
3718
  # The state of the Availability Zone, Local Zone, or Wavelength Zone.
3703
- # This value is always `available`.
3719
+ # The possible values are `available`, `unavailable`, and
3720
+ # `constrained`.
3704
3721
  # @return [String]
3705
3722
  #
3706
3723
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AvailabilityZone AWS API Documentation
@@ -3716,6 +3733,7 @@ module Aws::EC2
3716
3733
  :zone_type,
3717
3734
  :parent_zone_name,
3718
3735
  :parent_zone_id,
3736
+ :group_long_name,
3719
3737
  :state)
3720
3738
  SENSITIVE = []
3721
3739
  include Aws::Structure
@@ -9956,11 +9974,17 @@ module Aws::EC2
9956
9974
  #
9957
9975
  # @!attribute [rw] client_token
9958
9976
  # Unique, case-sensitive identifier you provide to ensure the
9959
- # idempotency of the request. For more information, see [Ensuring
9960
- # idempotency][1].
9977
+ # idempotency of the request. If a client token isn't specified, a
9978
+ # randomly generated token is used in the request to ensure
9979
+ # idempotency.
9980
+ #
9981
+ # For more information, see [Ensuring idempotency][1].
9961
9982
  #
9962
9983
  # Constraint: Maximum 128 ASCII characters.
9963
9984
  #
9985
+ # **A suitable default value is auto-generated.** You should normally
9986
+ # not need to pass this option.
9987
+ #
9964
9988
  #
9965
9989
  #
9966
9990
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
@@ -10037,11 +10061,17 @@ module Aws::EC2
10037
10061
  #
10038
10062
  # @!attribute [rw] client_token
10039
10063
  # Unique, case-sensitive identifier you provide to ensure the
10040
- # idempotency of the request. For more information, see [Ensuring
10041
- # idempotency][1].
10064
+ # idempotency of the request. If a client token isn't specified, a
10065
+ # randomly generated token is used in the request to ensure
10066
+ # idempotency.
10067
+ #
10068
+ # For more information, see [Ensuring idempotency][1].
10042
10069
  #
10043
10070
  # Constraint: Maximum 128 ASCII characters.
10044
10071
  #
10072
+ # **A suitable default value is auto-generated.** You should normally
10073
+ # not need to pass this option.
10074
+ #
10045
10075
  #
10046
10076
  #
10047
10077
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
@@ -11529,9 +11559,10 @@ module Aws::EC2
11529
11559
  # @return [String]
11530
11560
  #
11531
11561
  # @!attribute [rw] group_name
11532
- # The name of the security group.
11562
+ # The name of the security group. Names are case-insensitive and must
11563
+ # be unique within the VPC.
11533
11564
  #
11534
- # Constraints: Up to 255 characters in length. Cannot start with
11565
+ # Constraints: Up to 255 characters in length. Can't start with
11535
11566
  # `sg-`.
11536
11567
  #
11537
11568
  # Valid characters: a-z, A-Z, 0-9, spaces, and
@@ -18083,6 +18114,12 @@ module Aws::EC2
18083
18114
  # @!attribute [rw] filters
18084
18115
  # The filters.
18085
18116
  #
18117
+ # * `group-long-name` - The long name of the zone group for the
18118
+ # Availability Zone (for example, `US West (Oregon) 1`), the Local
18119
+ # Zone (for example, for Zone group `us-west-2-lax-1`, it is `US
18120
+ # West (Los Angeles)`, or the Wavelength Zone (for example, for Zone
18121
+ # group `us-east-1-wl1`, it is `US East (Verizon)`.
18122
+ #
18086
18123
  # * `group-name` - The name of the zone group for the Availability
18087
18124
  # Zone (for example, `us-east-1-zg-1`), the Local Zone (for example,
18088
18125
  # `us-west-2-lax-1`), or the Wavelength Zone (for example,
@@ -52820,11 +52857,17 @@ module Aws::EC2
52820
52857
  #
52821
52858
  # @!attribute [rw] client_token
52822
52859
  # Unique, case-sensitive identifier you provide to ensure the
52823
- # idempotency of the request. For more information, see [Ensuring
52824
- # idempotency in Amazon EC2 API requests][1].
52860
+ # idempotency of the request. If a client token isn't specified, a
52861
+ # randomly generated token is used in the request to ensure
52862
+ # idempotency.
52863
+ #
52864
+ # For more information, see [Ensuring idempotency][1].
52825
52865
  #
52826
52866
  # Constraint: Maximum 128 ASCII characters.
52827
52867
  #
52868
+ # **A suitable default value is auto-generated.** You should normally
52869
+ # not need to pass this option.
52870
+ #
52828
52871
  #
52829
52872
  #
52830
52873
  # [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
@@ -73487,6 +73530,9 @@ module Aws::EC2
73487
73530
  # Indicates whether the VPC is the default VPC.
73488
73531
  # @return [Boolean]
73489
73532
  #
73533
+ # @!attribute [rw] encryption_control
73534
+ # @return [Types::VpcEncryptionControl]
73535
+ #
73490
73536
  # @!attribute [rw] tags
73491
73537
  # Any tags assigned to the VPC.
73492
73538
  # @return [Array<Types::Tag>]
@@ -73519,6 +73565,7 @@ module Aws::EC2
73519
73565
  :ipv_6_cidr_block_association_set,
73520
73566
  :cidr_block_association_set,
73521
73567
  :is_default,
73568
+ :encryption_control,
73522
73569
  :tags,
73523
73570
  :block_public_access_states,
73524
73571
  :vpc_id,
@@ -73778,6 +73825,83 @@ module Aws::EC2
73778
73825
  include Aws::Structure
73779
73826
  end
73780
73827
 
73828
+ # @!attribute [rw] vpc_id
73829
+ # @return [String]
73830
+ #
73831
+ # @!attribute [rw] vpc_encryption_control_id
73832
+ # @return [String]
73833
+ #
73834
+ # @!attribute [rw] mode
73835
+ # @return [String]
73836
+ #
73837
+ # @!attribute [rw] state
73838
+ # @return [String]
73839
+ #
73840
+ # @!attribute [rw] state_message
73841
+ # @return [String]
73842
+ #
73843
+ # @!attribute [rw] resource_exclusions
73844
+ # @return [Types::VpcEncryptionControlExclusions]
73845
+ #
73846
+ # @!attribute [rw] tags
73847
+ # @return [Array<Types::Tag>]
73848
+ #
73849
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControl AWS API Documentation
73850
+ #
73851
+ class VpcEncryptionControl < Struct.new(
73852
+ :vpc_id,
73853
+ :vpc_encryption_control_id,
73854
+ :mode,
73855
+ :state,
73856
+ :state_message,
73857
+ :resource_exclusions,
73858
+ :tags)
73859
+ SENSITIVE = []
73860
+ include Aws::Structure
73861
+ end
73862
+
73863
+ # @!attribute [rw] state
73864
+ # @return [String]
73865
+ #
73866
+ # @!attribute [rw] state_message
73867
+ # @return [String]
73868
+ #
73869
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControlExclusion AWS API Documentation
73870
+ #
73871
+ class VpcEncryptionControlExclusion < Struct.new(
73872
+ :state,
73873
+ :state_message)
73874
+ SENSITIVE = []
73875
+ include Aws::Structure
73876
+ end
73877
+
73878
+ # @!attribute [rw] internet_gateway
73879
+ # @return [Types::VpcEncryptionControlExclusion]
73880
+ #
73881
+ # @!attribute [rw] egress_only_internet_gateway
73882
+ # @return [Types::VpcEncryptionControlExclusion]
73883
+ #
73884
+ # @!attribute [rw] nat_gateway
73885
+ # @return [Types::VpcEncryptionControlExclusion]
73886
+ #
73887
+ # @!attribute [rw] virtual_private_gateway
73888
+ # @return [Types::VpcEncryptionControlExclusion]
73889
+ #
73890
+ # @!attribute [rw] vpc_peering
73891
+ # @return [Types::VpcEncryptionControlExclusion]
73892
+ #
73893
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControlExclusions AWS API Documentation
73894
+ #
73895
+ class VpcEncryptionControlExclusions < Struct.new(
73896
+ :internet_gateway,
73897
+ :egress_only_internet_gateway,
73898
+ :nat_gateway,
73899
+ :virtual_private_gateway,
73900
+ :vpc_peering)
73901
+ SENSITIVE = []
73902
+ include Aws::Structure
73903
+ end
73904
+
73781
73905
  # Describes a VPC endpoint.
73782
73906
  #
73783
73907
  # @!attribute [rw] vpc_endpoint_id
@@ -65,6 +65,11 @@ module Aws::EC2
65
65
  data[:is_default]
66
66
  end
67
67
 
68
+ # @return [Types::VpcEncryptionControl]
69
+ def encryption_control
70
+ data[:encryption_control]
71
+ end
72
+
68
73
  # Any tags assigned to the VPC.
69
74
  # @return [Array<Types::Tag>]
70
75
  def tags
@@ -478,9 +483,10 @@ module Aws::EC2
478
483
  # Valid characters: a-z, A-Z, 0-9, spaces, and
479
484
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
480
485
  # @option options [required, String] :group_name
481
- # The name of the security group.
486
+ # The name of the security group. Names are case-insensitive and must be
487
+ # unique within the VPC.
482
488
  #
483
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
489
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
484
490
  #
485
491
  # Valid characters: a-z, A-Z, 0-9, spaces, and
486
492
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -105,6 +105,16 @@ module Aws::EC2
105
105
  data[:carrier_ip]
106
106
  end
107
107
 
108
+ # The service that manages the elastic IP address.
109
+ #
110
+ # <note markdown="1"> The only option supported today is `alb`.
111
+ #
112
+ # </note>
113
+ # @return [String]
114
+ def service_managed
115
+ data[:service_managed]
116
+ end
117
+
108
118
  # The ID of the instance that the address is associated with (if any).
109
119
  # @return [String]
110
120
  def instance_id
data/lib/aws-sdk-ec2.rb CHANGED
@@ -78,7 +78,7 @@ module Aws::EC2
78
78
  autoload :VpcPeeringConnection, 'aws-sdk-ec2/vpc_peering_connection'
79
79
  autoload :VpcAddress, 'aws-sdk-ec2/vpc_address'
80
80
 
81
- GEM_VERSION = '1.508.0'
81
+ GEM_VERSION = '1.512.0'
82
82
 
83
83
  end
84
84
 
@@ -53,6 +53,9 @@ module Aws
53
53
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#carrier_ip-instance_method
54
54
  def carrier_ip: () -> ::String
55
55
 
56
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#service_managed-instance_method
57
+ def service_managed: () -> ("alb" | "nlb")
58
+
56
59
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#instance_id-instance_method
57
60
  def instance_id: () -> ::String
58
61
 
data/sig/types.rbs CHANGED
@@ -215,6 +215,7 @@ module Aws::EC2
215
215
  attr_accessor customer_owned_ip: ::String
216
216
  attr_accessor customer_owned_ipv_4_pool: ::String
217
217
  attr_accessor carrier_ip: ::String
218
+ attr_accessor service_managed: ("alb" | "nlb")
218
219
  attr_accessor instance_id: ::String
219
220
  attr_accessor public_ip: ::String
220
221
  SENSITIVE: []
@@ -921,6 +922,7 @@ module Aws::EC2
921
922
  attr_accessor zone_type: ::String
922
923
  attr_accessor parent_zone_name: ::String
923
924
  attr_accessor parent_zone_id: ::String
925
+ attr_accessor group_long_name: ::String
924
926
  attr_accessor state: ("available" | "information" | "impaired" | "unavailable" | "constrained")
925
927
  SENSITIVE: []
926
928
  end
@@ -16019,6 +16021,7 @@ module Aws::EC2
16019
16021
  attr_accessor ipv_6_cidr_block_association_set: ::Array[Types::VpcIpv6CidrBlockAssociation]
16020
16022
  attr_accessor cidr_block_association_set: ::Array[Types::VpcCidrBlockAssociation]
16021
16023
  attr_accessor is_default: bool
16024
+ attr_accessor encryption_control: Types::VpcEncryptionControl
16022
16025
  attr_accessor tags: ::Array[Types::Tag]
16023
16026
  attr_accessor block_public_access_states: Types::BlockPublicAccessStates
16024
16027
  attr_accessor vpc_id: ::String
@@ -16079,6 +16082,32 @@ module Aws::EC2
16079
16082
  SENSITIVE: []
16080
16083
  end
16081
16084
 
16085
+ class VpcEncryptionControl
16086
+ attr_accessor vpc_id: ::String
16087
+ attr_accessor vpc_encryption_control_id: ::String
16088
+ attr_accessor mode: ("monitor" | "enforce")
16089
+ attr_accessor state: ("enforce-in-progress" | "monitor-in-progress" | "enforce-failed" | "monitor-failed" | "deleting" | "deleted" | "available")
16090
+ attr_accessor state_message: ::String
16091
+ attr_accessor resource_exclusions: Types::VpcEncryptionControlExclusions
16092
+ attr_accessor tags: ::Array[Types::Tag]
16093
+ SENSITIVE: []
16094
+ end
16095
+
16096
+ class VpcEncryptionControlExclusion
16097
+ attr_accessor state: ("enabling" | "enabled" | "disabling" | "disabled")
16098
+ attr_accessor state_message: ::String
16099
+ SENSITIVE: []
16100
+ end
16101
+
16102
+ class VpcEncryptionControlExclusions
16103
+ attr_accessor internet_gateway: Types::VpcEncryptionControlExclusion
16104
+ attr_accessor egress_only_internet_gateway: Types::VpcEncryptionControlExclusion
16105
+ attr_accessor nat_gateway: Types::VpcEncryptionControlExclusion
16106
+ attr_accessor virtual_private_gateway: Types::VpcEncryptionControlExclusion
16107
+ attr_accessor vpc_peering: Types::VpcEncryptionControlExclusion
16108
+ SENSITIVE: []
16109
+ end
16110
+
16082
16111
  class VpcEndpoint
16083
16112
  attr_accessor vpc_endpoint_id: ::String
16084
16113
  attr_accessor vpc_endpoint_type: ("Interface" | "Gateway" | "GatewayLoadBalancer" | "Resource" | "ServiceNetwork")
data/sig/vpc.rbs CHANGED
@@ -33,6 +33,9 @@ module Aws
33
33
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#is_default-instance_method
34
34
  def is_default: () -> bool
35
35
 
36
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#encryption_control-instance_method
37
+ def encryption_control: () -> Types::VpcEncryptionControl
38
+
36
39
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/Vpc.html#tags-instance_method
37
40
  def tags: () -> ::Array[Types::Tag]
38
41
 
data/sig/vpc_address.rbs CHANGED
@@ -50,6 +50,9 @@ module Aws
50
50
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#carrier_ip-instance_method
51
51
  def carrier_ip: () -> ::String
52
52
 
53
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#service_managed-instance_method
54
+ def service_managed: () -> ("alb" | "nlb")
55
+
53
56
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#instance_id-instance_method
54
57
  def instance_id: () -> ::String
55
58
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.508.0
4
+ version: 1.512.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-02-26 00:00:00.000000000 Z
11
+ date: 2025-03-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core