cdk-docker-image-deployment 0.0.133 → 0.0.134
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/.jsii +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +8 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/connect-2017-08-08.min.json +142 -126
- package/node_modules/aws-sdk/apis/resource-groups-2017-11-27.min.json +66 -26
- package/node_modules/aws-sdk/clients/connect.d.ts +16 -8
- package/node_modules/aws-sdk/clients/ec2.d.ts +90 -87
- package/node_modules/aws-sdk/clients/outposts.d.ts +1 -1
- package/node_modules/aws-sdk/clients/resourcegroups.d.ts +81 -34
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +5 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +212 -155
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +77 -77
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/region_config_data.json +1 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +3 -3
|
@@ -53,11 +53,11 @@ declare class EC2 extends Service {
|
|
|
53
53
|
*/
|
|
54
54
|
acceptTransitGatewayVpcAttachment(callback?: (err: AWSError, data: EC2.Types.AcceptTransitGatewayVpcAttachmentResult) => void): Request<EC2.Types.AcceptTransitGatewayVpcAttachmentResult, AWSError>;
|
|
55
55
|
/**
|
|
56
|
-
* Accepts
|
|
56
|
+
* Accepts connection requests to your VPC endpoint service.
|
|
57
57
|
*/
|
|
58
58
|
acceptVpcEndpointConnections(params: EC2.Types.AcceptVpcEndpointConnectionsRequest, callback?: (err: AWSError, data: EC2.Types.AcceptVpcEndpointConnectionsResult) => void): Request<EC2.Types.AcceptVpcEndpointConnectionsResult, AWSError>;
|
|
59
59
|
/**
|
|
60
|
-
* Accepts
|
|
60
|
+
* Accepts connection requests to your VPC endpoint service.
|
|
61
61
|
*/
|
|
62
62
|
acceptVpcEndpointConnections(callback?: (err: AWSError, data: EC2.Types.AcceptVpcEndpointConnectionsResult) => void): Request<EC2.Types.AcceptVpcEndpointConnectionsResult, AWSError>;
|
|
63
63
|
/**
|
|
@@ -813,11 +813,11 @@ declare class EC2 extends Service {
|
|
|
813
813
|
*/
|
|
814
814
|
createStoreImageTask(callback?: (err: AWSError, data: EC2.Types.CreateStoreImageTaskResult) => void): Request<EC2.Types.CreateStoreImageTaskResult, AWSError>;
|
|
815
815
|
/**
|
|
816
|
-
* Creates a subnet in
|
|
816
|
+
* Creates a subnet in the specified VPC. For an IPv4 only subnet, specify an IPv4 CIDR block. If the VPC has an IPv6 CIDR block, you can create an IPv6 only subnet or a dual stack subnet instead. For an IPv6 only subnet, specify an IPv6 CIDR block. For a dual stack subnet, specify both an IPv4 CIDR block and an IPv6 CIDR block. A subnet CIDR block must not overlap the CIDR block of an existing subnet in the VPC. After you create a subnet, you can't change its CIDR block. The allowed size for an IPv4 subnet is between a /28 netmask (16 IP addresses) and a /16 netmask (65,536 IP addresses). Amazon Web Services reserves both the first four and the last IPv4 address in each subnet's CIDR block. They're not available for your use. If you've associated an IPv6 CIDR block with your VPC, you can associate an IPv6 CIDR block with a subnet when you create it. The allowed block size for an IPv6 subnet is a /64 netmask. If you add more than one subnet to a VPC, they're set up in a star topology with a logical router in the middle. When you stop an instance in a subnet, it retains its private IPv4 address. It's therefore possible to have a subnet with no running instances (they're all stopped), but no remaining IP addresses available. For more information, see Subnets in the Amazon Virtual Private Cloud User Guide.
|
|
817
817
|
*/
|
|
818
818
|
createSubnet(params: EC2.Types.CreateSubnetRequest, callback?: (err: AWSError, data: EC2.Types.CreateSubnetResult) => void): Request<EC2.Types.CreateSubnetResult, AWSError>;
|
|
819
819
|
/**
|
|
820
|
-
* Creates a subnet in
|
|
820
|
+
* Creates a subnet in the specified VPC. For an IPv4 only subnet, specify an IPv4 CIDR block. If the VPC has an IPv6 CIDR block, you can create an IPv6 only subnet or a dual stack subnet instead. For an IPv6 only subnet, specify an IPv6 CIDR block. For a dual stack subnet, specify both an IPv4 CIDR block and an IPv6 CIDR block. A subnet CIDR block must not overlap the CIDR block of an existing subnet in the VPC. After you create a subnet, you can't change its CIDR block. The allowed size for an IPv4 subnet is between a /28 netmask (16 IP addresses) and a /16 netmask (65,536 IP addresses). Amazon Web Services reserves both the first four and the last IPv4 address in each subnet's CIDR block. They're not available for your use. If you've associated an IPv6 CIDR block with your VPC, you can associate an IPv6 CIDR block with a subnet when you create it. The allowed block size for an IPv6 subnet is a /64 netmask. If you add more than one subnet to a VPC, they're set up in a star topology with a logical router in the middle. When you stop an instance in a subnet, it retains its private IPv4 address. It's therefore possible to have a subnet with no running instances (they're all stopped), but no remaining IP addresses available. For more information, see Subnets in the Amazon Virtual Private Cloud User Guide.
|
|
821
821
|
*/
|
|
822
822
|
createSubnet(callback?: (err: AWSError, data: EC2.Types.CreateSubnetResult) => void): Request<EC2.Types.CreateSubnetResult, AWSError>;
|
|
823
823
|
/**
|
|
@@ -997,11 +997,11 @@ declare class EC2 extends Service {
|
|
|
997
997
|
*/
|
|
998
998
|
createVolume(callback?: (err: AWSError, data: EC2.Types.Volume) => void): Request<EC2.Types.Volume, AWSError>;
|
|
999
999
|
/**
|
|
1000
|
-
* Creates a VPC with the specified
|
|
1000
|
+
* Creates a VPC with the specified CIDR blocks. For more information, see VPC CIDR blocks in the Amazon Virtual Private Cloud User Guide. You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP). By default, each instance that you launch in the VPC has the default DHCP options, which include only a default DNS server that we provide (AmazonProvidedDNS). For more information, see DHCP option sets in the Amazon Virtual Private Cloud User Guide. You can specify the instance tenancy value for the VPC when you create it. You can't change this value for the VPC after you create it. For more information, see Dedicated Instances in the Amazon Elastic Compute Cloud User Guide.
|
|
1001
1001
|
*/
|
|
1002
1002
|
createVpc(params: EC2.Types.CreateVpcRequest, callback?: (err: AWSError, data: EC2.Types.CreateVpcResult) => void): Request<EC2.Types.CreateVpcResult, AWSError>;
|
|
1003
1003
|
/**
|
|
1004
|
-
* Creates a VPC with the specified
|
|
1004
|
+
* Creates a VPC with the specified CIDR blocks. For more information, see VPC CIDR blocks in the Amazon Virtual Private Cloud User Guide. You can optionally request an IPv6 CIDR block for the VPC. You can request an Amazon-provided IPv6 CIDR block from Amazon's pool of IPv6 addresses, or an IPv6 CIDR block from an IPv6 address pool that you provisioned through bring your own IP addresses (BYOIP). By default, each instance that you launch in the VPC has the default DHCP options, which include only a default DNS server that we provide (AmazonProvidedDNS). For more information, see DHCP option sets in the Amazon Virtual Private Cloud User Guide. You can specify the instance tenancy value for the VPC when you create it. You can't change this value for the VPC after you create it. For more information, see Dedicated Instances in the Amazon Elastic Compute Cloud User Guide.
|
|
1005
1005
|
*/
|
|
1006
1006
|
createVpc(callback?: (err: AWSError, data: EC2.Types.CreateVpcResult) => void): Request<EC2.Types.CreateVpcResult, AWSError>;
|
|
1007
1007
|
/**
|
|
@@ -1021,11 +1021,11 @@ declare class EC2 extends Service {
|
|
|
1021
1021
|
*/
|
|
1022
1022
|
createVpcEndpointConnectionNotification(callback?: (err: AWSError, data: EC2.Types.CreateVpcEndpointConnectionNotificationResult) => void): Request<EC2.Types.CreateVpcEndpointConnectionNotificationResult, AWSError>;
|
|
1023
1023
|
/**
|
|
1024
|
-
* Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts,
|
|
1024
|
+
* Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts, users, and IAM roles) can connect. Before you create an endpoint service, you must create one of the following for your service: A Network Load Balancer. Service consumers connect to your service using an interface endpoint. A Gateway Load Balancer. Service consumers connect to your service using a Gateway Load Balancer endpoint. If you set the private DNS name, you must prove that you own the private DNS domain name. For more information, see the Amazon Web Services PrivateLink Guide.
|
|
1025
1025
|
*/
|
|
1026
1026
|
createVpcEndpointServiceConfiguration(params: EC2.Types.CreateVpcEndpointServiceConfigurationRequest, callback?: (err: AWSError, data: EC2.Types.CreateVpcEndpointServiceConfigurationResult) => void): Request<EC2.Types.CreateVpcEndpointServiceConfigurationResult, AWSError>;
|
|
1027
1027
|
/**
|
|
1028
|
-
* Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts,
|
|
1028
|
+
* Creates a VPC endpoint service to which service consumers (Amazon Web Services accounts, users, and IAM roles) can connect. Before you create an endpoint service, you must create one of the following for your service: A Network Load Balancer. Service consumers connect to your service using an interface endpoint. A Gateway Load Balancer. Service consumers connect to your service using a Gateway Load Balancer endpoint. If you set the private DNS name, you must prove that you own the private DNS domain name. For more information, see the Amazon Web Services PrivateLink Guide.
|
|
1029
1029
|
*/
|
|
1030
1030
|
createVpcEndpointServiceConfiguration(callback?: (err: AWSError, data: EC2.Types.CreateVpcEndpointServiceConfigurationResult) => void): Request<EC2.Types.CreateVpcEndpointServiceConfigurationResult, AWSError>;
|
|
1031
1031
|
/**
|
|
@@ -1581,27 +1581,27 @@ declare class EC2 extends Service {
|
|
|
1581
1581
|
*/
|
|
1582
1582
|
deleteVpc(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
1583
1583
|
/**
|
|
1584
|
-
* Deletes
|
|
1584
|
+
* Deletes the specified VPC endpoint connection notifications.
|
|
1585
1585
|
*/
|
|
1586
1586
|
deleteVpcEndpointConnectionNotifications(params: EC2.Types.DeleteVpcEndpointConnectionNotificationsRequest, callback?: (err: AWSError, data: EC2.Types.DeleteVpcEndpointConnectionNotificationsResult) => void): Request<EC2.Types.DeleteVpcEndpointConnectionNotificationsResult, AWSError>;
|
|
1587
1587
|
/**
|
|
1588
|
-
* Deletes
|
|
1588
|
+
* Deletes the specified VPC endpoint connection notifications.
|
|
1589
1589
|
*/
|
|
1590
1590
|
deleteVpcEndpointConnectionNotifications(callback?: (err: AWSError, data: EC2.Types.DeleteVpcEndpointConnectionNotificationsResult) => void): Request<EC2.Types.DeleteVpcEndpointConnectionNotificationsResult, AWSError>;
|
|
1591
1591
|
/**
|
|
1592
|
-
* Deletes
|
|
1592
|
+
* Deletes the specified VPC endpoint service configurations. Before you can delete an endpoint service configuration, you must reject any Available or PendingAcceptance interface endpoint connections that are attached to the service.
|
|
1593
1593
|
*/
|
|
1594
1594
|
deleteVpcEndpointServiceConfigurations(params: EC2.Types.DeleteVpcEndpointServiceConfigurationsRequest, callback?: (err: AWSError, data: EC2.Types.DeleteVpcEndpointServiceConfigurationsResult) => void): Request<EC2.Types.DeleteVpcEndpointServiceConfigurationsResult, AWSError>;
|
|
1595
1595
|
/**
|
|
1596
|
-
* Deletes
|
|
1596
|
+
* Deletes the specified VPC endpoint service configurations. Before you can delete an endpoint service configuration, you must reject any Available or PendingAcceptance interface endpoint connections that are attached to the service.
|
|
1597
1597
|
*/
|
|
1598
1598
|
deleteVpcEndpointServiceConfigurations(callback?: (err: AWSError, data: EC2.Types.DeleteVpcEndpointServiceConfigurationsResult) => void): Request<EC2.Types.DeleteVpcEndpointServiceConfigurationsResult, AWSError>;
|
|
1599
1599
|
/**
|
|
1600
|
-
* Deletes
|
|
1600
|
+
* Deletes the specified VPC endpoints. When you delete a gateway endpoint, we delete the endpoint routes in the route tables for the endpoint. When you delete a Gateway Load Balancer endpoint, we delete its endpoint network interfaces. You can only delete Gateway Load Balancer endpoints when the routes that are associated with the endpoint are deleted. When you delete an interface endpoint, we delete its endpoint network interfaces.
|
|
1601
1601
|
*/
|
|
1602
1602
|
deleteVpcEndpoints(params: EC2.Types.DeleteVpcEndpointsRequest, callback?: (err: AWSError, data: EC2.Types.DeleteVpcEndpointsResult) => void): Request<EC2.Types.DeleteVpcEndpointsResult, AWSError>;
|
|
1603
1603
|
/**
|
|
1604
|
-
* Deletes
|
|
1604
|
+
* Deletes the specified VPC endpoints. When you delete a gateway endpoint, we delete the endpoint routes in the route tables for the endpoint. When you delete a Gateway Load Balancer endpoint, we delete its endpoint network interfaces. You can only delete Gateway Load Balancer endpoints when the routes that are associated with the endpoint are deleted. When you delete an interface endpoint, we delete its endpoint network interfaces.
|
|
1605
1605
|
*/
|
|
1606
1606
|
deleteVpcEndpoints(callback?: (err: AWSError, data: EC2.Types.DeleteVpcEndpointsResult) => void): Request<EC2.Types.DeleteVpcEndpointsResult, AWSError>;
|
|
1607
1607
|
/**
|
|
@@ -2789,11 +2789,11 @@ declare class EC2 extends Service {
|
|
|
2789
2789
|
*/
|
|
2790
2790
|
describeVpcEndpointServices(callback?: (err: AWSError, data: EC2.Types.DescribeVpcEndpointServicesResult) => void): Request<EC2.Types.DescribeVpcEndpointServicesResult, AWSError>;
|
|
2791
2791
|
/**
|
|
2792
|
-
* Describes
|
|
2792
|
+
* Describes your VPC endpoints.
|
|
2793
2793
|
*/
|
|
2794
2794
|
describeVpcEndpoints(params: EC2.Types.DescribeVpcEndpointsRequest, callback?: (err: AWSError, data: EC2.Types.DescribeVpcEndpointsResult) => void): Request<EC2.Types.DescribeVpcEndpointsResult, AWSError>;
|
|
2795
2795
|
/**
|
|
2796
|
-
* Describes
|
|
2796
|
+
* Describes your VPC endpoints.
|
|
2797
2797
|
*/
|
|
2798
2798
|
describeVpcEndpoints(callback?: (err: AWSError, data: EC2.Types.DescribeVpcEndpointsResult) => void): Request<EC2.Types.DescribeVpcEndpointsResult, AWSError>;
|
|
2799
2799
|
/**
|
|
@@ -4045,11 +4045,11 @@ declare class EC2 extends Service {
|
|
|
4045
4045
|
*/
|
|
4046
4046
|
modifyVpcEndpointServicePayerResponsibility(callback?: (err: AWSError, data: EC2.Types.ModifyVpcEndpointServicePayerResponsibilityResult) => void): Request<EC2.Types.ModifyVpcEndpointServicePayerResponsibilityResult, AWSError>;
|
|
4047
4047
|
/**
|
|
4048
|
-
* Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (
|
|
4048
|
+
* Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (Amazon Web Services accounts, users, and IAM roles) to connect to your endpoint service. If you grant permissions to all principals, the service is public. Any users who know the name of a public service can send a request to attach an endpoint. If the service does not require manual approval, attachments are automatically approved.
|
|
4049
4049
|
*/
|
|
4050
4050
|
modifyVpcEndpointServicePermissions(params: EC2.Types.ModifyVpcEndpointServicePermissionsRequest, callback?: (err: AWSError, data: EC2.Types.ModifyVpcEndpointServicePermissionsResult) => void): Request<EC2.Types.ModifyVpcEndpointServicePermissionsResult, AWSError>;
|
|
4051
4051
|
/**
|
|
4052
|
-
* Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (
|
|
4052
|
+
* Modifies the permissions for your VPC endpoint service. You can add or remove permissions for service consumers (Amazon Web Services accounts, users, and IAM roles) to connect to your endpoint service. If you grant permissions to all principals, the service is public. Any users who know the name of a public service can send a request to attach an endpoint. If the service does not require manual approval, attachments are automatically approved.
|
|
4053
4053
|
*/
|
|
4054
4054
|
modifyVpcEndpointServicePermissions(callback?: (err: AWSError, data: EC2.Types.ModifyVpcEndpointServicePermissionsResult) => void): Request<EC2.Types.ModifyVpcEndpointServicePermissionsResult, AWSError>;
|
|
4055
4055
|
/**
|
|
@@ -4237,11 +4237,11 @@ declare class EC2 extends Service {
|
|
|
4237
4237
|
*/
|
|
4238
4238
|
rejectTransitGatewayVpcAttachment(callback?: (err: AWSError, data: EC2.Types.RejectTransitGatewayVpcAttachmentResult) => void): Request<EC2.Types.RejectTransitGatewayVpcAttachmentResult, AWSError>;
|
|
4239
4239
|
/**
|
|
4240
|
-
* Rejects
|
|
4240
|
+
* Rejects VPC endpoint connection requests to your VPC endpoint service.
|
|
4241
4241
|
*/
|
|
4242
4242
|
rejectVpcEndpointConnections(params: EC2.Types.RejectVpcEndpointConnectionsRequest, callback?: (err: AWSError, data: EC2.Types.RejectVpcEndpointConnectionsResult) => void): Request<EC2.Types.RejectVpcEndpointConnectionsResult, AWSError>;
|
|
4243
4243
|
/**
|
|
4244
|
-
* Rejects
|
|
4244
|
+
* Rejects VPC endpoint connection requests to your VPC endpoint service.
|
|
4245
4245
|
*/
|
|
4246
4246
|
rejectVpcEndpointConnections(callback?: (err: AWSError, data: EC2.Types.RejectVpcEndpointConnectionsResult) => void): Request<EC2.Types.RejectVpcEndpointConnectionsResult, AWSError>;
|
|
4247
4247
|
/**
|
|
@@ -5046,7 +5046,7 @@ declare namespace EC2 {
|
|
|
5046
5046
|
*/
|
|
5047
5047
|
ServiceId: VpcEndpointServiceId;
|
|
5048
5048
|
/**
|
|
5049
|
-
* The IDs of
|
|
5049
|
+
* The IDs of the interface VPC endpoints.
|
|
5050
5050
|
*/
|
|
5051
5051
|
VpcEndpointIds: VpcEndpointIdList;
|
|
5052
5052
|
}
|
|
@@ -6501,7 +6501,7 @@ declare namespace EC2 {
|
|
|
6501
6501
|
*/
|
|
6502
6502
|
CidrIp?: String;
|
|
6503
6503
|
/**
|
|
6504
|
-
*
|
|
6504
|
+
* If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP, this is the type number. A value of -1 indicates all ICMP types. If you specify all ICMP types, you must specify all ICMP codes. Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.
|
|
6505
6505
|
*/
|
|
6506
6506
|
FromPort?: Integer;
|
|
6507
6507
|
/**
|
|
@@ -6529,7 +6529,7 @@ declare namespace EC2 {
|
|
|
6529
6529
|
*/
|
|
6530
6530
|
SourceSecurityGroupOwnerId?: String;
|
|
6531
6531
|
/**
|
|
6532
|
-
*
|
|
6532
|
+
* If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP, this is the code. A value of -1 indicates all ICMP codes. If you specify all ICMP types, you must specify all ICMP codes. Alternatively, use a set of IP permissions to specify multiple rules and a description for the rule.
|
|
6533
6533
|
*/
|
|
6534
6534
|
ToPort?: Integer;
|
|
6535
6535
|
/**
|
|
@@ -8250,7 +8250,7 @@ declare namespace EC2 {
|
|
|
8250
8250
|
}
|
|
8251
8251
|
export interface CreateClientVpnEndpointRequest {
|
|
8252
8252
|
/**
|
|
8253
|
-
* The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created.
|
|
8253
|
+
* The IPv4 address range, in CIDR notation, from which to assign client IP addresses. The address range cannot overlap with the local CIDR of the VPC in which the associated subnet is located, or the routes that you add manually. The address range cannot be changed after the Client VPN endpoint has been created. Client CIDR range must have a size of at least /22 and must not be greater than /12.
|
|
8254
8254
|
*/
|
|
8255
8255
|
ClientCidrBlock: String;
|
|
8256
8256
|
/**
|
|
@@ -10796,7 +10796,7 @@ declare namespace EC2 {
|
|
|
10796
10796
|
*/
|
|
10797
10797
|
ConnectionNotificationArn: String;
|
|
10798
10798
|
/**
|
|
10799
|
-
*
|
|
10799
|
+
* The endpoint events for which to receive notifications. Valid values are Accept, Connect, Delete, and Reject.
|
|
10800
10800
|
*/
|
|
10801
10801
|
ConnectionEvents: ValueStringList;
|
|
10802
10802
|
/**
|
|
@@ -10824,11 +10824,11 @@ declare namespace EC2 {
|
|
|
10824
10824
|
*/
|
|
10825
10825
|
VpcEndpointType?: VpcEndpointType;
|
|
10826
10826
|
/**
|
|
10827
|
-
* The ID of the VPC
|
|
10827
|
+
* The ID of the VPC for the endpoint.
|
|
10828
10828
|
*/
|
|
10829
10829
|
VpcId: VpcId;
|
|
10830
10830
|
/**
|
|
10831
|
-
* The service name.
|
|
10831
|
+
* The service name.
|
|
10832
10832
|
*/
|
|
10833
10833
|
ServiceName: String;
|
|
10834
10834
|
/**
|
|
@@ -10836,15 +10836,15 @@ declare namespace EC2 {
|
|
|
10836
10836
|
*/
|
|
10837
10837
|
PolicyDocument?: String;
|
|
10838
10838
|
/**
|
|
10839
|
-
* (Gateway endpoint)
|
|
10839
|
+
* (Gateway endpoint) The route table IDs.
|
|
10840
10840
|
*/
|
|
10841
10841
|
RouteTableIds?: VpcEndpointRouteTableIdList;
|
|
10842
10842
|
/**
|
|
10843
|
-
* (Interface and Gateway Load Balancer endpoints) The
|
|
10843
|
+
* (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.
|
|
10844
10844
|
*/
|
|
10845
10845
|
SubnetIds?: VpcEndpointSubnetIdList;
|
|
10846
10846
|
/**
|
|
10847
|
-
* (Interface endpoint) The
|
|
10847
|
+
* (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.
|
|
10848
10848
|
*/
|
|
10849
10849
|
SecurityGroupIds?: VpcEndpointSecurityGroupIdList;
|
|
10850
10850
|
/**
|
|
@@ -10892,11 +10892,11 @@ declare namespace EC2 {
|
|
|
10892
10892
|
*/
|
|
10893
10893
|
PrivateDnsName?: String;
|
|
10894
10894
|
/**
|
|
10895
|
-
* The Amazon Resource Names (ARNs) of
|
|
10895
|
+
* The Amazon Resource Names (ARNs) of the Network Load Balancers.
|
|
10896
10896
|
*/
|
|
10897
10897
|
NetworkLoadBalancerArns?: ValueStringList;
|
|
10898
10898
|
/**
|
|
10899
|
-
* The Amazon Resource Names (ARNs) of
|
|
10899
|
+
* The Amazon Resource Names (ARNs) of the Gateway Load Balancers.
|
|
10900
10900
|
*/
|
|
10901
10901
|
GatewayLoadBalancerArns?: ValueStringList;
|
|
10902
10902
|
/**
|
|
@@ -11152,11 +11152,11 @@ declare namespace EC2 {
|
|
|
11152
11152
|
*/
|
|
11153
11153
|
Destination?: String;
|
|
11154
11154
|
/**
|
|
11155
|
-
* The aggregation
|
|
11155
|
+
* The metric, aggregation-latency, indicating that network latency is aggregated for the query. This is the only supported metric.
|
|
11156
11156
|
*/
|
|
11157
11157
|
Metric?: MetricType;
|
|
11158
11158
|
/**
|
|
11159
|
-
*
|
|
11159
|
+
* The metric data aggregation period, p50, between the specified startDate and endDate. For example, a metric of five_minutes is the median of all the data points gathered within those five minutes. p50 is the only supported metric.
|
|
11160
11160
|
*/
|
|
11161
11161
|
Statistic?: StatisticType;
|
|
11162
11162
|
/**
|
|
@@ -11178,7 +11178,7 @@ declare namespace EC2 {
|
|
|
11178
11178
|
*/
|
|
11179
11179
|
Destination?: String;
|
|
11180
11180
|
/**
|
|
11181
|
-
* The metric used for the network performance request.
|
|
11181
|
+
* The metric used for the network performance request. Only aggregate-latency is supported, which shows network latency during a specified period.
|
|
11182
11182
|
*/
|
|
11183
11183
|
Metric?: MetricType;
|
|
11184
11184
|
/**
|
|
@@ -12330,7 +12330,7 @@ declare namespace EC2 {
|
|
|
12330
12330
|
*/
|
|
12331
12331
|
DryRun?: Boolean;
|
|
12332
12332
|
/**
|
|
12333
|
-
*
|
|
12333
|
+
* The IDs of the notifications.
|
|
12334
12334
|
*/
|
|
12335
12335
|
ConnectionNotificationIds: ConnectionNotificationIdsList;
|
|
12336
12336
|
}
|
|
@@ -12346,7 +12346,7 @@ declare namespace EC2 {
|
|
|
12346
12346
|
*/
|
|
12347
12347
|
DryRun?: Boolean;
|
|
12348
12348
|
/**
|
|
12349
|
-
* The IDs of
|
|
12349
|
+
* The IDs of the services.
|
|
12350
12350
|
*/
|
|
12351
12351
|
ServiceIds: VpcEndpointServiceIdList;
|
|
12352
12352
|
}
|
|
@@ -12362,7 +12362,7 @@ declare namespace EC2 {
|
|
|
12362
12362
|
*/
|
|
12363
12363
|
DryRun?: Boolean;
|
|
12364
12364
|
/**
|
|
12365
|
-
*
|
|
12365
|
+
* The IDs of the VPC endpoints.
|
|
12366
12366
|
*/
|
|
12367
12367
|
VpcEndpointIds: VpcEndpointIdList;
|
|
12368
12368
|
}
|
|
@@ -14172,7 +14172,7 @@ declare namespace EC2 {
|
|
|
14172
14172
|
}
|
|
14173
14173
|
export interface DescribeInstancesRequest {
|
|
14174
14174
|
/**
|
|
14175
|
-
* The filters. affinity - The affinity setting for an instance running on a Dedicated Host (default | host). architecture - The instance architecture (i386 | x86_64 | arm64). availability-zone - The Availability Zone of the instance. block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2010-09-15T17:15:20.000Z. block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached). block-device-mapping.volume-id - The volume ID of the EBS volume. capacity-reservation-id - The ID of the Capacity Reservation into which the instance was launched. client-token - The idempotency token you provided when you launched the instance. dns-name - The public DNS name of the instance. group-id - The ID of the security group for the instance. EC2-Classic only. group-name - The name of the security group for the instance. EC2-Classic only. hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation. host-id - The ID of the Dedicated Host on which the instance is running, if applicable. hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors. iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN. image-id - The ID of the image used to launch the instance. instance-id - The ID of the instance. instance-lifecycle - Indicates whether this is a Spot Instance or a Scheduled Instance (spot | scheduled). instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped). instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped). instance-type - The type of instance (for example, t2.micro). instance.group-id - The ID of the security group for the instance. instance.group-name - The name of the security group for the instance. ip-address - The public IPv4 address of the instance. kernel-id - The kernel ID. key-name - The name of the key pair used when the instance was launched. launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on). launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. metadata-options.http-tokens - The metadata request authorization state (optional | required) metadata-options.http-put-response-hop-limit - The http metadata request put response hop limit (integer, possible values 1 to 64) metadata-options.http-endpoint - Enable or disable metadata access on http endpoint (enabled | disabled) monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled). network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface. network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address. network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface. network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface. network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface. network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface. network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface. network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address. network-interface.attachment.attachment-id - The ID of the interface attachment. network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached. network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached. network-interface.attachment.device-index - The device index to which the network interface is attached. network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached). network-interface.attachment.attach-time - The time that the network interface was attached to an instance. network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated. network-interface.availability-zone - The Availability Zone for the network interface. network-interface.description - The description of the network interface. network-interface.group-id - The ID of a security group associated with the network interface. network-interface.group-name - The name of a security group associated with the network interface. network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface. network-interface.mac-address - The MAC address of the network interface. network-interface.network-interface-id - The ID of the network interface. network-interface.owner-id - The ID of the owner of the network interface. network-interface.private-dns-name - The private DNS name of the network interface. network-interface.requester-id - The requester ID for the network interface. network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services. network-interface.status - The status of the network interface (available) | in-use). network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC. network-interface.subnet-id - The ID of the subnet for the network interface. network-interface.vpc-id - The ID of the VPC for the network interface. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The Amazon Web Services account ID of the instance owner. placement-group-name - The name of the placement group for the instance. placement-partition-number - The partition in which the instance is located. platform - The platform. To list only Windows instances, use windows. private-dns-name - The private IPv4 DNS name of the instance. private-ip-address - The private IPv4 address of the instance. product-code - The product code associated with the AMI used to launch the instance. product-code.type - The type of product code (devpay | marketplace). ramdisk-id - The RAM disk ID. reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter. requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on). reservation-id - The ID of the instance's reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC. spot-instance-request-id - The ID of the Spot Instance request. state-reason-code - The reason code for the state change. state-reason-message - A message that describes the state change. subnet-id - The ID of the subnet for the instance. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value. tenancy - The tenancy of an instance (dedicated | default | host). virtualization-type - The virtualization type of the instance (paravirtual | hvm). vpc-id - The ID of the VPC that the instance is running in.
|
|
14175
|
+
* The filters. affinity - The affinity setting for an instance running on a Dedicated Host (default | host). architecture - The instance architecture (i386 | x86_64 | arm64). availability-zone - The Availability Zone of the instance. block-device-mapping.attach-time - The attach time for an EBS volume mapped to the instance, for example, 2010-09-15T17:15:20.000Z. block-device-mapping.delete-on-termination - A Boolean that indicates whether the EBS volume is deleted on instance termination. block-device-mapping.device-name - The device name specified in the block device mapping (for example, /dev/sdh or xvdh). block-device-mapping.status - The status for the EBS volume (attaching | attached | detaching | detached). block-device-mapping.volume-id - The volume ID of the EBS volume. capacity-reservation-id - The ID of the Capacity Reservation into which the instance was launched. client-token - The idempotency token you provided when you launched the instance. dns-name - The public DNS name of the instance. group-id - The ID of the security group for the instance. EC2-Classic only. group-name - The name of the security group for the instance. EC2-Classic only. hibernation-options.configured - A Boolean that indicates whether the instance is enabled for hibernation. A value of true means that the instance is enabled for hibernation. host-id - The ID of the Dedicated Host on which the instance is running, if applicable. hypervisor - The hypervisor type of the instance (ovm | xen). The value xen is used for both Xen and Nitro hypervisors. iam-instance-profile.arn - The instance profile associated with the instance. Specified as an ARN. image-id - The ID of the image used to launch the instance. instance-id - The ID of the instance. instance-lifecycle - Indicates whether this is a Spot Instance or a Scheduled Instance (spot | scheduled). instance-state-code - The state of the instance, as a 16-bit unsigned integer. The high byte is used for internal purposes and should be ignored. The low byte is set based on the state represented. The valid values are: 0 (pending), 16 (running), 32 (shutting-down), 48 (terminated), 64 (stopping), and 80 (stopped). instance-state-name - The state of the instance (pending | running | shutting-down | terminated | stopping | stopped). instance-type - The type of instance (for example, t2.micro). instance.group-id - The ID of the security group for the instance. instance.group-name - The name of the security group for the instance. ip-address - The public IPv4 address of the instance. kernel-id - The kernel ID. key-name - The name of the key pair used when the instance was launched. launch-index - When launching multiple instances, this is the index for the instance in the launch group (for example, 0, 1, 2, and so on). launch-time - The time when the instance was launched, in the ISO 8601 format in the UTC time zone (YYYY-MM-DDThh:mm:ss.sssZ), for example, 2021-09-29T11:04:43.305Z. You can use a wildcard (*), for example, 2021-09-29T*, which matches an entire day. metadata-options.http-tokens - The metadata request authorization state (optional | required) metadata-options.http-put-response-hop-limit - The HTTP metadata request put response hop limit (integer, possible values 1 to 64) metadata-options.http-endpoint - The status of access to the HTTP metadata endpoint on your instance (enabled | disabled) metadata-options.instance-metadata-tags - The status of access to instance tags from the instance metadata (enabled | disabled) monitoring-state - Indicates whether detailed monitoring is enabled (disabled | enabled). network-interface.addresses.private-ip-address - The private IPv4 address associated with the network interface. network-interface.addresses.primary - Specifies whether the IPv4 address of the network interface is the primary private IPv4 address. network-interface.addresses.association.public-ip - The ID of the association of an Elastic IP address (IPv4) with a network interface. network-interface.addresses.association.ip-owner-id - The owner ID of the private IPv4 address associated with the network interface. network-interface.association.public-ip - The address of the Elastic IP address (IPv4) bound to the network interface. network-interface.association.ip-owner-id - The owner of the Elastic IP address (IPv4) associated with the network interface. network-interface.association.allocation-id - The allocation ID returned when you allocated the Elastic IP address (IPv4) for your network interface. network-interface.association.association-id - The association ID returned when the network interface was associated with an IPv4 address. network-interface.attachment.attachment-id - The ID of the interface attachment. network-interface.attachment.instance-id - The ID of the instance to which the network interface is attached. network-interface.attachment.instance-owner-id - The owner ID of the instance to which the network interface is attached. network-interface.attachment.device-index - The device index to which the network interface is attached. network-interface.attachment.status - The status of the attachment (attaching | attached | detaching | detached). network-interface.attachment.attach-time - The time that the network interface was attached to an instance. network-interface.attachment.delete-on-termination - Specifies whether the attachment is deleted when an instance is terminated. network-interface.availability-zone - The Availability Zone for the network interface. network-interface.description - The description of the network interface. network-interface.group-id - The ID of a security group associated with the network interface. network-interface.group-name - The name of a security group associated with the network interface. network-interface.ipv6-addresses.ipv6-address - The IPv6 address associated with the network interface. network-interface.mac-address - The MAC address of the network interface. network-interface.network-interface-id - The ID of the network interface. network-interface.owner-id - The ID of the owner of the network interface. network-interface.private-dns-name - The private DNS name of the network interface. network-interface.requester-id - The requester ID for the network interface. network-interface.requester-managed - Indicates whether the network interface is being managed by Amazon Web Services. network-interface.status - The status of the network interface (available) | in-use). network-interface.source-dest-check - Whether the network interface performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the network interface to perform network address translation (NAT) in your VPC. network-interface.subnet-id - The ID of the subnet for the network interface. network-interface.vpc-id - The ID of the VPC for the network interface. outpost-arn - The Amazon Resource Name (ARN) of the Outpost. owner-id - The Amazon Web Services account ID of the instance owner. placement-group-name - The name of the placement group for the instance. placement-partition-number - The partition in which the instance is located. platform - The platform. To list only Windows instances, use windows. private-dns-name - The private IPv4 DNS name of the instance. private-ip-address - The private IPv4 address of the instance. product-code - The product code associated with the AMI used to launch the instance. product-code.type - The type of product code (devpay | marketplace). ramdisk-id - The RAM disk ID. reason - The reason for the current state of the instance (for example, shows "User Initiated [date]" when you stop or terminate the instance). Similar to the state-reason-code filter. requester-id - The ID of the entity that launched the instance on your behalf (for example, Amazon Web Services Management Console, Auto Scaling, and so on). reservation-id - The ID of the instance's reservation. A reservation ID is created any time you launch an instance. A reservation ID has a one-to-one relationship with an instance launch request, but can be associated with more than one instance if you launch multiple instances using the same launch request. For example, if you launch one instance, you get one reservation ID. If you launch ten instances using the same launch request, you also get one reservation ID. root-device-name - The device name of the root device volume (for example, /dev/sda1). root-device-type - The type of the root device volume (ebs | instance-store). source-dest-check - Indicates whether the instance performs source/destination checking. A value of true means that checking is enabled, and false means that checking is disabled. The value must be false for the instance to perform network address translation (NAT) in your VPC. spot-instance-request-id - The ID of the Spot Instance request. state-reason-code - The reason code for the state change. state-reason-message - A message that describes the state change. subnet-id - The ID of the subnet for the instance. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources that have a tag with a specific key, regardless of the tag value. tenancy - The tenancy of an instance (dedicated | default | host). virtualization-type - The virtualization type of the instance (paravirtual | hvm). vpc-id - The ID of the VPC that the instance is running in.
|
|
14176
14176
|
*/
|
|
14177
14177
|
Filters?: FilterList;
|
|
14178
14178
|
/**
|
|
@@ -16824,7 +16824,7 @@ declare namespace EC2 {
|
|
|
16824
16824
|
*/
|
|
16825
16825
|
ConnectionNotificationId?: ConnectionNotificationId;
|
|
16826
16826
|
/**
|
|
16827
|
-
*
|
|
16827
|
+
* The filters. connection-notification-arn - The ARN of the SNS topic for the notification. connection-notification-id - The ID of the notification. connection-notification-state - The state of the notification (Enabled | Disabled). connection-notification-type - The type of notification (Topic). service-id - The ID of the endpoint service. vpc-endpoint-id - The ID of the VPC endpoint.
|
|
16828
16828
|
*/
|
|
16829
16829
|
Filters?: FilterList;
|
|
16830
16830
|
/**
|
|
@@ -16838,7 +16838,7 @@ declare namespace EC2 {
|
|
|
16838
16838
|
}
|
|
16839
16839
|
export interface DescribeVpcEndpointConnectionNotificationsResult {
|
|
16840
16840
|
/**
|
|
16841
|
-
*
|
|
16841
|
+
* The notifications.
|
|
16842
16842
|
*/
|
|
16843
16843
|
ConnectionNotificationSet?: ConnectionNotificationSet;
|
|
16844
16844
|
/**
|
|
@@ -16852,7 +16852,7 @@ declare namespace EC2 {
|
|
|
16852
16852
|
*/
|
|
16853
16853
|
DryRun?: Boolean;
|
|
16854
16854
|
/**
|
|
16855
|
-
*
|
|
16855
|
+
* The filters. ip-address-type - The IP address type (ipv4 | ipv6). service-id - The ID of the service. vpc-endpoint-owner - The ID of the Amazon Web Services account ID that owns the endpoint. vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed). vpc-endpoint-id - The ID of the endpoint.
|
|
16856
16856
|
*/
|
|
16857
16857
|
Filters?: FilterList;
|
|
16858
16858
|
/**
|
|
@@ -16866,7 +16866,7 @@ declare namespace EC2 {
|
|
|
16866
16866
|
}
|
|
16867
16867
|
export interface DescribeVpcEndpointConnectionsResult {
|
|
16868
16868
|
/**
|
|
16869
|
-
* Information about
|
|
16869
|
+
* Information about the VPC endpoint connections.
|
|
16870
16870
|
*/
|
|
16871
16871
|
VpcEndpointConnections?: VpcEndpointConnectionSet;
|
|
16872
16872
|
/**
|
|
@@ -16880,11 +16880,11 @@ declare namespace EC2 {
|
|
|
16880
16880
|
*/
|
|
16881
16881
|
DryRun?: Boolean;
|
|
16882
16882
|
/**
|
|
16883
|
-
* The IDs of
|
|
16883
|
+
* The IDs of the endpoint services.
|
|
16884
16884
|
*/
|
|
16885
16885
|
ServiceIds?: VpcEndpointServiceIdList;
|
|
16886
16886
|
/**
|
|
16887
|
-
*
|
|
16887
|
+
* The filters. service-name - The name of the service. service-id - The ID of the service. service-state - The state of the service (Pending | Available | Deleting | Deleted | Failed). supported-ip-address-types - The IP address type (ipv4 | ipv6). tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
|
|
16888
16888
|
*/
|
|
16889
16889
|
Filters?: FilterList;
|
|
16890
16890
|
/**
|
|
@@ -16898,7 +16898,7 @@ declare namespace EC2 {
|
|
|
16898
16898
|
}
|
|
16899
16899
|
export interface DescribeVpcEndpointServiceConfigurationsResult {
|
|
16900
16900
|
/**
|
|
16901
|
-
* Information about
|
|
16901
|
+
* Information about the services.
|
|
16902
16902
|
*/
|
|
16903
16903
|
ServiceConfigurations?: ServiceConfigurationSet;
|
|
16904
16904
|
/**
|
|
@@ -16916,7 +16916,7 @@ declare namespace EC2 {
|
|
|
16916
16916
|
*/
|
|
16917
16917
|
ServiceId: VpcEndpointServiceId;
|
|
16918
16918
|
/**
|
|
16919
|
-
*
|
|
16919
|
+
* The filters. principal - The ARN of the principal. principal-type - The principal type (All | Service | OrganizationUnit | Account | User | Role).
|
|
16920
16920
|
*/
|
|
16921
16921
|
Filters?: FilterList;
|
|
16922
16922
|
/**
|
|
@@ -16930,7 +16930,7 @@ declare namespace EC2 {
|
|
|
16930
16930
|
}
|
|
16931
16931
|
export interface DescribeVpcEndpointServicePermissionsResult {
|
|
16932
16932
|
/**
|
|
16933
|
-
* Information about
|
|
16933
|
+
* Information about the allowed principals.
|
|
16934
16934
|
*/
|
|
16935
16935
|
AllowedPrincipals?: AllowedPrincipalSet;
|
|
16936
16936
|
/**
|
|
@@ -16944,11 +16944,11 @@ declare namespace EC2 {
|
|
|
16944
16944
|
*/
|
|
16945
16945
|
DryRun?: Boolean;
|
|
16946
16946
|
/**
|
|
16947
|
-
*
|
|
16947
|
+
* The service names.
|
|
16948
16948
|
*/
|
|
16949
16949
|
ServiceNames?: ValueStringList;
|
|
16950
16950
|
/**
|
|
16951
|
-
*
|
|
16951
|
+
* The filters. owner - The ID or alias of the Amazon Web Services account that owns the service. service-name - The name of the service. service-type - The type of service (Interface | Gateway | GatewayLoadBalancer). supported-ip-address-types - The IP address type (ipv4 | ipv6). tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value.
|
|
16952
16952
|
*/
|
|
16953
16953
|
Filters?: FilterList;
|
|
16954
16954
|
/**
|
|
@@ -16962,7 +16962,7 @@ declare namespace EC2 {
|
|
|
16962
16962
|
}
|
|
16963
16963
|
export interface DescribeVpcEndpointServicesResult {
|
|
16964
16964
|
/**
|
|
16965
|
-
*
|
|
16965
|
+
* The supported services.
|
|
16966
16966
|
*/
|
|
16967
16967
|
ServiceNames?: ValueStringList;
|
|
16968
16968
|
/**
|
|
@@ -16980,11 +16980,11 @@ declare namespace EC2 {
|
|
|
16980
16980
|
*/
|
|
16981
16981
|
DryRun?: Boolean;
|
|
16982
16982
|
/**
|
|
16983
|
-
*
|
|
16983
|
+
* The IDs of the VPC endpoints.
|
|
16984
16984
|
*/
|
|
16985
16985
|
VpcEndpointIds?: VpcEndpointIdList;
|
|
16986
16986
|
/**
|
|
16987
|
-
*
|
|
16987
|
+
* The filters. ip-address-type - The IP address type (ipv4 | ipv6). service-name - The name of the service. tag:<key> - The key/value combination of a tag assigned to the resource. Use the tag key in the filter name and the tag value as the filter value. For example, to find all resources that have a tag with the key Owner and the value TeamA, specify tag:Owner for the filter name and TeamA for the filter value. tag-key - The key of a tag assigned to the resource. Use this filter to find all resources assigned a tag with a specific key, regardless of the tag value. vpc-id - The ID of the VPC in which the endpoint resides. vpc-endpoint-id - The ID of the endpoint. vpc-endpoint-state - The state of the endpoint (pendingAcceptance | pending | available | deleting | deleted | rejected | failed). vpc-endpoint-type - The type of VPC endpoint (Interface | Gateway | GatewayLoadBalancer).
|
|
16988
16988
|
*/
|
|
16989
16989
|
Filters?: FilterList;
|
|
16990
16990
|
/**
|
|
@@ -19667,6 +19667,9 @@ declare namespace EC2 {
|
|
|
19667
19667
|
* Indicates whether data retention support is enabled for the AFI.
|
|
19668
19668
|
*/
|
|
19669
19669
|
DataRetentionSupport?: Boolean;
|
|
19670
|
+
/**
|
|
19671
|
+
* The instance types supported by the AFI.
|
|
19672
|
+
*/
|
|
19670
19673
|
InstanceTypes?: InstanceTypesList;
|
|
19671
19674
|
}
|
|
19672
19675
|
export interface FpgaImageAttribute {
|
|
@@ -22654,7 +22657,7 @@ declare namespace EC2 {
|
|
|
22654
22657
|
export type InstanceMetadataEndpointState = "disabled"|"enabled"|string;
|
|
22655
22658
|
export interface InstanceMetadataOptionsRequest {
|
|
22656
22659
|
/**
|
|
22657
|
-
*
|
|
22660
|
+
* IMDSv2 uses token-backed sessions. Set the use of HTTP tokens to optional (in other words, set the use of IMDSv2 to optional) or required (in other words, set the use of IMDSv2 to required). optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
|
|
22658
22661
|
*/
|
|
22659
22662
|
HttpTokens?: HttpTokensState;
|
|
22660
22663
|
/**
|
|
@@ -22680,7 +22683,7 @@ declare namespace EC2 {
|
|
|
22680
22683
|
*/
|
|
22681
22684
|
State?: InstanceMetadataOptionsState;
|
|
22682
22685
|
/**
|
|
22683
|
-
*
|
|
22686
|
+
* IMDSv2 uses token-backed sessions. Indicates whether the use of HTTP tokens is optional (in other words, indicates whether the use of IMDSv2 is optional) or required (in other words, indicates whether the use of IMDSv2 is required). optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
|
|
22684
22687
|
*/
|
|
22685
22688
|
HttpTokens?: HttpTokensState;
|
|
22686
22689
|
/**
|
|
@@ -23475,7 +23478,7 @@ declare namespace EC2 {
|
|
|
23475
23478
|
export type IpAddressType = "ipv4"|"dualstack"|"ipv6"|string;
|
|
23476
23479
|
export interface IpPermission {
|
|
23477
23480
|
/**
|
|
23478
|
-
*
|
|
23481
|
+
* If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
|
|
23479
23482
|
*/
|
|
23480
23483
|
FromPort?: Integer;
|
|
23481
23484
|
/**
|
|
@@ -23495,7 +23498,7 @@ declare namespace EC2 {
|
|
|
23495
23498
|
*/
|
|
23496
23499
|
PrefixListIds?: PrefixListIdList;
|
|
23497
23500
|
/**
|
|
23498
|
-
*
|
|
23501
|
+
* If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
|
|
23499
23502
|
*/
|
|
23500
23503
|
ToPort?: Integer;
|
|
23501
23504
|
/**
|
|
@@ -24484,7 +24487,7 @@ declare namespace EC2 {
|
|
|
24484
24487
|
*/
|
|
24485
24488
|
State?: LaunchTemplateInstanceMetadataOptionsState;
|
|
24486
24489
|
/**
|
|
24487
|
-
*
|
|
24490
|
+
* Indicates whether IMDSv2 is optional or required. optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
|
|
24488
24491
|
*/
|
|
24489
24492
|
HttpTokens?: LaunchTemplateHttpTokensState;
|
|
24490
24493
|
/**
|
|
@@ -24506,7 +24509,7 @@ declare namespace EC2 {
|
|
|
24506
24509
|
}
|
|
24507
24510
|
export interface LaunchTemplateInstanceMetadataOptionsRequest {
|
|
24508
24511
|
/**
|
|
24509
|
-
*
|
|
24512
|
+
* IMDSv2 uses token-backed sessions. Set the use of HTTP tokens to optional (in other words, set the use of IMDSv2 to optional) or required (in other words, set the use of IMDSv2 to required). optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
|
|
24510
24513
|
*/
|
|
24511
24514
|
HttpTokens?: LaunchTemplateHttpTokensState;
|
|
24512
24515
|
/**
|
|
@@ -26050,7 +26053,7 @@ declare namespace EC2 {
|
|
|
26050
26053
|
*/
|
|
26051
26054
|
InstanceId: InstanceId;
|
|
26052
26055
|
/**
|
|
26053
|
-
*
|
|
26056
|
+
* IMDSv2 uses token-backed sessions. Set the use of HTTP tokens to optional (in other words, set the use of IMDSv2 to optional) or required (in other words, set the use of IMDSv2 to required). optional - When IMDSv2 is optional, you can choose to retrieve instance metadata with or without a session token in your request. If you retrieve the IAM role credentials without a token, the IMDSv1 role credentials are returned. If you retrieve the IAM role credentials using a valid session token, the IMDSv2 role credentials are returned. required - When IMDSv2 is required, you must send a session token with any instance metadata retrieval requests. In this state, retrieving the IAM role credentials always returns IMDSv2 credentials; IMDSv1 credentials are not available. Default: optional
|
|
26054
26057
|
*/
|
|
26055
26058
|
HttpTokens?: HttpTokensState;
|
|
26056
26059
|
/**
|
|
@@ -27155,7 +27158,7 @@ declare namespace EC2 {
|
|
|
27155
27158
|
*/
|
|
27156
27159
|
ConnectionNotificationArn?: String;
|
|
27157
27160
|
/**
|
|
27158
|
-
*
|
|
27161
|
+
* The events for the endpoint. Valid values are Accept, Connect, Delete, and Reject.
|
|
27159
27162
|
*/
|
|
27160
27163
|
ConnectionEvents?: ValueStringList;
|
|
27161
27164
|
}
|
|
@@ -27183,27 +27186,27 @@ declare namespace EC2 {
|
|
|
27183
27186
|
*/
|
|
27184
27187
|
PolicyDocument?: String;
|
|
27185
27188
|
/**
|
|
27186
|
-
* (Gateway endpoint)
|
|
27189
|
+
* (Gateway endpoint) The IDs of the route tables to associate with the endpoint.
|
|
27187
27190
|
*/
|
|
27188
27191
|
AddRouteTableIds?: VpcEndpointRouteTableIdList;
|
|
27189
27192
|
/**
|
|
27190
|
-
* (Gateway endpoint)
|
|
27193
|
+
* (Gateway endpoint) The IDs of the route tables to disassociate from the endpoint.
|
|
27191
27194
|
*/
|
|
27192
27195
|
RemoveRouteTableIds?: VpcEndpointRouteTableIdList;
|
|
27193
27196
|
/**
|
|
27194
|
-
* (Interface and Gateway Load Balancer endpoints)
|
|
27197
|
+
* (Interface and Gateway Load Balancer endpoints) The IDs of the subnets in which to serve the endpoint. For a Gateway Load Balancer endpoint, you can specify only one subnet.
|
|
27195
27198
|
*/
|
|
27196
27199
|
AddSubnetIds?: VpcEndpointSubnetIdList;
|
|
27197
27200
|
/**
|
|
27198
|
-
* (Interface endpoint)
|
|
27201
|
+
* (Interface endpoint) The IDs of the subnets from which to remove the endpoint.
|
|
27199
27202
|
*/
|
|
27200
27203
|
RemoveSubnetIds?: VpcEndpointSubnetIdList;
|
|
27201
27204
|
/**
|
|
27202
|
-
* (Interface endpoint)
|
|
27205
|
+
* (Interface endpoint) The IDs of the security groups to associate with the network interface.
|
|
27203
27206
|
*/
|
|
27204
27207
|
AddSecurityGroupIds?: VpcEndpointSecurityGroupIdList;
|
|
27205
27208
|
/**
|
|
27206
|
-
* (Interface endpoint)
|
|
27209
|
+
* (Interface endpoint) The IDs of the security groups to disassociate from the network interface.
|
|
27207
27210
|
*/
|
|
27208
27211
|
RemoveSecurityGroupIds?: VpcEndpointSecurityGroupIdList;
|
|
27209
27212
|
/**
|
|
@@ -27307,11 +27310,11 @@ declare namespace EC2 {
|
|
|
27307
27310
|
*/
|
|
27308
27311
|
ServiceId: VpcEndpointServiceId;
|
|
27309
27312
|
/**
|
|
27310
|
-
* The Amazon Resource Names (ARN) of
|
|
27313
|
+
* The Amazon Resource Names (ARN) of the principals. Permissions are granted to the principals in this list. To grant permissions to all principals, specify an asterisk (*).
|
|
27311
27314
|
*/
|
|
27312
27315
|
AddAllowedPrincipals?: ValueStringList;
|
|
27313
27316
|
/**
|
|
27314
|
-
* The Amazon Resource Names (ARN) of
|
|
27317
|
+
* The Amazon Resource Names (ARN) of the principals. Permissions are revoked for principals in this list.
|
|
27315
27318
|
*/
|
|
27316
27319
|
RemoveAllowedPrincipals?: ValueStringList;
|
|
27317
27320
|
}
|
|
@@ -29727,7 +29730,7 @@ declare namespace EC2 {
|
|
|
29727
29730
|
*/
|
|
29728
29731
|
ServiceId: VpcEndpointServiceId;
|
|
29729
29732
|
/**
|
|
29730
|
-
* The IDs of
|
|
29733
|
+
* The IDs of the VPC endpoints.
|
|
29731
29734
|
*/
|
|
29732
29735
|
VpcEndpointIds: VpcEndpointIdList;
|
|
29733
29736
|
}
|
|
@@ -30236,7 +30239,7 @@ declare namespace EC2 {
|
|
|
30236
30239
|
*/
|
|
30237
30240
|
MaintenanceOptions?: LaunchTemplateInstanceMaintenanceOptionsRequest;
|
|
30238
30241
|
/**
|
|
30239
|
-
* Indicates whether to enable the instance for stop protection. For more information, see Stop
|
|
30242
|
+
* Indicates whether to enable the instance for stop protection. For more information, see Stop protection in the Amazon Elastic Compute Cloud User Guide.
|
|
30240
30243
|
*/
|
|
30241
30244
|
DisableApiStop?: Boolean;
|
|
30242
30245
|
}
|
|
@@ -31012,7 +31015,7 @@ declare namespace EC2 {
|
|
|
31012
31015
|
*/
|
|
31013
31016
|
MaintenanceOptions?: LaunchTemplateInstanceMaintenanceOptions;
|
|
31014
31017
|
/**
|
|
31015
|
-
* Indicates whether the instance is enabled for stop protection. For more information, see Stop
|
|
31018
|
+
* Indicates whether the instance is enabled for stop protection. For more information, see Stop protection in the Amazon Elastic Compute Cloud User Guide.
|
|
31016
31019
|
*/
|
|
31017
31020
|
DisableApiStop?: Boolean;
|
|
31018
31021
|
}
|
|
@@ -31253,7 +31256,7 @@ declare namespace EC2 {
|
|
|
31253
31256
|
*/
|
|
31254
31257
|
CidrIp?: String;
|
|
31255
31258
|
/**
|
|
31256
|
-
*
|
|
31259
|
+
* If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP, this is the type number. A value of -1 indicates all ICMP types.
|
|
31257
31260
|
*/
|
|
31258
31261
|
FromPort?: Integer;
|
|
31259
31262
|
/**
|
|
@@ -31281,7 +31284,7 @@ declare namespace EC2 {
|
|
|
31281
31284
|
*/
|
|
31282
31285
|
SourceSecurityGroupOwnerId?: String;
|
|
31283
31286
|
/**
|
|
31284
|
-
*
|
|
31287
|
+
* If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP, this is the code. A value of -1 indicates all ICMP codes.
|
|
31285
31288
|
*/
|
|
31286
31289
|
ToPort?: Integer;
|
|
31287
31290
|
/**
|
|
@@ -31508,7 +31511,7 @@ declare namespace EC2 {
|
|
|
31508
31511
|
*/
|
|
31509
31512
|
SecurityGroupIds?: SecurityGroupIdStringList;
|
|
31510
31513
|
/**
|
|
31511
|
-
* [EC2-Classic, default VPC] The names of the security groups.
|
|
31514
|
+
* [EC2-Classic, default VPC] The names of the security groups. If you specify a network interface, you must specify any security groups as part of the network interface. Default: Amazon EC2 uses the default security group.
|
|
31512
31515
|
*/
|
|
31513
31516
|
SecurityGroups?: SecurityGroupStringList;
|
|
31514
31517
|
/**
|
|
@@ -32218,11 +32221,11 @@ declare namespace EC2 {
|
|
|
32218
32221
|
*/
|
|
32219
32222
|
IpProtocol?: String;
|
|
32220
32223
|
/**
|
|
32221
|
-
*
|
|
32224
|
+
* If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
|
|
32222
32225
|
*/
|
|
32223
32226
|
FromPort?: Integer;
|
|
32224
32227
|
/**
|
|
32225
|
-
*
|
|
32228
|
+
* If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
|
|
32226
32229
|
*/
|
|
32227
32230
|
ToPort?: Integer;
|
|
32228
32231
|
/**
|
|
@@ -32270,11 +32273,11 @@ declare namespace EC2 {
|
|
|
32270
32273
|
*/
|
|
32271
32274
|
IpProtocol?: String;
|
|
32272
32275
|
/**
|
|
32273
|
-
*
|
|
32276
|
+
* If the protocol is TCP or UDP, this is the start of the port range. If the protocol is ICMP or ICMPv6, this is the type number. A value of -1 indicates all ICMP/ICMPv6 types. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
|
|
32274
32277
|
*/
|
|
32275
32278
|
FromPort?: Integer;
|
|
32276
32279
|
/**
|
|
32277
|
-
*
|
|
32280
|
+
* If the protocol is TCP or UDP, this is the end of the port range. If the protocol is ICMP or ICMPv6, this is the code. A value of -1 indicates all ICMP/ICMPv6 codes. If you specify all ICMP/ICMPv6 types, you must specify all ICMP/ICMPv6 codes.
|
|
32278
32281
|
*/
|
|
32279
32282
|
ToPort?: Integer;
|
|
32280
32283
|
/**
|
|
@@ -32380,7 +32383,7 @@ declare namespace EC2 {
|
|
|
32380
32383
|
*/
|
|
32381
32384
|
PayerResponsibility?: PayerResponsibility;
|
|
32382
32385
|
/**
|
|
32383
|
-
*
|
|
32386
|
+
* The tags assigned to the service.
|
|
32384
32387
|
*/
|
|
32385
32388
|
Tags?: TagList;
|
|
32386
32389
|
}
|
|
@@ -32436,7 +32439,7 @@ declare namespace EC2 {
|
|
|
32436
32439
|
*/
|
|
32437
32440
|
PayerResponsibility?: PayerResponsibility;
|
|
32438
32441
|
/**
|
|
32439
|
-
*
|
|
32442
|
+
* The tags assigned to the service.
|
|
32440
32443
|
*/
|
|
32441
32444
|
Tags?: TagList;
|
|
32442
32445
|
/**
|
|
@@ -33022,7 +33025,7 @@ declare namespace EC2 {
|
|
|
33022
33025
|
*/
|
|
33023
33026
|
Context?: String;
|
|
33024
33027
|
/**
|
|
33025
|
-
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
33028
|
+
* The unit for the target capacity. TargetCapacityUnitType can only be specified when InstanceRequirements is specified. Default: units (translates to number of instances)
|
|
33026
33029
|
*/
|
|
33027
33030
|
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
33028
33031
|
/**
|
|
@@ -33800,7 +33803,7 @@ declare namespace EC2 {
|
|
|
33800
33803
|
*/
|
|
33801
33804
|
DefaultTargetCapacityType?: DefaultTargetCapacityType;
|
|
33802
33805
|
/**
|
|
33803
|
-
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
33806
|
+
* The unit for the target capacity. TargetCapacityUnitType can only be specified when InstanceRequirements is specified. Default: units (translates to number of instances)
|
|
33804
33807
|
*/
|
|
33805
33808
|
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
33806
33809
|
}
|
|
@@ -33822,7 +33825,7 @@ declare namespace EC2 {
|
|
|
33822
33825
|
*/
|
|
33823
33826
|
DefaultTargetCapacityType?: DefaultTargetCapacityType;
|
|
33824
33827
|
/**
|
|
33825
|
-
* The unit for the target capacity. Default: units (translates to number of instances)
|
|
33828
|
+
* The unit for the target capacity. TargetCapacityUnitType can only be specified when InstanceRequirements is specified. Default: units (translates to number of instances)
|
|
33826
33829
|
*/
|
|
33827
33830
|
TargetCapacityUnitType?: TargetCapacityUnitType;
|
|
33828
33831
|
}
|
|
@@ -36441,7 +36444,7 @@ declare namespace EC2 {
|
|
|
36441
36444
|
*/
|
|
36442
36445
|
PolicyDocument?: String;
|
|
36443
36446
|
/**
|
|
36444
|
-
* (Gateway endpoint)
|
|
36447
|
+
* (Gateway endpoint) The IDs of the route tables associated with the endpoint.
|
|
36445
36448
|
*/
|
|
36446
36449
|
RouteTableIds?: ValueStringList;
|
|
36447
36450
|
/**
|
|
@@ -36469,7 +36472,7 @@ declare namespace EC2 {
|
|
|
36469
36472
|
*/
|
|
36470
36473
|
RequesterManaged?: Boolean;
|
|
36471
36474
|
/**
|
|
36472
|
-
* (Interface endpoint)
|
|
36475
|
+
* (Interface endpoint) The network interfaces for the endpoint.
|
|
36473
36476
|
*/
|
|
36474
36477
|
NetworkInterfaceIds?: ValueStringList;
|
|
36475
36478
|
/**
|
|
@@ -36481,7 +36484,7 @@ declare namespace EC2 {
|
|
|
36481
36484
|
*/
|
|
36482
36485
|
CreationTimestamp?: MillisecondDateTime;
|
|
36483
36486
|
/**
|
|
36484
|
-
*
|
|
36487
|
+
* The tags assigned to the endpoint.
|
|
36485
36488
|
*/
|
|
36486
36489
|
Tags?: TagList;
|
|
36487
36490
|
/**
|