aws-sdk-ec2 1.508.0 → 1.510.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: d0aee6ca86e5de2aeb4f0d10108b6bd2fc77039f781c833f13bbde42df9d584d
4
+ data.tar.gz: bef59a3237e8d6087fe8576df6479fe23cba495e931ab45ac6b9bdc1b53a327d
5
5
  SHA512:
6
- metadata.gz: 9e68abee19500d200f7c7b85b27af1006b41327a7bd5d9873fa4b705c090dccd40436d85bfbbbb25a50745dcfdcaa986bc3c849980ab13d236872ebeb9113317
7
- data.tar.gz: adc62a526b8fbd320a042898b8e41669c6a7bf14738d5b1a69613bb33d9cd1155c45f3cbbaccfc0ef8bdc743d99575d013111f954487b4080929e44e96b17267
6
+ metadata.gz: ac34931a7e0690cfacdc8c5372317bd0b76187d02934cd82b9eec9ade1173f98a20cba515fe9bdfddc6b17ffca6dcfe223fc328c6c0e8d3434b5aa61e53fe910
7
+ data.tar.gz: 7b1637993d4412b29168c1d0beb2e8a6e9d5747214d9b3700595f00ee7477dffcbfd0cce78913d267ce8a3451ee4916d98413f3cbf9c4d105f1e2e825f85d621
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.510.0 (2025-03-07)
5
+ ------------------
6
+
7
+ * Feature - Add serviceManaged field to DescribeAddresses API response.
8
+
9
+ 1.509.0 (2025-03-03)
10
+ ------------------
11
+
12
+ * Feature - Update the DescribeVpcs response
13
+
4
14
  1.508.0 (2025-02-26)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.508.0
1
+ 1.510.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
@@ -12205,9 +12223,10 @@ module Aws::EC2
12205
12223
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
12206
12224
  #
12207
12225
  # @option params [required, String] :group_name
12208
- # The name of the security group.
12226
+ # The name of the security group. Names are case-insensitive and must be
12227
+ # unique within the VPC.
12209
12228
  #
12210
- # Constraints: Up to 255 characters in length. Cannot start with `sg-`.
12229
+ # Constraints: Up to 255 characters in length. Can't start with `sg-`.
12211
12230
  #
12212
12231
  # Valid characters: a-z, A-Z, 0-9, spaces, and
12213
12232
  # .\_-:/()#,@\[\]+=&amp;;\{}!$*
@@ -15514,6 +15533,24 @@ module Aws::EC2
15514
15533
  # resp.vpc.cidr_block_association_set[0].cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
15515
15534
  # resp.vpc.cidr_block_association_set[0].cidr_block_state.status_message #=> String
15516
15535
  # resp.vpc.is_default #=> Boolean
15536
+ # resp.vpc.encryption_control.vpc_id #=> String
15537
+ # resp.vpc.encryption_control.vpc_encryption_control_id #=> String
15538
+ # resp.vpc.encryption_control.mode #=> String, one of "monitor", "enforce"
15539
+ # resp.vpc.encryption_control.state #=> String, one of "enforce-in-progress", "monitor-in-progress", "enforce-failed", "monitor-failed", "deleting", "deleted", "available"
15540
+ # resp.vpc.encryption_control.state_message #=> String
15541
+ # resp.vpc.encryption_control.resource_exclusions.internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15542
+ # resp.vpc.encryption_control.resource_exclusions.internet_gateway.state_message #=> String
15543
+ # resp.vpc.encryption_control.resource_exclusions.egress_only_internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15544
+ # resp.vpc.encryption_control.resource_exclusions.egress_only_internet_gateway.state_message #=> String
15545
+ # resp.vpc.encryption_control.resource_exclusions.nat_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15546
+ # resp.vpc.encryption_control.resource_exclusions.nat_gateway.state_message #=> String
15547
+ # resp.vpc.encryption_control.resource_exclusions.virtual_private_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15548
+ # resp.vpc.encryption_control.resource_exclusions.virtual_private_gateway.state_message #=> String
15549
+ # resp.vpc.encryption_control.resource_exclusions.vpc_peering.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
15550
+ # resp.vpc.encryption_control.resource_exclusions.vpc_peering.state_message #=> String
15551
+ # resp.vpc.encryption_control.tags #=> Array
15552
+ # resp.vpc.encryption_control.tags[0].key #=> String
15553
+ # resp.vpc.encryption_control.tags[0].value #=> String
15517
15554
  # resp.vpc.tags #=> Array
15518
15555
  # resp.vpc.tags[0].key #=> String
15519
15556
  # resp.vpc.tags[0].value #=> String
@@ -20980,6 +21017,7 @@ module Aws::EC2
20980
21017
  # resp.addresses[0].customer_owned_ip #=> String
