aws-sdk 2.1461.0 → 2.1463.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 +18 -1
- package/README.md +1 -1
- package/apis/appconfig-2019-10-09.min.json +4 -2
- package/apis/appconfig-2019-10-09.paginators.json +16 -8
- package/apis/apprunner-2020-05-15.min.json +141 -72
- package/apis/apprunner-2020-05-15.paginators.json +5 -0
- package/apis/braket-2019-09-01.min.json +64 -12
- package/apis/dms-2016-01-01.examples.json +968 -0
- package/apis/dms-2016-01-01.min.json +305 -257
- package/apis/events-2015-10-07.min.json +59 -34
- package/apis/logs-2014-03-28.min.json +4 -1
- package/apis/mediaconvert-2017-08-29.min.json +169 -161
- package/apis/s3-2006-03-01.examples.json +120 -120
- package/apis/s3-2006-03-01.min.json +4 -4
- package/apis/servicediscovery-2017-03-14.min.json +37 -10
- package/clients/appconfig.d.ts +13 -5
- package/clients/apprunner.d.ts +96 -8
- package/clients/braket.d.ts +73 -0
- package/clients/cloudwatchevents.d.ts +13 -9
- package/clients/cloudwatchlogs.d.ts +11 -6
- package/clients/codeartifact.d.ts +1 -1
- package/clients/dms.d.ts +117 -19
- package/clients/ec2.d.ts +1 -1
- package/clients/efs.d.ts +10 -10
- package/clients/guardduty.d.ts +14 -14
- package/clients/kinesisvideo.d.ts +7 -7
- package/clients/mediaconvert.d.ts +15 -5
- package/clients/s3.d.ts +24 -24
- package/clients/servicediscovery.d.ts +34 -5
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +12 -12
- package/dist/aws-sdk.js +70 -42
- package/dist/aws-sdk.min.js +54 -54
- package/lib/core.js +1 -1
- package/package.json +1 -1
@@ -68,13 +68,21 @@ declare class ServiceDiscovery extends Service {
|
|
68
68
|
*/
|
69
69
|
deregisterInstance(callback?: (err: AWSError, data: ServiceDiscovery.Types.DeregisterInstanceResponse) => void): Request<ServiceDiscovery.Types.DeregisterInstanceResponse, AWSError>;
|
70
70
|
/**
|
71
|
-
* Discovers registered instances for a specified namespace and service. You can use DiscoverInstances to discover instances for any type of namespace. For public and private DNS namespaces, you can also use DNS queries to discover instances.
|
71
|
+
* Discovers registered instances for a specified namespace and service. You can use DiscoverInstances to discover instances for any type of namespace. DiscoverInstances returns a randomized list of instances allowing customers to distribute traffic evenly across instances. For public and private DNS namespaces, you can also use DNS queries to discover instances.
|
72
72
|
*/
|
73
73
|
discoverInstances(params: ServiceDiscovery.Types.DiscoverInstancesRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.DiscoverInstancesResponse) => void): Request<ServiceDiscovery.Types.DiscoverInstancesResponse, AWSError>;
|
74
74
|
/**
|
75
|
-
* Discovers registered instances for a specified namespace and service. You can use DiscoverInstances to discover instances for any type of namespace. For public and private DNS namespaces, you can also use DNS queries to discover instances.
|
75
|
+
* Discovers registered instances for a specified namespace and service. You can use DiscoverInstances to discover instances for any type of namespace. DiscoverInstances returns a randomized list of instances allowing customers to distribute traffic evenly across instances. For public and private DNS namespaces, you can also use DNS queries to discover instances.
|
76
76
|
*/
|
77
77
|
discoverInstances(callback?: (err: AWSError, data: ServiceDiscovery.Types.DiscoverInstancesResponse) => void): Request<ServiceDiscovery.Types.DiscoverInstancesResponse, AWSError>;
|
78
|
+
/**
|
79
|
+
* Discovers the increasing revision associated with an instance.
|
80
|
+
*/
|
81
|
+
discoverInstancesRevision(params: ServiceDiscovery.Types.DiscoverInstancesRevisionRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.DiscoverInstancesRevisionResponse) => void): Request<ServiceDiscovery.Types.DiscoverInstancesRevisionResponse, AWSError>;
|
82
|
+
/**
|
83
|
+
* Discovers the increasing revision associated with an instance.
|
84
|
+
*/
|
85
|
+
discoverInstancesRevision(callback?: (err: AWSError, data: ServiceDiscovery.Types.DiscoverInstancesRevisionResponse) => void): Request<ServiceDiscovery.Types.DiscoverInstancesRevisionResponse, AWSError>;
|
78
86
|
/**
|
79
87
|
* Gets information about a specified instance.
|
80
88
|
*/
|
@@ -100,11 +108,11 @@ declare class ServiceDiscovery extends Service {
|
|
100
108
|
*/
|
101
109
|
getNamespace(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetNamespaceResponse) => void): Request<ServiceDiscovery.Types.GetNamespaceResponse, AWSError>;
|
102
110
|
/**
|
103
|
-
* Gets information about any operation that returns an operation ID in the response, such as a
|
111
|
+
* Gets information about any operation that returns an operation ID in the response, such as a CreateHttpNamespace request. To get a list of operations that match specified criteria, see ListOperations.
|
104
112
|
*/
|
105
113
|
getOperation(params: ServiceDiscovery.Types.GetOperationRequest, callback?: (err: AWSError, data: ServiceDiscovery.Types.GetOperationResponse) => void): Request<ServiceDiscovery.Types.GetOperationResponse, AWSError>;
|
106
114
|
/**
|
107
|
-
* Gets information about any operation that returns an operation ID in the response, such as a
|
115
|
+
* Gets information about any operation that returns an operation ID in the response, such as a CreateHttpNamespace request. To get a list of operations that match specified criteria, see ListOperations.
|
108
116
|
*/
|
109
117
|
getOperation(callback?: (err: AWSError, data: ServiceDiscovery.Types.GetOperationResponse) => void): Request<ServiceDiscovery.Types.GetOperationResponse, AWSError>;
|
110
118
|
/**
|
@@ -423,6 +431,26 @@ declare namespace ServiceDiscovery {
|
|
423
431
|
* A complex type that contains one HttpInstanceSummary for each registered instance.
|
424
432
|
*/
|
425
433
|
Instances?: HttpInstanceSummaryList;
|
434
|
+
/**
|
435
|
+
* The increasing revision associated to the response Instances list. If a new instance is registered or deregistered, the InstancesRevision updates. The health status updates don't update InstancesRevision.
|
436
|
+
*/
|
437
|
+
InstancesRevision?: Revision;
|
438
|
+
}
|
439
|
+
export interface DiscoverInstancesRevisionRequest {
|
440
|
+
/**
|
441
|
+
* The HttpName name of the namespace. It's found in the HttpProperties member of the Properties member of the namespace.
|
442
|
+
*/
|
443
|
+
NamespaceName: NamespaceName;
|
444
|
+
/**
|
445
|
+
* The name of the service that you specified when you registered the instance.
|
446
|
+
*/
|
447
|
+
ServiceName: ServiceName;
|
448
|
+
}
|
449
|
+
export interface DiscoverInstancesRevisionResponse {
|
450
|
+
/**
|
451
|
+
* The increasing revision associated to the response Instances list. If a new instance is registered or deregistered, the InstancesRevision updates. The health status updates don't update InstancesRevision.
|
452
|
+
*/
|
453
|
+
InstancesRevision?: Revision;
|
426
454
|
}
|
427
455
|
export type DiscoverMaxResults = number;
|
428
456
|
export interface DnsConfig {
|
@@ -1001,7 +1029,7 @@ declare namespace ServiceDiscovery {
|
|
1001
1029
|
*/
|
1002
1030
|
CreatorRequestId?: ResourceId;
|
1003
1031
|
/**
|
1004
|
-
* A string map that contains the following information for the service that you specify in ServiceId: The attributes that apply to the records that are defined in the service. For each attribute, the applicable value. Do not include sensitive information in the attributes if the namespace is discoverable by public DNS queries. Supported attribute keys include the following: AWS_ALIAS_DNS_NAME If you want Cloud Map to create an Amazon Route 53 alias record that routes traffic to an Elastic Load Balancing load balancer, specify the DNS name that's associated with the load balancer. For information about how to get the DNS name, see "DNSName" in the topic AliasTarget in the Route 53 API Reference. Note the following: The configuration for the service that's specified by ServiceId must include settings for an A record, an AAAA record, or both. In the service that's specified by ServiceId, the value of RoutingPolicy must be WEIGHTED. If the service that's specified by ServiceId includes HealthCheckConfig settings, Cloud Map will create the Route 53 health check, but it doesn't associate the health check with the alias record.
|
1032
|
+
* A string map that contains the following information for the service that you specify in ServiceId: The attributes that apply to the records that are defined in the service. For each attribute, the applicable value. Do not include sensitive information in the attributes if the namespace is discoverable by public DNS queries. Supported attribute keys include the following: AWS_ALIAS_DNS_NAME If you want Cloud Map to create an Amazon Route 53 alias record that routes traffic to an Elastic Load Balancing load balancer, specify the DNS name that's associated with the load balancer. For information about how to get the DNS name, see "DNSName" in the topic AliasTarget in the Route 53 API Reference. Note the following: The configuration for the service that's specified by ServiceId must include settings for an A record, an AAAA record, or both. In the service that's specified by ServiceId, the value of RoutingPolicy must be WEIGHTED. If the service that's specified by ServiceId includes HealthCheckConfig settings, Cloud Map will create the Route 53 health check, but it doesn't associate the health check with the alias record. Cloud Map currently doesn't support creating alias records that route traffic to Amazon Web Services resources other than Elastic Load Balancing load balancers. If you specify a value for AWS_ALIAS_DNS_NAME, don't specify values for any of the AWS_INSTANCE attributes. AWS_EC2_INSTANCE_ID HTTP namespaces only. The Amazon EC2 instance ID for the instance. If the AWS_EC2_INSTANCE_ID attribute is specified, then the only other attribute that can be specified is AWS_INIT_HEALTH_STATUS. When the AWS_EC2_INSTANCE_ID attribute is specified, then the AWS_INSTANCE_IPV4 attribute will be filled out with the primary private IPv4 address. AWS_INIT_HEALTH_STATUS If the service configuration includes HealthCheckCustomConfig, you can optionally use AWS_INIT_HEALTH_STATUS to specify the initial status of the custom health check, HEALTHY or UNHEALTHY. If you don't specify a value for AWS_INIT_HEALTH_STATUS, the initial status is HEALTHY. AWS_INSTANCE_CNAME If the service configuration includes a CNAME record, the domain name that you want Route 53 to return in response to DNS queries (for example, example.com). This value is required if the service specified by ServiceId includes settings for an CNAME record. AWS_INSTANCE_IPV4 If the service configuration includes an A record, the IPv4 address that you want Route 53 to return in response to DNS queries (for example, 192.0.2.44). This value is required if the service specified by ServiceId includes settings for an A record. If the service includes settings for an SRV record, you must specify a value for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both. AWS_INSTANCE_IPV6 If the service configuration includes an AAAA record, the IPv6 address that you want Route 53 to return in response to DNS queries (for example, 2001:0db8:85a3:0000:0000:abcd:0001:2345). This value is required if the service specified by ServiceId includes settings for an AAAA record. If the service includes settings for an SRV record, you must specify a value for AWS_INSTANCE_IPV4, AWS_INSTANCE_IPV6, or both. AWS_INSTANCE_PORT If the service includes an SRV record, the value that you want Route 53 to return for the port. If the service includes HealthCheckConfig, the port on the endpoint that you want Route 53 to send requests to. This value is required if you specified settings for an SRV record or a Route 53 health check when you created the service. Custom attributes You can add up to 30 custom attributes. For each key-value pair, the maximum length of the attribute name is 255 characters, and the maximum length of the attribute value is 1,024 characters. The total size of all provided attributes (sum of all keys and values) must not exceed 5,000 characters.
|
1005
1033
|
*/
|
1006
1034
|
Attributes: Attributes;
|
1007
1035
|
}
|
@@ -1015,6 +1043,7 @@ declare namespace ServiceDiscovery {
|
|
1015
1043
|
export type ResourceDescription = string;
|
1016
1044
|
export type ResourceId = string;
|
1017
1045
|
export type ResourcePath = string;
|
1046
|
+
export type Revision = number;
|
1018
1047
|
export type RoutingPolicy = "MULTIVALUE"|"WEIGHTED"|string;
|
1019
1048
|
export interface SOA {
|
1020
1049
|
/**
|