aws-sdk 2.782.0 → 2.783.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 +10 -1
- package/README.md +1 -1
- package/apis/braket-2019-09-01.min.json +105 -7
- package/apis/dms-2016-01-01.min.json +103 -72
- package/apis/imagebuilder-2019-12-02.min.json +12 -12
- package/apis/macie2-2020-01-01.min.json +4 -0
- package/apis/medialive-2017-10-14.min.json +207 -172
- package/clients/braket.d.ts +100 -26
- package/clients/dms.d.ts +45 -1
- package/clients/elasticache.d.ts +22 -22
- package/clients/imagebuilder.d.ts +21 -20
- package/clients/macie2.d.ts +4 -0
- package/clients/medialive.d.ts +42 -0
- package/clients/sns.d.ts +6 -6
- package/dist/aws-sdk-core-react-native.js +1 -1
- package/dist/aws-sdk-react-native.js +6 -6
- package/dist/aws-sdk.js +3 -3
- package/dist/aws-sdk.min.js +2 -2
- package/lib/core.js +1 -1
- package/lib/credentials/credential_provider_chain.d.ts +2 -2
- package/lib/error.d.ts +14 -10
- package/package.json +1 -1
|
@@ -365,7 +365,7 @@ declare namespace Imagebuilder {
|
|
|
365
365
|
*/
|
|
366
366
|
name?: NonEmptyString;
|
|
367
367
|
/**
|
|
368
|
-
* The description of the EC2 AMI.
|
|
368
|
+
* The description of the EC2 AMI. Minimum and maximum length are in characters.
|
|
369
369
|
*/
|
|
370
370
|
description?: NonEmptyString;
|
|
371
371
|
state?: ImageState;
|
|
@@ -380,7 +380,7 @@ declare namespace Imagebuilder {
|
|
|
380
380
|
*/
|
|
381
381
|
name?: AmiNameString;
|
|
382
382
|
/**
|
|
383
|
-
* The description of the distribution configuration.
|
|
383
|
+
* The description of the distribution configuration. Minimum and maximum length are in characters.
|
|
384
384
|
*/
|
|
385
385
|
description?: NonEmptyString;
|
|
386
386
|
/**
|
|
@@ -1792,7 +1792,7 @@ declare namespace Imagebuilder {
|
|
|
1792
1792
|
/**
|
|
1793
1793
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1794
1794
|
*/
|
|
1795
|
-
nextToken?:
|
|
1795
|
+
nextToken?: PaginationToken;
|
|
1796
1796
|
}
|
|
1797
1797
|
export interface ListComponentBuildVersionsResponse {
|
|
1798
1798
|
/**
|
|
@@ -1806,7 +1806,7 @@ declare namespace Imagebuilder {
|
|
|
1806
1806
|
/**
|
|
1807
1807
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1808
1808
|
*/
|
|
1809
|
-
nextToken?:
|
|
1809
|
+
nextToken?: PaginationToken;
|
|
1810
1810
|
}
|
|
1811
1811
|
export interface ListComponentsRequest {
|
|
1812
1812
|
/**
|
|
@@ -1824,7 +1824,7 @@ declare namespace Imagebuilder {
|
|
|
1824
1824
|
/**
|
|
1825
1825
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1826
1826
|
*/
|
|
1827
|
-
nextToken?:
|
|
1827
|
+
nextToken?: PaginationToken;
|
|
1828
1828
|
}
|
|
1829
1829
|
export interface ListComponentsResponse {
|
|
1830
1830
|
/**
|
|
@@ -1838,7 +1838,7 @@ declare namespace Imagebuilder {
|
|
|
1838
1838
|
/**
|
|
1839
1839
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1840
1840
|
*/
|
|
1841
|
-
nextToken?:
|
|
1841
|
+
nextToken?: PaginationToken;
|
|
1842
1842
|
}
|
|
1843
1843
|
export interface ListDistributionConfigurationsRequest {
|
|
1844
1844
|
/**
|
|
@@ -1852,7 +1852,7 @@ declare namespace Imagebuilder {
|
|
|
1852
1852
|
/**
|
|
1853
1853
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1854
1854
|
*/
|
|
1855
|
-
nextToken?:
|
|
1855
|
+
nextToken?: PaginationToken;
|
|
1856
1856
|
}
|
|
1857
1857
|
export interface ListDistributionConfigurationsResponse {
|
|
1858
1858
|
/**
|
|
@@ -1866,7 +1866,7 @@ declare namespace Imagebuilder {
|
|
|
1866
1866
|
/**
|
|
1867
1867
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1868
1868
|
*/
|
|
1869
|
-
nextToken?:
|
|
1869
|
+
nextToken?: PaginationToken;
|
|
1870
1870
|
}
|
|
1871
1871
|
export interface ListImageBuildVersionsRequest {
|
|
1872
1872
|
/**
|
|
@@ -1884,7 +1884,7 @@ declare namespace Imagebuilder {
|
|
|
1884
1884
|
/**
|
|
1885
1885
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1886
1886
|
*/
|
|
1887
|
-
nextToken?:
|
|
1887
|
+
nextToken?: PaginationToken;
|
|
1888
1888
|
}
|
|
1889
1889
|
export interface ListImageBuildVersionsResponse {
|
|
1890
1890
|
/**
|
|
@@ -1898,7 +1898,7 @@ declare namespace Imagebuilder {
|
|
|
1898
1898
|
/**
|
|
1899
1899
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1900
1900
|
*/
|
|
1901
|
-
nextToken?:
|
|
1901
|
+
nextToken?: PaginationToken;
|
|
1902
1902
|
}
|
|
1903
1903
|
export interface ListImagePipelineImagesRequest {
|
|
1904
1904
|
/**
|
|
@@ -1916,7 +1916,7 @@ declare namespace Imagebuilder {
|
|
|
1916
1916
|
/**
|
|
1917
1917
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1918
1918
|
*/
|
|
1919
|
-
nextToken?:
|
|
1919
|
+
nextToken?: PaginationToken;
|
|
1920
1920
|
}
|
|
1921
1921
|
export interface ListImagePipelineImagesResponse {
|
|
1922
1922
|
/**
|
|
@@ -1930,7 +1930,7 @@ declare namespace Imagebuilder {
|
|
|
1930
1930
|
/**
|
|
1931
1931
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1932
1932
|
*/
|
|
1933
|
-
nextToken?:
|
|
1933
|
+
nextToken?: PaginationToken;
|
|
1934
1934
|
}
|
|
1935
1935
|
export interface ListImagePipelinesRequest {
|
|
1936
1936
|
/**
|
|
@@ -1944,7 +1944,7 @@ declare namespace Imagebuilder {
|
|
|
1944
1944
|
/**
|
|
1945
1945
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1946
1946
|
*/
|
|
1947
|
-
nextToken?:
|
|
1947
|
+
nextToken?: PaginationToken;
|
|
1948
1948
|
}
|
|
1949
1949
|
export interface ListImagePipelinesResponse {
|
|
1950
1950
|
/**
|
|
@@ -1958,7 +1958,7 @@ declare namespace Imagebuilder {
|
|
|
1958
1958
|
/**
|
|
1959
1959
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1960
1960
|
*/
|
|
1961
|
-
nextToken?:
|
|
1961
|
+
nextToken?: PaginationToken;
|
|
1962
1962
|
}
|
|
1963
1963
|
export interface ListImageRecipesRequest {
|
|
1964
1964
|
/**
|
|
@@ -1976,7 +1976,7 @@ declare namespace Imagebuilder {
|
|
|
1976
1976
|
/**
|
|
1977
1977
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
1978
1978
|
*/
|
|
1979
|
-
nextToken?:
|
|
1979
|
+
nextToken?: PaginationToken;
|
|
1980
1980
|
}
|
|
1981
1981
|
export interface ListImageRecipesResponse {
|
|
1982
1982
|
/**
|
|
@@ -1990,7 +1990,7 @@ declare namespace Imagebuilder {
|
|
|
1990
1990
|
/**
|
|
1991
1991
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
1992
1992
|
*/
|
|
1993
|
-
nextToken?:
|
|
1993
|
+
nextToken?: PaginationToken;
|
|
1994
1994
|
}
|
|
1995
1995
|
export interface ListImagesRequest {
|
|
1996
1996
|
/**
|
|
@@ -2008,7 +2008,7 @@ declare namespace Imagebuilder {
|
|
|
2008
2008
|
/**
|
|
2009
2009
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
2010
2010
|
*/
|
|
2011
|
-
nextToken?:
|
|
2011
|
+
nextToken?: PaginationToken;
|
|
2012
2012
|
}
|
|
2013
2013
|
export interface ListImagesResponse {
|
|
2014
2014
|
/**
|
|
@@ -2022,7 +2022,7 @@ declare namespace Imagebuilder {
|
|
|
2022
2022
|
/**
|
|
2023
2023
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
2024
2024
|
*/
|
|
2025
|
-
nextToken?:
|
|
2025
|
+
nextToken?: PaginationToken;
|
|
2026
2026
|
}
|
|
2027
2027
|
export interface ListInfrastructureConfigurationsRequest {
|
|
2028
2028
|
/**
|
|
@@ -2036,7 +2036,7 @@ declare namespace Imagebuilder {
|
|
|
2036
2036
|
/**
|
|
2037
2037
|
* A token to specify where to start paginating. This is the NextToken from a previously truncated response.
|
|
2038
2038
|
*/
|
|
2039
|
-
nextToken?:
|
|
2039
|
+
nextToken?: PaginationToken;
|
|
2040
2040
|
}
|
|
2041
2041
|
export interface ListInfrastructureConfigurationsResponse {
|
|
2042
2042
|
/**
|
|
@@ -2050,7 +2050,7 @@ declare namespace Imagebuilder {
|
|
|
2050
2050
|
/**
|
|
2051
2051
|
* The next token used for paginated responses. When this is not empty, there are additional elements that the service has not included in this request. Use this token with the next request to retrieve additional objects.
|
|
2052
2052
|
*/
|
|
2053
|
-
nextToken?:
|
|
2053
|
+
nextToken?: PaginationToken;
|
|
2054
2054
|
}
|
|
2055
2055
|
export interface ListTagsForResourceRequest {
|
|
2056
2056
|
/**
|
|
@@ -2081,6 +2081,7 @@ declare namespace Imagebuilder {
|
|
|
2081
2081
|
amis?: AmiList;
|
|
2082
2082
|
}
|
|
2083
2083
|
export type Ownership = "Self"|"Shared"|"Amazon"|string;
|
|
2084
|
+
export type PaginationToken = string;
|
|
2084
2085
|
export type PipelineExecutionStartCondition = "EXPRESSION_MATCH_ONLY"|"EXPRESSION_MATCH_AND_DEPENDENCY_UPDATES_AVAILABLE"|string;
|
|
2085
2086
|
export type PipelineStatus = "DISABLED"|"ENABLED"|string;
|
|
2086
2087
|
export type Platform = "Windows"|"Linux"|string;
|
package/clients/macie2.d.ts
CHANGED
|
@@ -1060,6 +1060,10 @@ declare namespace Macie2 {
|
|
|
1060
1060
|
* An equal to condition to apply to a specified property value for findings.
|
|
1061
1061
|
*/
|
|
1062
1062
|
eq?: __listOf__string;
|
|
1063
|
+
/**
|
|
1064
|
+
* A condition that requires an array field on a finding to exactly match the specified property values. You can use this operator with the following properties:customDataIdentifiers.detections.arncustomDataIdentifiers.detections.nameresourcesAffected.s3Bucket.tags.keyresourcesAffected.s3Bucket.tags.valueresourcesAffected.s3Object.tags.keyresourcesAffected.s3Object.tags.valuesensitiveData.categorysensitiveData.detections.type
|
|
1065
|
+
*/
|
|
1066
|
+
eqExactMatch?: __listOf__string;
|
|
1063
1067
|
/**
|
|
1064
1068
|
* A greater than condition to apply to a specified property value for findings.
|
|
1065
1069
|
*/
|
package/clients/medialive.d.ts
CHANGED
|
@@ -834,6 +834,14 @@ Alternate rendition that the client will not try to play back by default. Repres
|
|
|
834
834
|
export type AudioType = "CLEAN_EFFECTS"|"HEARING_IMPAIRED"|"UNDEFINED"|"VISUAL_IMPAIRED_COMMENTARY"|string;
|
|
835
835
|
export type AuthenticationScheme = "AKAMAI"|"COMMON"|string;
|
|
836
836
|
export interface AutomaticInputFailoverSettings {
|
|
837
|
+
/**
|
|
838
|
+
* This clear time defines the requirement a recovered input must meet to be considered healthy. The input must have no failover conditions for this length of time. Enter a time in milliseconds. This value is particularly important if the input_preference for the failover pair is set to PRIMARY_INPUT_PREFERRED, because after this time, MediaLive will switch back to the primary input.
|
|
839
|
+
*/
|
|
840
|
+
ErrorClearTimeMsec?: __integerMin1;
|
|
841
|
+
/**
|
|
842
|
+
* A list of failover conditions. If any of these conditions occur, MediaLive will perform a failover to the other input.
|
|
843
|
+
*/
|
|
844
|
+
FailoverConditions?: __listOfFailoverCondition;
|
|
837
845
|
/**
|
|
838
846
|
* Input preference when deciding which input to make active when a previously failed input has recovered.
|
|
839
847
|
*/
|
|
@@ -2548,6 +2556,18 @@ You specify only the font family. All other style information (color, bold, posi
|
|
|
2548
2556
|
TimecodeConfig: TimecodeConfig;
|
|
2549
2557
|
VideoDescriptions: __listOfVideoDescription;
|
|
2550
2558
|
}
|
|
2559
|
+
export interface FailoverCondition {
|
|
2560
|
+
/**
|
|
2561
|
+
* Failover condition type-specific settings.
|
|
2562
|
+
*/
|
|
2563
|
+
FailoverConditionSettings?: FailoverConditionSettings;
|
|
2564
|
+
}
|
|
2565
|
+
export interface FailoverConditionSettings {
|
|
2566
|
+
/**
|
|
2567
|
+
* MediaLive will perform a failover if content is not detected in this input for the specified period.
|
|
2568
|
+
*/
|
|
2569
|
+
InputLossSettings?: InputLossFailoverSettings;
|
|
2570
|
+
}
|
|
2551
2571
|
export interface FeatureActivations {
|
|
2552
2572
|
/**
|
|
2553
2573
|
* Enables the Input Prepare feature. You can create Input Prepare actions in the schedule only if this feature is enabled.
|
|
@@ -3118,6 +3138,7 @@ for any single frame within an encoded HDR video stream or file.
|
|
|
3118
3138
|
export type HlsClientCache = "DISABLED"|"ENABLED"|string;
|
|
3119
3139
|
export type HlsCodecSpecification = "RFC_4281"|"RFC_6381"|string;
|
|
3120
3140
|
export type HlsDirectoryStructure = "SINGLE_DIRECTORY"|"SUBDIRECTORY_PER_STREAM"|string;
|
|
3141
|
+
export type HlsDiscontinuityTags = "INSERT"|"NEVER_INSERT"|string;
|
|
3121
3142
|
export type HlsEncryptionType = "AES128"|"SAMPLE_AES"|string;
|
|
3122
3143
|
export interface HlsGroupSettings {
|
|
3123
3144
|
/**
|
|
@@ -3175,6 +3196,12 @@ omit: Omit any CLOSED-CAPTIONS line from the manifest.
|
|
|
3175
3196
|
* Place segments in subdirectories.
|
|
3176
3197
|
*/
|
|
3177
3198
|
DirectoryStructure?: HlsDirectoryStructure;
|
|
3199
|
+
/**
|
|
3200
|
+
* Specifies whether to insert EXT-X-DISCONTINUITY tags in the HLS child manifests for this output group.
|
|
3201
|
+
Typically, choose Insert because these tags are required in the manifest (according to the HLS specification) and serve an important purpose.
|
|
3202
|
+
Choose Never Insert only if the downstream system is doing real-time failover (without using the MediaLive automatic failover feature) and only if that downstream system has advised you to exclude the tags.
|
|
3203
|
+
*/
|
|
3204
|
+
DiscontinuityTags?: HlsDiscontinuityTags;
|
|
3178
3205
|
/**
|
|
3179
3206
|
* Encrypts the segments with the given encryption scheme. Exclude this parameter if no encryption is desired.
|
|
3180
3207
|
*/
|
|
@@ -3193,6 +3220,12 @@ omit: Omit any CLOSED-CAPTIONS line from the manifest.
|
|
|
3193
3220
|
STANDARD: Create an I-frame-only manifest for each output that contains video, as well as the other manifests (according to the Output Selection field). The I-frame manifest contains a #EXT-X-I-FRAMES-ONLY tag to indicate it is I-frame only, and one or more #EXT-X-BYTERANGE entries identifying the I-frame position. For example, #EXT-X-BYTERANGE:160364@1461888"
|
|
3194
3221
|
*/
|
|
3195
3222
|
IFrameOnlyPlaylists?: IFrameOnlyPlaylistType;
|
|
3223
|
+
/**
|
|
3224
|
+
* Specifies whether to include the final (incomplete) segment in the media output when the pipeline stops producing output because of a channel stop, a channel pause or a loss of input to the pipeline.
|
|
3225
|
+
Auto means that MediaLive decides whether to include the final segment, depending on the channel class and the types of output groups.
|
|
3226
|
+
Suppress means to never include the incomplete segment. We recommend you choose Auto and let MediaLive control the behavior.
|
|
3227
|
+
*/
|
|
3228
|
+
IncompleteSegmentBehavior?: HlsIncompleteSegmentBehavior;
|
|
3196
3229
|
/**
|
|
3197
3230
|
* Applies only if Mode field is LIVE.
|
|
3198
3231
|
|
|
@@ -3316,6 +3349,7 @@ SINGLE_FILE: Applies only if Mode field is VOD. Emit the program as a single .ts
|
|
|
3316
3349
|
Tag: __string;
|
|
3317
3350
|
}
|
|
3318
3351
|
export type HlsId3SegmentTaggingState = "DISABLED"|"ENABLED"|string;
|
|
3352
|
+
export type HlsIncompleteSegmentBehavior = "AUTO"|"SUPPRESS"|string;
|
|
3319
3353
|
export interface HlsInputSettings {
|
|
3320
3354
|
/**
|
|
3321
3355
|
* When specified the HLS stream with the m3u8 BANDWIDTH that most closely matches this value will be chosen, otherwise the highest bandwidth stream in the m3u8 will be chosen. The bitrate is specified in bits per second, as in an HLS manifest.
|
|
@@ -3739,6 +3773,12 @@ to.
|
|
|
3739
3773
|
*/
|
|
3740
3774
|
RepeatFrameMsec?: __integerMin0Max1000000;
|
|
3741
3775
|
}
|
|
3776
|
+
export interface InputLossFailoverSettings {
|
|
3777
|
+
/**
|
|
3778
|
+
* The amount of time (in milliseconds) that no input is detected. After that time, an input failover will occur.
|
|
3779
|
+
*/
|
|
3780
|
+
InputLossThresholdMsec?: __integerMin100;
|
|
3781
|
+
}
|
|
3742
3782
|
export type InputLossImageType = "COLOR"|"SLATE"|string;
|
|
3743
3783
|
export type InputMaximumBitrate = "MAX_10_MBPS"|"MAX_20_MBPS"|"MAX_50_MBPS"|string;
|
|
3744
3784
|
export type InputPreference = "EQUAL_INPUT_PREFERENCE"|"PRIMARY_INPUT_PREFERRED"|string;
|
|
@@ -6335,6 +6375,7 @@ NONE: MediaLive does not clip the input video and does not include the AFD value
|
|
|
6335
6375
|
export type __integerMin0Max7 = number;
|
|
6336
6376
|
export type __integerMin0Max8191 = number;
|
|
6337
6377
|
export type __integerMin1 = number;
|
|
6378
|
+
export type __integerMin100 = number;
|
|
6338
6379
|
export type __integerMin1000 = number;
|
|
6339
6380
|
export type __integerMin1000000Max100000000 = number;
|
|
6340
6381
|
export type __integerMin100000Max100000000 = number;
|
|
@@ -6375,6 +6416,7 @@ NONE: MediaLive does not clip the input video and does not include the AFD value
|
|
|
6375
6416
|
export type __listOfCaptionSelector = CaptionSelector[];
|
|
6376
6417
|
export type __listOfChannelEgressEndpoint = ChannelEgressEndpoint[];
|
|
6377
6418
|
export type __listOfChannelSummary = ChannelSummary[];
|
|
6419
|
+
export type __listOfFailoverCondition = FailoverCondition[];
|
|
6378
6420
|
export type __listOfHlsAdMarkers = HlsAdMarkers[];
|
|
6379
6421
|
export type __listOfInput = Input[];
|
|
6380
6422
|
export type __listOfInputAttachment = InputAttachment[];
|
package/clients/sns.d.ts
CHANGED
|
@@ -220,11 +220,11 @@ declare class SNS extends Service {
|
|
|
220
220
|
*/
|
|
221
221
|
setPlatformApplicationAttributes(callback?: (err: AWSError, data: {}) => void): Request<{}, AWSError>;
|
|
222
222
|
/**
|
|
223
|
-
* Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports. You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see
|
|
223
|
+
* Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports. You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see Publishing to a mobile phone in the Amazon SNS Developer Guide.
|
|
224
224
|
*/
|
|
225
225
|
setSMSAttributes(params: SNS.Types.SetSMSAttributesInput, callback?: (err: AWSError, data: SNS.Types.SetSMSAttributesResponse) => void): Request<SNS.Types.SetSMSAttributesResponse, AWSError>;
|
|
226
226
|
/**
|
|
227
|
-
* Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports. You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see
|
|
227
|
+
* Use this request to set the default settings for sending SMS messages and receiving daily SMS usage reports. You can override some of these settings for a single message when you use the Publish action with the MessageAttributes.entry.N parameter. For more information, see Publishing to a mobile phone in the Amazon SNS Developer Guide.
|
|
228
228
|
*/
|
|
229
229
|
setSMSAttributes(callback?: (err: AWSError, data: SNS.Types.SetSMSAttributesResponse) => void): Request<SNS.Types.SetSMSAttributesResponse, AWSError>;
|
|
230
230
|
/**
|
|
@@ -380,7 +380,7 @@ declare namespace SNS {
|
|
|
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. 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
|
|
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 attributes apply only to FIFO topics: FifoTopic – When this is set to true, a FIFO topic is created. ContentBasedDeduplication – Enables content-based deduplication for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). (Optional) To override the generated value, you can specify a value for the the MessageDeduplicationId parameter for the Publish action.
|
|
384
384
|
*/
|
|
385
385
|
Attributes?: TopicAttributesMap;
|
|
386
386
|
/**
|
|
@@ -479,7 +479,7 @@ declare namespace SNS {
|
|
|
479
479
|
}
|
|
480
480
|
export interface GetTopicAttributesResponse {
|
|
481
481
|
/**
|
|
482
|
-
* A map of the topic's attributes. Attributes in this map include the following: DeliveryPolicy – The JSON serialization of the topic's delivery policy. DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints. Owner – The AWS account ID of the topic's owner. Policy – The JSON serialization of the topic's access control policy. SubscriptionsConfirmed – The number of confirmed subscriptions for the topic. SubscriptionsDeleted – The number of deleted subscriptions for the topic. SubscriptionsPending – The number of subscriptions pending confirmation for the topic. TopicArn – The topic's ARN. EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account. 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.
|
|
482
|
+
* A map of the topic's attributes. Attributes in this map include the following: DeliveryPolicy – The JSON serialization of the topic's delivery policy. DisplayName – The human-readable name used in the From field for notifications to email and email-json endpoints. Owner – The AWS account ID of the topic's owner. Policy – The JSON serialization of the topic's access control policy. SubscriptionsConfirmed – The number of confirmed subscriptions for the topic. SubscriptionsDeleted – The number of deleted subscriptions for the topic. SubscriptionsPending – The number of subscriptions pending confirmation for the topic. TopicArn – The topic's ARN. EffectiveDeliveryPolicy – The JSON serialization of the effective delivery policy, taking system defaults into account. 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 attributes apply only to FIFO topics: FifoTopic – When this is set to true, a FIFO topic is created. ContentBasedDeduplication – Enables content-based deduplication for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). (Optional) To override the generated value, you can specify a value for the the MessageDeduplicationId parameter for the Publish action.
|
|
483
483
|
*/
|
|
484
484
|
Attributes?: TopicAttributesMap;
|
|
485
485
|
}
|
|
@@ -744,7 +744,7 @@ declare namespace SNS {
|
|
|
744
744
|
*/
|
|
745
745
|
TopicArn: topicARN;
|
|
746
746
|
/**
|
|
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).
|
|
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 for FIFO topics. By default, ContentBasedDeduplication is set to false. If you create a FIFO topic and this attribute is false, you must specify a value for the MessageDeduplicationId parameter for the Publish action. When you set ContentBasedDeduplication to true, Amazon SNS uses a SHA-256 hash to generate the MessageDeduplicationId using the body of the message (but not the attributes of the message). (Optional) To override the generated value, you can specify a value for the the MessageDeduplicationId parameter for the Publish action.
|
|
748
748
|
*/
|
|
749
749
|
AttributeName: attributeName;
|
|
750
750
|
/**
|
|
@@ -771,7 +771,7 @@ declare namespace SNS {
|
|
|
771
771
|
*/
|
|
772
772
|
Attributes?: SubscriptionAttributesMap;
|
|
773
773
|
/**
|
|
774
|
-
* 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.
|
|
775
775
|
*/
|
|
776
776
|
ReturnSubscriptionArn?: boolean;
|
|
777
777
|
}
|