20981
21018
  # resp.addresses[0].customer_owned_ipv_4_pool #=> String
20982
21019
  # resp.addresses[0].carrier_ip #=> String
21020
+ # resp.addresses[0].service_managed #=> String, one of "alb", "nlb"
20983
21021
  # resp.addresses[0].instance_id #=> String
20984
21022
  # resp.addresses[0].public_ip #=> String
20985
21023
  #
@@ -40045,6 +40083,24 @@ module Aws::EC2
40045
40083
  # resp.vpcs[0].cidr_block_association_set[0].cidr_block_state.state #=> String, one of "associating", "associated", "disassociating", "disassociated", "failing", "failed"
40046
40084
  # resp.vpcs[0].cidr_block_association_set[0].cidr_block_state.status_message #=> String
40047
40085
  # resp.vpcs[0].is_default #=> Boolean
40086
+ # resp.vpcs[0].encryption_control.vpc_id #=> String
40087
+ # resp.vpcs[0].encryption_control.vpc_encryption_control_id #=> String
40088
+ # resp.vpcs[0].encryption_control.mode #=> String, one of "monitor", "enforce"
40089
+ # resp.vpcs[0].encryption_control.state #=> String, one of "enforce-in-progress", "monitor-in-progress", "enforce-failed", "monitor-failed", "deleting", "deleted", "available"
40090
+ # resp.vpcs[0].encryption_control.state_message #=> String
40091
+ # resp.vpcs[0].encryption_control.resource_exclusions.internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40092
+ # resp.vpcs[0].encryption_control.resource_exclusions.internet_gateway.state_message #=> String
40093
+ # resp.vpcs[0].encryption_control.resource_exclusions.egress_only_internet_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40094
+ # resp.vpcs[0].encryption_control.resource_exclusions.egress_only_internet_gateway.state_message #=> String
40095
+ # resp.vpcs[0].encryption_control.resource_exclusions.nat_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40096
+ # resp.vpcs[0].encryption_control.resource_exclusions.nat_gateway.state_message #=> String
40097
+ # resp.vpcs[0].encryption_control.resource_exclusions.virtual_private_gateway.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40098
+ # resp.vpcs[0].encryption_control.resource_exclusions.virtual_private_gateway.state_message #=> String
40099
+ # resp.vpcs[0].encryption_control.resource_exclusions.vpc_peering.state #=> String, one of "enabling", "enabled", "disabling", "disabled"
40100
+ # resp.vpcs[0].encryption_control.resource_exclusions.vpc_peering.state_message #=> String
40101
+ # resp.vpcs[0].encryption_control.tags #=> Array
40102
+ # resp.vpcs[0].encryption_control.tags[0].key #=> String
40103
+ # resp.vpcs[0].encryption_control.tags[0].value #=> String
40048
40104
  # resp.vpcs[0].tags #=> Array
40049
40105
  # resp.vpcs[0].tags[0].key #=> String
40050
40106
  # resp.vpcs[0].tags[0].value #=> String
@@ -63326,7 +63382,7 @@ module Aws::EC2
63326
63382
  tracer: tracer
63327
63383
  )
63328
63384
  context[:gem_name] = 'aws-sdk-ec2'
63329
- context[:gem_version] = '1.508.0'
63385
+ context[:gem_version] = '1.510.0'
63330
63386
  Seahorse::Client::Request.new(handlers, context)
63331
63387
  end
63332
63388
 
@@ -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
@@ -16555,6 +16564,7 @@ module Aws::EC2
16555
16564
  Vpc.add_member(:ipv_6_cidr_block_association_set, Shapes::ShapeRef.new(shape: VpcIpv6CidrBlockAssociationSet, location_name: "ipv6CidrBlockAssociationSet"))
16556
16565
  Vpc.add_member(:cidr_block_association_set, Shapes::ShapeRef.new(shape: VpcCidrBlockAssociationSet, location_name: "cidrBlockAssociationSet"))
16557
16566
  Vpc.add_member(:is_default, Shapes::ShapeRef.new(shape: Boolean, location_name: "isDefault"))
16567
+ Vpc.add_member(:encryption_control, Shapes::ShapeRef.new(shape: VpcEncryptionControl, location_name: "encryptionControl"))
16558
16568
  Vpc.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
16559
16569
  Vpc.add_member(:block_public_access_states, Shapes::ShapeRef.new(shape: BlockPublicAccessStates, location_name: "blockPublicAccessStates"))
16560
16570
  Vpc.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcId"))
@@ -16614,6 +16624,26 @@ module Aws::EC2
16614
16624
 
16615
16625
  VpcClassicLinkList.member = Shapes::ShapeRef.new(shape: VpcClassicLink, location_name: "item")
16616
16626
 
