aws-sdk 2.776.0 → 2.780.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 +17 -1
- package/README.md +1 -1
- package/apis/appflow-2020-08-23.min.json +63 -40
- package/apis/glue-2017-03-31.min.json +136 -111
- package/apis/kendra-2019-02-03.min.json +131 -26
- package/apis/mediatailor-2018-04-23.min.json +32 -7
- package/apis/neptune-2014-10-31.min.json +240 -74
- package/apis/neptune-2014-10-31.paginators.json +6 -0
- package/apis/quicksight-2018-04-01.min.json +112 -105
- package/apis/sagemaker-2017-07-24.min.json +913 -439
- package/apis/sagemaker-2017-07-24.paginators.json +12 -0
- package/apis/sns-2010-03-31.min.json +5 -2
- package/clients/accessanalyzer.d.ts +4 -4
- package/clients/appflow.d.ts +48 -9
- package/clients/glue.d.ts +86 -53
- package/clients/kendra.d.ts +158 -1
- package/clients/macie2.d.ts +15 -15
- package/clients/mediatailor.d.ts +26 -0
- package/clients/neptune.d.ts +299 -3
- package/clients/quicksight.d.ts +19 -4
- package/clients/sagemaker.d.ts +723 -30
- package/clients/servicecatalog.d.ts +1 -1
- package/clients/sns.d.ts +18 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +11 -11
- package/dist/aws-sdk.js +8 -5
- package/dist/aws-sdk.min.js +12 -12
- package/lib/core.js +1 -1
- package/package.json +1 -1
|
@@ -4029,7 +4029,7 @@ declare namespace ServiceCatalog {
|
|
|
4029
4029
|
*/
|
|
4030
4030
|
ProvisionedProductId: Id;
|
|
4031
4031
|
/**
|
|
4032
|
-
* A map that contains the provisioned product properties to be updated. The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role
|
|
4032
|
+
* A map that contains the provisioned product properties to be updated. The LAUNCH_ROLE key accepts user ARNs and role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end-user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only an ARN role is valid. A user ARN is invalid. The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product. The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory. If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.
|
|
4033
4033
|
*/
|
|
4034
4034
|
ProvisionedProductProperties: ProvisionedProductProperties;
|
|
4035
4035
|
/**
|
package/clients/sns.d.ts
CHANGED
|
@@ -52,11 +52,11 @@ declare class SNS extends Service {
|
|
|
52
52
|
*/
|
|
53
53
|
createPlatformEndpoint(callback?: (err: AWSError, data: SNS.Types.CreateEndpointResponse) => void): Request<SNS.Types.CreateEndpointResponse, AWSError>;
|
|
54
54
|
/**
|
|
55
|
-
* Creates a topic to which notifications can be published. Users can create at most 100,000 topics. For more information, see https://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.
|
|
55
|
+
* Creates a topic to which notifications can be published. Users can create at most 100,000 standard topics (at most 1,000 FIFO topics). For more information, see https://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.
|
|
56
56
|
*/
|
|
57
57
|
createTopic(params: SNS.Types.CreateTopicInput, callback?: (err: AWSError, data: SNS.Types.CreateTopicResponse) => void): Request<SNS.Types.CreateTopicResponse, AWSError>;
|
|
58
58
|
/**
|
|
59
|
-
* Creates a topic to which notifications can be published. Users can create at most 100,000 topics. For more information, see https://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.
|
|
59
|
+
* Creates a topic to which notifications can be published. Users can create at most 100,000 standard topics (at most 1,000 FIFO topics). For more information, see https://aws.amazon.com/sns. This action is idempotent, so if the requester already owns a topic with the specified name, that topic's ARN is returned without creating a new topic.
|
|
60
60
|
*/
|
|
61
61
|
createTopic(callback?: (err: AWSError, data: SNS.Types.CreateTopicResponse) => void): Request<SNS.Types.CreateTopicResponse, AWSError>;
|
|
62
62
|
/**
|
|
@@ -376,11 +376,11 @@ declare namespace SNS {
|
|
|
376
376
|
}
|
|
377
377
|
export interface CreateTopicInput {
|
|
378
378
|
/**
|
|
379
|
-
* The name of the topic you want to create. Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long.
|
|
379
|
+
* The name of the topic you want to create. Constraints: Topic names must be made up of only uppercase and lowercase ASCII letters, numbers, underscores, and hyphens, and must be between 1 and 256 characters long. For a FIFO (first-in-first-out) topic, the name must end with the .fifo suffix.
|
|
380
380
|
*/
|
|
381
381
|
Name: topicName;
|
|
382
382
|
/**
|
|
383
|
-
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. The following attribute applies only to server-side-encryption: KmsMasterKeyId
|
|
383
|
+
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the CreateTopic action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. FifoTopic – Set to true to create a FIFO topic. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. The following attribute applies only to server-side-encryption: KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference. The following attribute applies only to FIFO topics: ContentBasedDeduplication – Enables content-based deduplication. Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). When ContentBasedDeduplication is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered. If the queue has ContentBasedDeduplication set, your MessageDeduplicationId overrides the generated one.
|
|
384
384
|
*/
|
|
385
385
|
Attributes?: TopicAttributesMap;
|
|
386
386
|
/**
|
|
@@ -667,12 +667,24 @@ declare namespace SNS {
|
|
|
667
667
|
* Message attributes for Publish action.
|
|
668
668
|
*/
|
|
669
669
|
MessageAttributes?: MessageAttributeMap;
|
|
670
|
+
/**
|
|
671
|
+
* This parameter applies only to FIFO (first-in-first-out) topics. The MessageDeduplicationId can contain up to 128 alphanumeric characters (a-z, A-Z, 0-9) and punctuation (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~). Every message must have a unique MessageDeduplicationId, which is a token used for deduplication of sent messages. If a message with a particular MessageDeduplicationId is sent successfully, any message sent with the same MessageDeduplicationId during the 5-minute deduplication interval is treated as a duplicate. If the topic has ContentBasedDeduplication set, the system generates a MessageDeduplicationId based on the contents of the message. Your MessageDeduplicationId overrides the generated one.
|
|
672
|
+
*/
|
|
673
|
+
MessageDeduplicationId?: String;
|
|
674
|
+
/**
|
|
675
|
+
* This parameter applies only to FIFO (first-in-first-out) topics. The MessageGroupId can contain up to 128 alphanumeric characters (a-z, A-Z, 0-9) and punctuation (!"#$%&'()*+,-./:;<=>?@[\]^_`{|}~). The MessageGroupId is a tag that specifies that a message belongs to a specific message group. Messages that belong to the same message group are processed in a FIFO manner (however, messages in different message groups might be processed out of order). Every message must include a MessageGroupId.
|
|
676
|
+
*/
|
|
677
|
+
MessageGroupId?: String;
|
|
670
678
|
}
|
|
671
679
|
export interface PublishResponse {
|
|
672
680
|
/**
|
|
673
681
|
* Unique identifier assigned to the published message. Length Constraint: Maximum 100 characters
|
|
674
682
|
*/
|
|
675
683
|
MessageId?: messageId;
|
|
684
|
+
/**
|
|
685
|
+
* This response element applies only to FIFO (first-in-first-out) topics. The sequence number is a large, non-consecutive number that Amazon SNS assigns to each message. The length of SequenceNumber is 128 bits. SequenceNumber continues to increase for each MessageGroupId.
|
|
686
|
+
*/
|
|
687
|
+
SequenceNumber?: String;
|
|
676
688
|
}
|
|
677
689
|
export interface RemovePermissionInput {
|
|
678
690
|
/**
|
|
@@ -732,7 +744,7 @@ declare namespace SNS {
|
|
|
732
744
|
*/
|
|
733
745
|
TopicArn: topicARN;
|
|
734
746
|
/**
|
|
735
|
-
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. The following attribute applies only to server-side-encryption: KmsMasterKeyId
|
|
747
|
+
* A map of attributes with their corresponding values. The following lists the names, descriptions, and values of the special request parameters that the SetTopicAttributes action uses: DeliveryPolicy – The policy that defines how Amazon SNS retries failed deliveries to HTTP/S endpoints. DisplayName – The display name to use for a topic with SMS subscriptions. Policy – The policy that defines who can access your topic. By default, only the topic owner can publish or subscribe to the topic. The following attribute applies only to server-side-encryption: KmsMasterKeyId – The ID of an AWS-managed customer master key (CMK) for Amazon SNS or a custom CMK. For more information, see Key Terms. For more examples, see KeyId in the AWS Key Management Service API Reference. The following attribute applies only to FIFO topics: ContentBasedDeduplication – Enables content-based deduplication. Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). When ContentBasedDeduplication is in effect, messages with identical content sent within the deduplication interval are treated as duplicates and only one copy of the message is delivered. If the queue has ContentBasedDeduplication set, your MessageDeduplicationId overrides the generated one.
|
|
736
748
|
*/
|
|
737
749
|
AttributeName: attributeName;
|
|
738
750
|
/**
|
|
@@ -759,7 +771,7 @@ declare namespace SNS {
|
|
|
759
771
|
*/
|
|
760
772
|
Attributes?: SubscriptionAttributesMap;
|
|
761
773
|
/**
|
|
762
|
-
* Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed.
|
|
774
|
+
* Sets whether the response from the Subscribe request includes the subscription ARN, even if the subscription is not yet confirmed. If you set this parameter to true, the response includes the ARN in all cases, even if the subscription is not yet confirmed. In addition to the ARN for confirmed subscriptions, the response also includes the pending subscription ARN value for subscriptions that aren't yet confirmed. A subscription becomes confirmed when the subscriber calls the ConfirmSubscription action with a confirmation token. The default value is false.
|
|
763
775
|
*/
|
|
764
776
|
ReturnSubscriptionArn?: boolean;
|
|
765
777
|
}
|