aws-sdk-sns 1.34.0 → 1.35.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-sns.rb +1 -1
- data/lib/aws-sdk-sns/client.rb +43 -32
- data/lib/aws-sdk-sns/resource.rb +18 -10
- data/lib/aws-sdk-sns/topic.rb +44 -19
- data/lib/aws-sdk-sns/types.rb +69 -32
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 700050d1caca2f17f9bc2c6bce7fcd843a421567ea0544f69ded4baadf4f8f62
|
4
|
+
data.tar.gz: c298ec3ac5cd53a80f243bf2230e38fc32d8a73d5791f78aa4c42759be1538e1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d157627d17d268d0f63252689a1daeff3f774dfe7f23f64f47f4c44ffc39299a6e64bd497ddad54eda66745b157bebd1c24cb6608cbcec6a89ef39e9d88276e
|
7
|
+
data.tar.gz: 432750570c818e08f6d70e02821880ca44b71830959ecd98d7868534ca26602b772b5cfd4852efd339ce9bdef146c026ed27793e3a2c08e0f8b8bdfb3a8287b2
|
data/lib/aws-sdk-sns.rb
CHANGED
data/lib/aws-sdk-sns/client.rb
CHANGED
@@ -637,25 +637,33 @@ module Aws::SNS
|
|
637
637
|
#
|
638
638
|
# ^
|
639
639
|
#
|
640
|
-
# The following
|
640
|
+
# The following attributes apply only to [FIFO topics][4]\:
|
641
641
|
#
|
642
|
-
# * `
|
643
|
-
# Amazon SNS uses a SHA-256 hash to generate the
|
644
|
-
# `MessageDeduplicationId` using the body of the message (but not the
|
645
|
-
# attributes of the message).
|
642
|
+
# * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
|
646
643
|
#
|
647
|
-
# *
|
648
|
-
#
|
649
|
-
# as duplicates and only one copy of the message is delivered.
|
644
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
645
|
+
# for FIFO topics.
|
650
646
|
#
|
651
|
-
#
|
652
|
-
#
|
647
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If you
|
648
|
+
# create a FIFO topic and this attribute is `false`, you must
|
649
|
+
# specify a value for the `MessageDeduplicationId` parameter for the
|
650
|
+
# [Publish][5] action.
|
651
|
+
#
|
652
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
653
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId` using
|
654
|
+
# the body of the message (but not the attributes of the message).
|
655
|
+
#
|
656
|
+
# (Optional) To override the generated value, you can specify a
|
657
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
658
|
+
# `Publish` action.
|
653
659
|
#
|
654
660
|
#
|
655
661
|
#
|
656
662
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
657
663
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
658
664
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
665
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
666
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
659
667
|
#
|
660
668
|
# @option params [Array<Types::Tag>] :tags
|
661
669
|
# The list of tags to add to a new topic.
|
@@ -1642,8 +1650,8 @@ module Aws::SNS
|
|
1642
1650
|
#
|
1643
1651
|
# You can override some of these settings for a single message when you
|
1644
1652
|
# use the `Publish` action with the `MessageAttributes.entry.N`
|
1645
|
-
# parameter. For more information, see [
|
1646
|
-
# the *Amazon SNS Developer Guide*.
|
1653
|
+
# parameter. For more information, see [Publishing to a mobile phone][1]
|
1654
|
+
# in the *Amazon SNS Developer Guide*.
|
1647
1655
|
#
|
1648
1656
|
#
|
1649
1657
|
#
|
@@ -1834,25 +1842,31 @@ module Aws::SNS
|
|
1834
1842
|
#
|
1835
1843
|
# ^
|
1836
1844
|
#
|
1837
|
-
# The following attribute applies only to FIFO topics
|
1845
|
+
# The following attribute applies only to [FIFO topics][4]\:
|
1846
|
+
#
|
1847
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
1848
|
+
# for FIFO topics.
|
1838
1849
|
#
|
1839
|
-
#
|
1840
|
-
#
|
1841
|
-
#
|
1842
|
-
#
|
1850
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If you
|
1851
|
+
# create a FIFO topic and this attribute is `false`, you must
|
1852
|
+
# specify a value for the `MessageDeduplicationId` parameter for the
|
1853
|
+
# [Publish][5] action.
|
1843
1854
|
#
|
1844
|
-
#
|
1845
|
-
#
|
1846
|
-
#
|
1855
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
1856
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId` using
|
1857
|
+
# the body of the message (but not the attributes of the message).
|
1847
1858
|
#
|
1848
|
-
#
|
1849
|
-
#
|
1859
|
+
# (Optional) To override the generated value, you can specify a
|
1860
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
1861
|
+
# `Publish` action.
|
1850
1862
|
#
|
1851
1863
|
#
|
1852
1864
|
#
|
1853
1865
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
1854
1866
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
1855
1867
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
1868
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
1869
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
1856
1870
|
#
|
1857
1871
|
# @option params [String] :attribute_value
|
1858
1872
|
# The new value for the attribute.
|
@@ -1965,15 +1979,12 @@ module Aws::SNS
|
|
1965
1979
|
# Sets whether the response from the `Subscribe` request includes the
|
1966
1980
|
# subscription ARN, even if the subscription is not yet confirmed.
|
1967
1981
|
#
|
1968
|
-
#
|
1969
|
-
#
|
1970
|
-
#
|
1971
|
-
#
|
1972
|
-
#
|
1973
|
-
#
|
1974
|
-
# confirmation token.
|
1975
|
-
#
|
1976
|
-
# ^
|
1982
|
+
# If you set this parameter to `true`, the response includes the ARN in
|
1983
|
+
# all cases, even if the subscription is not yet confirmed. In addition
|
1984
|
+
# to the ARN for confirmed subscriptions, the response also includes the
|
1985
|
+
# `pending subscription` ARN value for subscriptions that aren't yet
|
1986
|
+
# confirmed. A subscription becomes confirmed when the subscriber calls
|
1987
|
+
# the `ConfirmSubscription` action with a confirmation token.
|
1977
1988
|
#
|
1978
1989
|
#
|
1979
1990
|
#
|
@@ -2136,7 +2147,7 @@ module Aws::SNS
|
|
2136
2147
|
params: params,
|
2137
2148
|
config: config)
|
2138
2149
|
context[:gem_name] = 'aws-sdk-sns'
|
2139
|
-
context[:gem_version] = '1.
|
2150
|
+
context[:gem_version] = '1.35.0'
|
2140
2151
|
Seahorse::Client::Request.new(handlers, context)
|
2141
2152
|
end
|
2142
2153
|
|
data/lib/aws-sdk-sns/resource.rb
CHANGED
@@ -118,25 +118,33 @@ module Aws::SNS
|
|
118
118
|
#
|
119
119
|
# ^
|
120
120
|
#
|
121
|
-
# The following
|
121
|
+
# The following attributes apply only to [FIFO topics][4]\:
|
122
122
|
#
|
123
|
-
# * `
|
124
|
-
# Amazon SNS uses a SHA-256 hash to generate the
|
125
|
-
# `MessageDeduplicationId` using the body of the message (but not the
|
126
|
-
# attributes of the message).
|
123
|
+
# * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
|
127
124
|
#
|
128
|
-
# *
|
129
|
-
#
|
130
|
-
# as duplicates and only one copy of the message is delivered.
|
125
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
126
|
+
# for FIFO topics.
|
131
127
|
#
|
132
|
-
#
|
133
|
-
#
|
128
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If you
|
129
|
+
# create a FIFO topic and this attribute is `false`, you must
|
130
|
+
# specify a value for the `MessageDeduplicationId` parameter for the
|
131
|
+
# [Publish][5] action.
|
132
|
+
#
|
133
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
134
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId` using
|
135
|
+
# the body of the message (but not the attributes of the message).
|
136
|
+
#
|
137
|
+
# (Optional) To override the generated value, you can specify a
|
138
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
139
|
+
# `Publish` action.
|
134
140
|
#
|
135
141
|
#
|
136
142
|
#
|
137
143
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
138
144
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
139
145
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
146
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
147
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
140
148
|
# @option options [Array<Types::Tag>] :tags
|
141
149
|
# The list of tags to add to a new topic.
|
142
150
|
#
|
data/lib/aws-sdk-sns/topic.rb
CHANGED
@@ -71,11 +71,33 @@ module Aws::SNS
|
|
71
71
|
#
|
72
72
|
# ^
|
73
73
|
#
|
74
|
+
# The following attributes apply only to [FIFO topics][4]\:
|
75
|
+
#
|
76
|
+
# * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
|
77
|
+
#
|
78
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
79
|
+
# for FIFO topics.
|
80
|
+
#
|
81
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If you
|
82
|
+
# create a FIFO topic and this attribute is `false`, you must
|
83
|
+
# specify a value for the `MessageDeduplicationId` parameter for the
|
84
|
+
# [Publish][5] action.
|
85
|
+
#
|
86
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
87
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId` using
|
88
|
+
# the body of the message (but not the attributes of the message).
|
89
|
+
#
|
90
|
+
# (Optional) To override the generated value, you can specify a
|
91
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
92
|
+
# `Publish` action.
|
93
|
+
#
|
74
94
|
#
|
75
95
|
#
|
76
96
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
77
97
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
78
98
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
99
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
100
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
79
101
|
# @return [Hash<String,String>]
|
80
102
|
def attributes
|
81
103
|
data[:attributes]
|
@@ -366,25 +388,31 @@ module Aws::SNS
|
|
366
388
|
#
|
367
389
|
# ^
|
368
390
|
#
|
369
|
-
# The following attribute applies only to FIFO topics
|
391
|
+
# The following attribute applies only to [FIFO topics][4]\:
|
392
|
+
#
|
393
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
394
|
+
# for FIFO topics.
|
370
395
|
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
396
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If you
|
397
|
+
# create a FIFO topic and this attribute is `false`, you must
|
398
|
+
# specify a value for the `MessageDeduplicationId` parameter for the
|
399
|
+
# [Publish][5] action.
|
375
400
|
#
|
376
|
-
#
|
377
|
-
#
|
378
|
-
#
|
401
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
402
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId` using
|
403
|
+
# the body of the message (but not the attributes of the message).
|
379
404
|
#
|
380
|
-
#
|
381
|
-
#
|
405
|
+
# (Optional) To override the generated value, you can specify a
|
406
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
407
|
+
# `Publish` action.
|
382
408
|
#
|
383
409
|
#
|
384
410
|
#
|
385
411
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
386
412
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
387
413
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
414
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
415
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
388
416
|
# @option options [String] :attribute_value
|
389
417
|
# The new value for the attribute.
|
390
418
|
# @return [EmptyStructure]
|
@@ -478,15 +506,12 @@ module Aws::SNS
|
|
478
506
|
# Sets whether the response from the `Subscribe` request includes the
|
479
507
|
# subscription ARN, even if the subscription is not yet confirmed.
|
480
508
|
#
|
481
|
-
#
|
482
|
-
#
|
483
|
-
#
|
484
|
-
#
|
485
|
-
#
|
486
|
-
#
|
487
|
-
# confirmation token.
|
488
|
-
#
|
489
|
-
# ^
|
509
|
+
# If you set this parameter to `true`, the response includes the ARN in
|
510
|
+
# all cases, even if the subscription is not yet confirmed. In addition
|
511
|
+
# to the ARN for confirmed subscriptions, the response also includes the
|
512
|
+
# `pending subscription` ARN value for subscriptions that aren't yet
|
513
|
+
# confirmed. A subscription becomes confirmed when the subscriber calls
|
514
|
+
# the `ConfirmSubscription` action with a confirmation token.
|
490
515
|
#
|
491
516
|
#
|
492
517
|
#
|
data/lib/aws-sdk-sns/types.rb
CHANGED
@@ -352,26 +352,34 @@ module Aws::SNS
|
|
352
352
|
#
|
353
353
|
# ^
|
354
354
|
#
|
355
|
-
# The following
|
355
|
+
# The following attributes apply only to [FIFO topics][4]\:
|
356
356
|
#
|
357
|
-
# * `
|
358
|
-
# Amazon SNS uses a SHA-256 hash to generate the
|
359
|
-
# `MessageDeduplicationId` using the body of the message (but not
|
360
|
-
# the attributes of the message).
|
357
|
+
# * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
|
361
358
|
#
|
362
|
-
# *
|
363
|
-
#
|
364
|
-
# treated as duplicates and only one copy of the message is
|
365
|
-
# delivered.
|
359
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
360
|
+
# for FIFO topics.
|
366
361
|
#
|
367
|
-
#
|
368
|
-
#
|
362
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If
|
363
|
+
# you create a FIFO topic and this attribute is `false`, you must
|
364
|
+
# specify a value for the `MessageDeduplicationId` parameter for
|
365
|
+
# the [Publish][5] action.
|
366
|
+
#
|
367
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
368
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId`
|
369
|
+
# using the body of the message (but not the attributes of the
|
370
|
+
# message).
|
371
|
+
#
|
372
|
+
# (Optional) To override the generated value, you can specify a
|
373
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
374
|
+
# `Publish` action.
|
369
375
|
#
|
370
376
|
#
|
371
377
|
#
|
372
378
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
373
379
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
374
380
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
381
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
382
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
375
383
|
# @return [Hash<String,String>]
|
376
384
|
#
|
377
385
|
# @!attribute [rw] tags
|
@@ -801,11 +809,34 @@ module Aws::SNS
|
|
801
809
|
#
|
802
810
|
# ^
|
803
811
|
#
|
812
|
+
# The following attributes apply only to [FIFO topics][4]\:
|
813
|
+
#
|
814
|
+
# * `FifoTopic` – When this is set to `true`, a FIFO topic is created.
|
815
|
+
#
|
816
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
817
|
+
# for FIFO topics.
|
818
|
+
#
|
819
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If
|
820
|
+
# you create a FIFO topic and this attribute is `false`, you must
|
821
|
+
# specify a value for the `MessageDeduplicationId` parameter for
|
822
|
+
# the [Publish][5] action.
|
823
|
+
#
|
824
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
825
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId`
|
826
|
+
# using the body of the message (but not the attributes of the
|
827
|
+
# message).
|
828
|
+
#
|
829
|
+
# (Optional) To override the generated value, you can specify a
|
830
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
831
|
+
# `Publish` action.
|
832
|
+
#
|
804
833
|
#
|
805
834
|
#
|
806
835
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
807
836
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
808
837
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
838
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
839
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
809
840
|
# @return [Hash<String,String>]
|
810
841
|
#
|
811
842
|
# @see http://docs.aws.amazon.com/goto/WebAPI/sns-2010-03-31/GetTopicAttributesResponse AWS API Documentation
|
@@ -1275,12 +1306,14 @@ module Aws::SNS
|
|
1275
1306
|
# message body should not be empty or null. All parts of the message
|
1276
1307
|
# attribute, including name, type, and value, are included in the
|
1277
1308
|
# message size restriction, which is currently 256 KB (262,144 bytes).
|
1278
|
-
# For more information, see [
|
1309
|
+
# For more information, see [Amazon SNS message attributes][2] and
|
1310
|
+
# [Publishing to a mobile phone][3] in the *Amazon SNS Developer Guide.*
|
1279
1311
|
#
|
1280
1312
|
#
|
1281
1313
|
#
|
1282
1314
|
# [1]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
1283
1315
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/SNSMessageAttributes.html
|
1316
|
+
# [3]: https://docs.aws.amazon.com/sns/latest/dg/sms_publish-to-phone.html
|
1284
1317
|
#
|
1285
1318
|
# @note When making an API call, you may pass MessageAttributeValue
|
1286
1319
|
# data as a hash:
|
@@ -1963,26 +1996,32 @@ module Aws::SNS
|
|
1963
1996
|
#
|
1964
1997
|
# ^
|
1965
1998
|
#
|
1966
|
-
# The following attribute applies only to FIFO topics
|
1999
|
+
# The following attribute applies only to [FIFO topics][4]\:
|
2000
|
+
#
|
2001
|
+
# * `ContentBasedDeduplication` – Enables content-based deduplication
|
2002
|
+
# for FIFO topics.
|
1967
2003
|
#
|
1968
|
-
#
|
1969
|
-
#
|
1970
|
-
#
|
1971
|
-
#
|
2004
|
+
# * By default, `ContentBasedDeduplication` is set to `false`. If
|
2005
|
+
# you create a FIFO topic and this attribute is `false`, you must
|
2006
|
+
# specify a value for the `MessageDeduplicationId` parameter for
|
2007
|
+
# the [Publish][5] action.
|
1972
2008
|
#
|
1973
|
-
#
|
1974
|
-
#
|
1975
|
-
#
|
1976
|
-
#
|
2009
|
+
# * When you set `ContentBasedDeduplication` to `true`, Amazon SNS
|
2010
|
+
# uses a SHA-256 hash to generate the `MessageDeduplicationId`
|
2011
|
+
# using the body of the message (but not the attributes of the
|
2012
|
+
# message).
|
1977
2013
|
#
|
1978
|
-
#
|
1979
|
-
#
|
2014
|
+
# (Optional) To override the generated value, you can specify a
|
2015
|
+
# value for the the `MessageDeduplicationId` parameter for the
|
2016
|
+
# `Publish` action.
|
1980
2017
|
#
|
1981
2018
|
#
|
1982
2019
|
#
|
1983
2020
|
# [1]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html
|
1984
2021
|
# [2]: https://docs.aws.amazon.com/sns/latest/dg/sns-server-side-encryption.html#sse-key-terms
|
1985
2022
|
# [3]: https://docs.aws.amazon.com/kms/latest/APIReference/API_DescribeKey.html#API_DescribeKey_RequestParameters
|
2023
|
+
# [4]: https://docs.aws.amazon.com/sns/latest/dg/sns-fifo-topics.html
|
2024
|
+
# [5]: https://docs.aws.amazon.com/sns/latest/api/API_Publish.html
|
1986
2025
|
# @return [String]
|
1987
2026
|
#
|
1988
2027
|
# @!attribute [rw] attribute_value
|
@@ -2113,15 +2152,13 @@ module Aws::SNS
|
|
2113
2152
|
# Sets whether the response from the `Subscribe` request includes the
|
2114
2153
|
# subscription ARN, even if the subscription is not yet confirmed.
|
2115
2154
|
#
|
2116
|
-
#
|
2117
|
-
#
|
2118
|
-
#
|
2119
|
-
#
|
2120
|
-
#
|
2121
|
-
#
|
2122
|
-
#
|
2123
|
-
#
|
2124
|
-
# ^
|
2155
|
+
# If you set this parameter to `true`, the response includes the ARN
|
2156
|
+
# in all cases, even if the subscription is not yet confirmed. In
|
2157
|
+
# addition to the ARN for confirmed subscriptions, the response also
|
2158
|
+
# includes the `pending subscription` ARN value for subscriptions that
|
2159
|
+
# aren't yet confirmed. A subscription becomes confirmed when the
|
2160
|
+
# subscriber calls the `ConfirmSubscription` action with a
|
2161
|
+
# confirmation token.
|
2125
2162
|
#
|
2126
2163
|
#
|
2127
2164
|
#
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-sns
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.35.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-10-
|
11
|
+
date: 2020-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|