16627
+ VpcEncryptionControl.add_member(:vpc_id, Shapes::ShapeRef.new(shape: VpcId, location_name: "vpcId"))
16628
+ VpcEncryptionControl.add_member(:vpc_encryption_control_id, Shapes::ShapeRef.new(shape: VpcEncryptionControlId, location_name: "vpcEncryptionControlId"))
16629
+ VpcEncryptionControl.add_member(:mode, Shapes::ShapeRef.new(shape: VpcEncryptionControlMode, location_name: "mode"))
16630
+ VpcEncryptionControl.add_member(:state, Shapes::ShapeRef.new(shape: VpcEncryptionControlState, location_name: "state"))
16631
+ VpcEncryptionControl.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
16632
+ VpcEncryptionControl.add_member(:resource_exclusions, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusions, location_name: "resourceExclusions"))
16633
+ VpcEncryptionControl.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
16634
+ VpcEncryptionControl.struct_class = Types::VpcEncryptionControl
16635
+
16636
+ VpcEncryptionControlExclusion.add_member(:state, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusionState, location_name: "state"))
16637
+ VpcEncryptionControlExclusion.add_member(:state_message, Shapes::ShapeRef.new(shape: String, location_name: "stateMessage"))
16638
+ VpcEncryptionControlExclusion.struct_class = Types::VpcEncryptionControlExclusion
16639
+
16640
+ VpcEncryptionControlExclusions.add_member(:internet_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "internetGateway"))
16641
+ VpcEncryptionControlExclusions.add_member(:egress_only_internet_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "egressOnlyInternetGateway"))
16642
+ VpcEncryptionControlExclusions.add_member(:nat_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "natGateway"))
16643
+ VpcEncryptionControlExclusions.add_member(:virtual_private_gateway, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "virtualPrivateGateway"))
16644
+ VpcEncryptionControlExclusions.add_member(:vpc_peering, Shapes::ShapeRef.new(shape: VpcEncryptionControlExclusion, location_name: "vpcPeering"))
16645
+ VpcEncryptionControlExclusions.struct_class = Types::VpcEncryptionControlExclusions
16646
+
16617
16647
  VpcEndpoint.add_member(:vpc_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "vpcEndpointId"))
16618
16648
  VpcEndpoint.add_member(:vpc_endpoint_type, Shapes::ShapeRef.new(shape: VpcEndpointType, location_name: "vpcEndpointType"))
16619
16649
  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 = []
@@ -11529,9 +11538,10 @@ module Aws::EC2
11529
11538
  # @return [String]
11530
11539
  #
11531
11540
  # @!attribute [rw] group_name
11532
- # The name of the security group.
11541
+ # The name of the security group. Names are case-insensitive and must
11542
+ # be unique within the VPC.
11533
11543
  #
11534
- # Constraints: Up to 255 characters in length. Cannot start with
11544
+ # Constraints: Up to 255 characters in length. Can't start with
11535
11545
  # `sg-`.
11536
11546
  #
11537
11547
  # Valid characters: a-z, A-Z, 0-9, spaces, and
@@ -73487,6 +73497,9 @@ module Aws::EC2
73487
73497
  # Indicates whether the VPC is the default VPC.
73488
73498
  # @return [Boolean]
73489
73499
  #
73500
+ # @!attribute [rw] encryption_control
73501
+ # @return [Types::VpcEncryptionControl]
73502
+ #
73490
73503
  # @!attribute [rw] tags
73491
73504
  # Any tags assigned to the VPC.
73492
73505
  # @return [Array<Types::Tag>]
@@ -73519,6 +73532,7 @@ module Aws::EC2
73519
73532
  :ipv_6_cidr_block_association_set,
73520
73533
  :cidr_block_association_set,
73521
73534
  :is_default,
73535
+ :encryption_control,
73522
73536
  :tags,
73523
73537
  :block_public_access_states,
73524
73538
  :vpc_id,
@@ -73778,6 +73792,83 @@ module Aws::EC2
73778
73792
  include Aws::Structure
73779
73793
  end
73780
73794
 
