aws-sdk-sns 1.34.0 → 1.35.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1f2ec23f109fe4dc267eb632787f6654932a668b74fa7d9077f09b204754e7fd
4
- data.tar.gz: f3dba051717d1a04cd288cd9c3eaa303967534abebd766b19412695ff9d5906b
3
+ metadata.gz: 700050d1caca2f17f9bc2c6bce7fcd843a421567ea0544f69ded4baadf4f8f62
4
+ data.tar.gz: c298ec3ac5cd53a80f243bf2230e38fc32d8a73d5791f78aa4c42759be1538e1
5
5
  SHA512:
6
- metadata.gz: 733fded3d3755b48ed9aedc3060b7f78d1eb00afe93948fad91580bf683b47d0770c3228e19b5ad1288bb7eaac8474fb79b53206c3ea90299b0528a37e495868
7
- data.tar.gz: 981bf2e8cb615e6b161ed21d089c4cff6091a5a580b754029924b8d3ea73d3df3a581c7debc9c0f0c6ab185280f22d5a3eeb0520573ee1b8d7ab3e9d5312a0a3
6
+ metadata.gz: 8d157627d17d268d0f63252689a1daeff3f774dfe7f23f64f47f4c44ffc39299a6e64bd497ddad54eda66745b157bebd1c24cb6608cbcec6a89ef39e9d88276e
7
+ data.tar.gz: 432750570c818e08f6d70e02821880ca44b71830959ecd98d7868534ca26602b772b5cfd4852efd339ce9bdef146c026ed27793e3a2c08e0f8b8bdfb3a8287b2
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-sns/customizations'
52
52
  # @!group service
53
53
  module Aws::SNS
54
54
 
55
- GEM_VERSION = '1.34.0'
55
+ GEM_VERSION = '1.35.0'
56
56
 
57
57
  end
@@ -637,25 +637,33 @@ module Aws::SNS
637
637
  #
638
638
  # ^
639
639
  #
640
- # The following attribute applies only to FIFO topics:
640
+ # The following attributes apply only to [FIFO topics][4]\:
641
641
  #
642
- # * `ContentBasedDeduplication` – Enables content-based deduplication.
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
- # * When `ContentBasedDeduplication` is in effect, messages with
648
- # identical content sent within the deduplication interval are treated
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
- # * If the queue has `ContentBasedDeduplication` set, your
652
- # `MessageDeduplicationId` overrides the generated one.
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 [Sending an SMS Message][1] in
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
- # * `ContentBasedDeduplication` Enables content-based deduplication.
1840
- # Amazon SNS uses a SHA-256 hash to generate the
1841
- # `MessageDeduplicationId` using the body of the message (but not the
1842
- # attributes of the message).
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
- # * When `ContentBasedDeduplication` is in effect, messages with
1845
- # identical content sent within the deduplication interval are treated
1846
- # as duplicates and only one copy of the message is delivered.
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
- # * If the queue has `ContentBasedDeduplication` set, your
1849
- # `MessageDeduplicationId` overrides the generated one.
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
- # * If you set this parameter to `true`, the response includes the ARN
1969
- # in all cases, even if the subscription is not yet confirmed. In
1970
- # addition to the ARN for confirmed subscriptions, the response also
1971
- # includes the `pending subscription` ARN value for subscriptions that
1972
- # aren't yet confirmed. A subscription becomes confirmed when the
1973
- # subscriber calls the `ConfirmSubscription` action with a
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.34.0'
2150
+ context[:gem_version] = '1.35.0'
2140
2151
  Seahorse::Client::Request.new(handlers, context)
2141
2152
  end
2142
2153
 
@@ -118,25 +118,33 @@ module Aws::SNS
118
118
  #
119
119
  # ^
120
120
  #
121
- # The following attribute applies only to FIFO topics:
121
+ # The following attributes apply only to [FIFO topics][4]\:
122
122
  #
123
- # * `ContentBasedDeduplication` – Enables content-based deduplication.
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
- # * When `ContentBasedDeduplication` is in effect, messages with
129
- # identical content sent within the deduplication interval are treated
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
- # * If the queue has `ContentBasedDeduplication` set, your
133
- # `MessageDeduplicationId` overrides the generated one.
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
  #
@@ -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
- # * `ContentBasedDeduplication` Enables content-based deduplication.
372
- # Amazon SNS uses a SHA-256 hash to generate the
373
- # `MessageDeduplicationId` using the body of the message (but not the
374
- # attributes of the message).
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
- # * When `ContentBasedDeduplication` is in effect, messages with
377
- # identical content sent within the deduplication interval are treated
378
- # as duplicates and only one copy of the message is delivered.
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
- # * If the queue has `ContentBasedDeduplication` set, your
381
- # `MessageDeduplicationId` overrides the generated one.
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
- # * If you set this parameter to `true`, the response includes the ARN
482
- # in all cases, even if the subscription is not yet confirmed. In
483
- # addition to the ARN for confirmed subscriptions, the response also
484
- # includes the `pending subscription` ARN value for subscriptions that
485
- # aren't yet confirmed. A subscription becomes confirmed when the
486
- # subscriber calls the `ConfirmSubscription` action with a
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
  #
@@ -352,26 +352,34 @@ module Aws::SNS
352
352
  #
353
353
  # ^
354
354
  #
355
- # The following attribute applies only to FIFO topics:
355
+ # The following attributes apply only to [FIFO topics][4]\:
356
356
  #
357
- # * `ContentBasedDeduplication` – Enables content-based deduplication.
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
- # * When `ContentBasedDeduplication` is in effect, messages with
363
- # identical content sent within the deduplication interval are
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
- # * If the queue has `ContentBasedDeduplication` set, your
368
- # `MessageDeduplicationId` overrides the generated one.
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 [Using Amazon SNS Message Attributes][2].
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
- # * `ContentBasedDeduplication` Enables content-based deduplication.
1969
- # Amazon SNS uses a SHA-256 hash to generate the
1970
- # `MessageDeduplicationId` using the body of the message (but not
1971
- # the attributes of the message).
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
- # * When `ContentBasedDeduplication` is in effect, messages with
1974
- # identical content sent within the deduplication interval are
1975
- # treated as duplicates and only one copy of the message is
1976
- # delivered.
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
- # * If the queue has `ContentBasedDeduplication` set, your
1979
- # `MessageDeduplicationId` overrides the generated one.
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
- # * If you set this parameter to `true`, the response includes the ARN
2117
- # in all cases, even if the subscription is not yet confirmed. In
2118
- # addition to the ARN for confirmed subscriptions, the response also
2119
- # includes the `pending subscription` ARN value for subscriptions
2120
- # that aren't yet confirmed. A subscription becomes confirmed when
2121
- # the subscriber calls the `ConfirmSubscription` action with a
2122
- # confirmation token.
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.34.0
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-22 00:00:00.000000000 Z
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