aws-sdk 2.1437.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/CHANGELOG.md +8 -1
- package/README.md +1 -1
- package/apis/ec2-2016-11-15.min.json +675 -655
- package/clients/cloudwatch.d.ts +4 -4
- package/clients/ec2.d.ts +27 -4
- package/clients/gamelift.d.ts +91 -91
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +2 -2
- package/dist/aws-sdk.js +678 -658
- package/dist/aws-sdk.min.js +39 -39
- package/lib/core.js +1 -1
- package/package.json +1 -1
package/clients/cloudwatch.d.ts
CHANGED
@@ -735,7 +735,7 @@ declare namespace CloudWatch {
|
|
735
735
|
*/
|
736
736
|
AlarmNamePrefix?: AlarmNamePrefix;
|
737
737
|
/**
|
738
|
-
* Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter, only metric alarms are returned.
|
738
|
+
* Use this parameter to specify whether you want the operation to return metric alarms or composite alarms. If you omit this parameter, only metric alarms are returned, even if composite alarms exist in the account. For example, if you omit this parameter or specify MetricAlarms, the operation returns only a list of metric alarms. It does not return any composite alarms, even if composite alarms exist in the account. If you specify CompositeAlarms, the operation returns only a list of composite alarms, and does not return any metric alarms.
|
739
739
|
*/
|
740
740
|
AlarmTypes?: AlarmTypes;
|
741
741
|
/**
|
@@ -948,7 +948,7 @@ declare namespace CloudWatch {
|
|
948
948
|
*/
|
949
949
|
Metrics?: InsightRuleMetricList;
|
950
950
|
/**
|
951
|
-
* Determines what statistic to use to rank the contributors. Valid values are
|
951
|
+
* Determines what statistic to use to rank the contributors. Valid values are Sum and Maximum.
|
952
952
|
*/
|
953
953
|
OrderBy?: InsightRuleOrderBy;
|
954
954
|
}
|
@@ -1954,7 +1954,7 @@ declare namespace CloudWatch {
|
|
1954
1954
|
*/
|
1955
1955
|
Statistic?: Statistic;
|
1956
1956
|
/**
|
1957
|
-
* The
|
1957
|
+
* The extended statistic for the metric specified in MetricName. When you call PutMetricAlarm and specify a MetricName, you must specify either Statistic or ExtendedStatistic but not both. If you specify ExtendedStatistic, the following are valid values: p90 tm90 tc90 ts90 wm90 IQM PR(n:m) where n and m are values of the metric TC(X%:X%) where X is between 10 and 90 inclusive. TM(X%:X%) where X is between 10 and 90 inclusive. TS(X%:X%) where X is between 10 and 90 inclusive. WM(X%:X%) where X is between 10 and 90 inclusive. For more information about these extended statistics, see CloudWatch statistics definitions.
|
1958
1958
|
*/
|
1959
1959
|
ExtendedStatistic?: ExtendedStatistic;
|
1960
1960
|
/**
|
@@ -1998,7 +1998,7 @@ declare namespace CloudWatch {
|
|
1998
1998
|
*/
|
1999
1999
|
Metrics?: MetricDataQueries;
|
2000
2000
|
/**
|
2001
|
-
* A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. If you are using this operation to update an existing alarm, any tags you specify in this parameter are ignored. To change the tags of an existing alarm, use TagResource or UntagResource.
|
2001
|
+
* A list of key-value pairs to associate with the alarm. You can associate as many as 50 tags with an alarm. To be able to associate tags with the alarm when you create the alarm, you must have the cloudwatch:TagResource permission. Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values. If you are using this operation to update an existing alarm, any tags you specify in this parameter are ignored. To change the tags of an existing alarm, use TagResource or UntagResource.
|
2002
2002
|
*/
|
2003
2003
|
Tags?: TagList;
|
2004
2004
|
/**
|
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
|
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
|
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
|
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
|
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 {
|