aws-sdk 2.1438.0 → 2.1439.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.
package/clients/ec2.d.ts CHANGED
@@ -11245,11 +11245,11 @@ declare namespace EC2 {
11245
11245
  */
11246
11246
  RouteTableIds?: VpcEndpointRouteTableIdList;
11247
11247
  /**
11248
- * (Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to create an endpoint network interface. For a Gateway Load Balancer endpoint, you can specify only one subnet.
11248
+ * (Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to create endpoint network interfaces. For a Gateway Load Balancer endpoint, you can specify only one subnet.
11249
11249
  */
11250
11250
  SubnetIds?: VpcEndpointSubnetIdList;
11251
11251
  /**
11252
- * (Interface endpoint) The IDs of the security groups to associate with the endpoint network interface. If this parameter is not specified, we use the default security group for the VPC.
11252
+ * (Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces. If this parameter is not specified, we use the default security group for the VPC.
11253
11253
  */
11254
11254
  SecurityGroupIds?: VpcEndpointSecurityGroupIdList;
11255
11255
  /**
@@ -11272,6 +11272,10 @@ declare namespace EC2 {
11272
11272
  * The tags to associate with the endpoint.
11273
11273
  */
11274
11274
  TagSpecifications?: TagSpecificationList;
11275
+ /**
11276
+ * The subnet configurations for the endpoint.
11277
+ */
11278
+ SubnetConfigurations?: SubnetConfigurationsList;
11275
11279
  }
11276
11280
  export interface CreateVpcEndpointResult {
11277
11281
  /**
@@ -28414,11 +28418,11 @@ declare namespace EC2 {
28414
28418
  */
28415
28419
  RemoveSubnetIds?: VpcEndpointSubnetIdList;
28416
28420
  /**
28417
- * (Interface endpoint) The IDs of the security groups to associate with the network interface.
28421
+ * (Interface endpoint) The IDs of the security groups to associate with the endpoint network interfaces.
28418
28422
  */
28419
28423
  AddSecurityGroupIds?: VpcEndpointSecurityGroupIdList;
28420
28424
  /**
28421
- * (Interface endpoint) The IDs of the security groups to disassociate from the network interface.
28425
+ * (Interface endpoint) The IDs of the security groups to disassociate from the endpoint network interfaces.
28422
28426
  */
28423
28427
  RemoveSecurityGroupIds?: VpcEndpointSecurityGroupIdList;
28424
28428
  /**
@@ -28433,6 +28437,10 @@ declare namespace EC2 {
28433
28437
  * (Interface endpoint) Indicates whether a private hosted zone is associated with the VPC.
28434
28438
  */
28435
28439
  PrivateDnsEnabled?: Boolean;
28440
+ /**
28441
+ * The subnet configurations for the endpoint.
28442
+ */
28443
+ SubnetConfigurations?: SubnetConfigurationsList;
28436
28444
  }
28437
28445
  export interface ModifyVpcEndpointResult {
28438
28446
  /**
@@ -35106,6 +35114,21 @@ declare namespace EC2 {
35106
35114
  export type SubnetCidrReservationId = string;
35107
35115
  export type SubnetCidrReservationList = SubnetCidrReservation[];
35108
35116
  export type SubnetCidrReservationType = "prefix"|"explicit"|string;
35117
+ export interface SubnetConfiguration {
35118
+ /**
35119
+ * The ID of the subnet.
35120
+ */
35121
+ SubnetId?: SubnetId;
35122
+ /**
35123
+ * The IPv4 address to assign to the endpoint network interface in the subnet. You must provide an IPv4 address if the VPC endpoint supports IPv4. If you specify an IPv4 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.
35124
+ */
35125
+ Ipv4?: String;
35126
+ /**
35127
+ * The IPv6 address to assign to the endpoint network interface in the subnet. You must provide an IPv6 address if the VPC endpoint supports IPv6. If you specify an IPv6 address when modifying a VPC endpoint, we replace the existing endpoint network interface with a new endpoint network interface with this IP address. This process temporarily disconnects the subnet and the VPC endpoint.
35128
+ */
35129
+ Ipv6?: String;
35130
+ }
35131
+ export type SubnetConfigurationsList = SubnetConfiguration[];
35109
35132
  export type SubnetId = string;
35110
35133
  export type SubnetIdStringList = SubnetId[];
35111
35134
  export interface SubnetIpv6CidrBlockAssociation {