73795
+ # @!attribute [rw] vpc_id
73796
+ # @return [String]
73797
+ #
73798
+ # @!attribute [rw] vpc_encryption_control_id
73799
+ # @return [String]
73800
+ #
73801
+ # @!attribute [rw] mode
73802
+ # @return [String]
73803
+ #
73804
+ # @!attribute [rw] state
73805
+ # @return [String]
73806
+ #
73807
+ # @!attribute [rw] state_message
73808
+ # @return [String]
73809
+ #
73810
+ # @!attribute [rw] resource_exclusions
73811
+ # @return [Types::VpcEncryptionControlExclusions]
73812
+ #
73813
+ # @!attribute [rw] tags
73814
+ # @return [Array<Types::Tag>]
73815
+ #
73816
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControl AWS API Documentation
73817
+ #
73818
+ class VpcEncryptionControl < Struct.new(
73819
+ :vpc_id,
73820
+ :vpc_encryption_control_id,
73821
+ :mode,
73822
+ :state,
73823
+ :state_message,
73824
+ :resource_exclusions,
73825
+ :tags)
73826
+ SENSITIVE = []
73827
+ include Aws::Structure
73828
+ end
73829
+
73830
+ # @!attribute [rw] state
73831
+ # @return [String]
73832
+ #
73833
+ # @!attribute [rw] state_message
73834
+ # @return [String]
73835
+ #
73836
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControlExclusion AWS API Documentation
73837
+ #
73838
+ class VpcEncryptionControlExclusion < Struct.new(
73839
+ :state,
73840
+ :state_message)
73841
+ SENSITIVE = []
73842
+ include Aws::Structure
73843
+ end
73844
+
73845
+ # @!attribute [rw] internet_gateway
73846
+ # @return [Types::VpcEncryptionControlExclusion]
73847
+ #
73848
+ # @!attribute [rw] egress_only_internet_gateway
73849
+ # @return [Types::VpcEncryptionControlExclusion]
73850
+ #
73851
+ # @!attribute [rw] nat_gateway
73852
+ # @return [Types::VpcEncryptionControlExclusion]
73853
+ #
73854
+ # @!attribute [rw] virtual_private_gateway
73855
+ # @return [Types::VpcEncryptionControlExclusion]
73856
+ #
73857
+ # @!attribute [rw] vpc_peering
73858
+ # @return [Types::VpcEncryptionControlExclusion]
73859
+ #
73860
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEncryptionControlExclusions AWS API Documentation
73861
+ #
73862
+ class VpcEncryptionControlExclusions < Struct.new(
73863
+ :internet_gateway,
73864
+ :egress_only_internet_gateway,
73865
+ :nat_gateway,
73866
+ :virtual_private_gateway,
73867
+ :vpc_peering)
73868
+ SENSITIVE = []
73869
+ include Aws::Structure
73870
+ end
73871
+
73781
73872
  # Describes a VPC endpoint.
73782
73873
  #
73783
73874
  # @!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.510.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: []
@@ -16019,6 +16020,7 @@ module Aws::EC2
16019
16020
  attr_accessor ipv_6_cidr_block_association_set: ::Array[Types::VpcIpv6CidrBlockAssociation]
16020
16021
  attr_accessor cidr_block_association_set: ::Array[Types::VpcCidrBlockAssociation]
16021
16022
  attr_accessor is_default: bool
16023
+ attr_accessor encryption_control: Types::VpcEncryptionControl
16022
16024
  attr_accessor tags: ::Array[Types::Tag]
16023
16025
  attr_accessor block_public_access_states: Types::BlockPublicAccessStates
16024
16026
  attr_accessor vpc_id: ::String
@@ -16079,6 +16081,32 @@ module Aws::EC2
16079
16081
  SENSITIVE: []
16080
16082
  end
16081
16083
 
16084
+ class VpcEncryptionControl
16085
+ attr_accessor vpc_id: ::String
16086
+ attr_accessor vpc_encryption_control_id: ::String
16087
+ attr_accessor mode: ("monitor" | "enforce")
16088
+ attr_accessor state: ("enforce-in-progress" | "monitor-in-progress" | "enforce-failed" | "monitor-failed" | "deleting" | "deleted" | "available")
16089
+ attr_accessor state_message: ::String
16090
+ attr_accessor resource_exclusions: Types::VpcEncryptionControlExclusions
16091
+ attr_accessor tags: ::Array[Types::Tag]
16092
+ SENSITIVE: []
16093
+ end
16094
+
16095
+ class VpcEncryptionControlExclusion
16096
+ attr_accessor state: ("enabling" | "enabled" | "disabling" | "disabled")
16097
+ attr_accessor state_message: ::String
16098
+ SENSITIVE: []
16099
+ end
16100
+
16101
+ class VpcEncryptionControlExclusions
16102
+ attr_accessor internet_gateway: Types::VpcEncryptionControlExclusion
16103
+ attr_accessor egress_only_internet_gateway: Types::VpcEncryptionControlExclusion
16104
+ attr_accessor nat_gateway: Types::VpcEncryptionControlExclusion
16105
+ attr_accessor virtual_private_gateway: Types::VpcEncryptionControlExclusion
16106
+ attr_accessor vpc_peering: Types::VpcEncryptionControlExclusion
16107
+ SENSITIVE: []
16108
+ end
16109
+
16082
16110
  class VpcEndpoint
16083
16111
  attr_accessor vpc_endpoint_id: ::String
16084
16112
  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.510.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-07 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core