aws-sdk-pinpointsmsvoicev2 1.20.0 → 1.22.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-pinpointsmsvoicev2/client.rb +132 -78
- data/lib/aws-sdk-pinpointsmsvoicev2/client_api.rb +2 -0
- data/lib/aws-sdk-pinpointsmsvoicev2/types.rb +110 -70
- data/lib/aws-sdk-pinpointsmsvoicev2.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/resource.rbs +1 -0
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e16711405497dee984d7fe5e2219685a3a97d6a7154e651f9668a5e93249dee7
|
4
|
+
data.tar.gz: 26b0678a61a96fe4a206dbfa6afaf75f939c5b3ecf88bd60ae4d6ac4d63950b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e1fea93c86fd09f716d6f013606efca1cc69fb50b42bc7091151ee9ab719d79cbe3931e790c6c49bc1111bdcb71eb73009da1dbbbb56868713b63c9c2704226b
|
7
|
+
data.tar.gz: 0dedb8566542d4f1691e249e1d7c4feb00b837890b4a4f99ea2077fd9293ad5a58a892c7f80e82c4757514f399f2274305193939418064b392dcf9e8f121f9a8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.22.0 (2024-09-03)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.21.0 (2024-07-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Update for rebrand to AWS End User Messaging SMS and Voice.
|
13
|
+
|
4
14
|
1.20.0 (2024-07-02)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.22.0
|
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
|
32
32
|
require 'aws-sdk-core/plugins/request_compression.rb'
|
33
33
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
34
34
|
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
35
|
+
require 'aws-sdk-core/plugins/telemetry.rb'
|
35
36
|
require 'aws-sdk-core/plugins/sign.rb'
|
36
37
|
require 'aws-sdk-core/plugins/protocols/json_rpc.rb'
|
37
38
|
|
@@ -83,6 +84,7 @@ module Aws::PinpointSMSVoiceV2
|
|
83
84
|
add_plugin(Aws::Plugins::RequestCompression)
|
84
85
|
add_plugin(Aws::Plugins::DefaultsMode)
|
85
86
|
add_plugin(Aws::Plugins::RecursionDetection)
|
87
|
+
add_plugin(Aws::Plugins::Telemetry)
|
86
88
|
add_plugin(Aws::Plugins::Sign)
|
87
89
|
add_plugin(Aws::Plugins::Protocols::JsonRpc)
|
88
90
|
add_plugin(Aws::PinpointSMSVoiceV2::Plugins::Endpoints)
|
@@ -337,6 +339,16 @@ module Aws::PinpointSMSVoiceV2
|
|
337
339
|
# ** Please note ** When response stubbing is enabled, no HTTP
|
338
340
|
# requests are made, and retries are disabled.
|
339
341
|
#
|
342
|
+
# @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
|
343
|
+
# Allows you to provide a telemetry provider, which is used to
|
344
|
+
# emit telemetry data. By default, uses `NoOpTelemetryProvider` which
|
345
|
+
# will not record or emit any telemetry data. The SDK supports the
|
346
|
+
# following telemetry providers:
|
347
|
+
#
|
348
|
+
# * OpenTelemetry (OTel) - To use the OTel provider, install and require the
|
349
|
+
# `opentelemetry-sdk` gem and then, pass in an instance of a
|
350
|
+
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
351
|
+
#
|
340
352
|
# @option options [Aws::TokenProvider] :token_provider
|
341
353
|
# A Bearer Token Provider. This can be an instance of any one of the
|
342
354
|
# following classes:
|
@@ -607,15 +619,14 @@ module Aws::PinpointSMSVoiceV2
|
|
607
619
|
# Creates a new event destination in a configuration set.
|
608
620
|
#
|
609
621
|
# An event destination is a location where you send message events. The
|
610
|
-
# event options are Amazon CloudWatch, Amazon
|
611
|
-
#
|
612
|
-
#
|
622
|
+
# event options are Amazon CloudWatch, Amazon Data Firehose, or Amazon
|
623
|
+
# SNS. For example, when a message is delivered successfully, you can
|
624
|
+
# send information about that event to an event destination, or send
|
613
625
|
# notifications to endpoints that are subscribed to an Amazon SNS topic.
|
614
626
|
#
|
615
627
|
# Each configuration set can contain between 0 and 5 event destinations.
|
616
628
|
# Each event destination can contain a reference to a single
|
617
|
-
# destination, such as a CloudWatch or
|
618
|
-
# destination.
|
629
|
+
# destination, such as a CloudWatch or Firehose destination.
|
619
630
|
#
|
620
631
|
# @option params [required, String] :configuration_set_name
|
621
632
|
# Either the name of the configuration set or the configuration set ARN
|
@@ -628,7 +639,8 @@ module Aws::PinpointSMSVoiceV2
|
|
628
639
|
#
|
629
640
|
# @option params [required, Array<String>] :matching_event_types
|
630
641
|
# An array of event types that determine which events to log. If "ALL"
|
631
|
-
# is used, then
|
642
|
+
# is used, then AWS End User Messaging SMS and Voice logs every event
|
643
|
+
# type.
|
632
644
|
#
|
633
645
|
# <note markdown="1"> The `TEXT_SENT` event type is not supported.
|
634
646
|
#
|
@@ -640,7 +652,7 @@ module Aws::PinpointSMSVoiceV2
|
|
640
652
|
#
|
641
653
|
# @option params [Types::KinesisFirehoseDestination] :kinesis_firehose_destination
|
642
654
|
# An object that contains information about an event destination for
|
643
|
-
# logging to Amazon
|
655
|
+
# logging to Amazon Data Firehose.
|
644
656
|
#
|
645
657
|
# @option params [Types::SnsDestination] :sns_destination
|
646
658
|
# An object that contains information about an event destination for
|
@@ -713,8 +725,8 @@ module Aws::PinpointSMSVoiceV2
|
|
713
725
|
# with the keyword "STOP," an entry for the phone number is added to
|
714
726
|
# the opt-out list. In addition to STOP, your recipients can use any
|
715
727
|
# supported opt-out keyword, such as CANCEL or OPTOUT. For a list of
|
716
|
-
# supported opt-out keywords, see [ SMS opt out ][1] in the *
|
717
|
-
#
|
728
|
+
# supported opt-out keywords, see [ SMS opt out ][1] in the *AWS End
|
729
|
+
# User Messaging SMS User Guide*.
|
718
730
|
#
|
719
731
|
#
|
720
732
|
#
|
@@ -795,6 +807,13 @@ module Aws::PinpointSMSVoiceV2
|
|
795
807
|
# PhoneNumberArn while DescribeSenderIds can be used to get the values
|
796
808
|
# for SenderId and SenderIdArn.
|
797
809
|
#
|
810
|
+
# After the pool is created you can add more origination identities to
|
811
|
+
# the pool by using [AssociateOriginationIdentity][1].
|
812
|
+
#
|
813
|
+
#
|
814
|
+
#
|
815
|
+
# [1]: https://docs.aws.amazon.com/pinpoint/latest/apireference_smsvoicev2/API_AssociateOriginationIdentity.html
|
816
|
+
#
|
798
817
|
# @option params [required, String] :iso_country_code
|
799
818
|
# The new two-character code, in ISO 3166-1 alpha-2 format, for the
|
800
819
|
# country or region of the new pool.
|
@@ -802,7 +821,8 @@ module Aws::PinpointSMSVoiceV2
|
|
802
821
|
# @option params [required, String] :message_type
|
803
822
|
# The type of message. Valid values are TRANSACTIONAL for messages that
|
804
823
|
# are critical or time-sensitive and PROMOTIONAL for messages that
|
805
|
-
# aren't critical or time-sensitive.
|
824
|
+
# aren't critical or time-sensitive. After the pool is created the
|
825
|
+
# MessageType can't be changed.
|
806
826
|
#
|
807
827
|
# @option params [Boolean] :deletion_protection_enabled
|
808
828
|
# By default this is set to false. When set to true the pool can't be
|
@@ -1448,8 +1468,8 @@ module Aws::PinpointSMSVoiceV2
|
|
1448
1468
|
# number or pool. It is also a specific word or phrase that an end user
|
1449
1469
|
# can send to your number to elicit a response, such as an informational
|
1450
1470
|
# message or a special offer. When your number receives a message that
|
1451
|
-
# begins with a keyword,
|
1452
|
-
# message.
|
1471
|
+
# begins with a keyword, AWS End User Messaging SMS and Voice responds
|
1472
|
+
# with a customizable message.
|
1453
1473
|
#
|
1454
1474
|
# Keywords "HELP" and "STOP" can't be deleted or modified.
|
1455
1475
|
#
|
@@ -1833,11 +1853,11 @@ module Aws::PinpointSMSVoiceV2
|
|
1833
1853
|
# text messages. Deleting a spend limit override will set the
|
1834
1854
|
# `EnforcedLimit` to equal the `MaxLimit`, which is controlled by Amazon
|
1835
1855
|
# Web Services. For more information on spend limits (quotas) see
|
1836
|
-
# [
|
1856
|
+
# [Quotas ][1] in the *AWS End User Messaging SMS User Guide*.
|
1837
1857
|
#
|
1838
1858
|
#
|
1839
1859
|
#
|
1840
|
-
# [1]: https://docs.aws.amazon.com/
|
1860
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/quotas.html
|
1841
1861
|
#
|
1842
1862
|
# @return [Types::DeleteTextMessageSpendLimitOverrideResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1843
1863
|
#
|
@@ -1894,11 +1914,11 @@ module Aws::PinpointSMSVoiceV2
|
|
1894
1914
|
# voice messages. Deleting a spend limit override sets the
|
1895
1915
|
# `EnforcedLimit` equal to the `MaxLimit`, which is controlled by Amazon
|
1896
1916
|
# Web Services. For more information on spending limits (quotas) see
|
1897
|
-
# [
|
1917
|
+
# [Quotas ][1] in the *AWS End User Messaging SMS User Guide*.
|
1898
1918
|
#
|
1899
1919
|
#
|
1900
1920
|
#
|
1901
|
-
# [1]: https://docs.aws.amazon.com/
|
1921
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/quotas.html
|
1902
1922
|
#
|
1903
1923
|
# @return [Types::DeleteVoiceMessageSpendLimitOverrideResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1904
1924
|
#
|
@@ -1923,9 +1943,9 @@ module Aws::PinpointSMSVoiceV2
|
|
1923
1943
|
# you're ready to move your account out of the sandbox, create an
|
1924
1944
|
# Amazon Web Services Support case for a service limit increase request.
|
1925
1945
|
#
|
1926
|
-
# New
|
1927
|
-
#
|
1928
|
-
#
|
1946
|
+
# New accounts are placed into an SMS or voice sandbox. The sandbox
|
1947
|
+
# protects both Amazon Web Services end recipients and SMS or voice
|
1948
|
+
# recipients from fraud and abuse.
|
1929
1949
|
#
|
1930
1950
|
# @option params [String] :next_token
|
1931
1951
|
# The token to be used for the next set of paginated results. You don't
|
@@ -1964,19 +1984,20 @@ module Aws::PinpointSMSVoiceV2
|
|
1964
1984
|
req.send_request(options)
|
1965
1985
|
end
|
1966
1986
|
|
1967
|
-
# Describes the current
|
1968
|
-
# your account. The description for a quota
|
1969
|
-
# current usage toward that quota, and the
|
1987
|
+
# Describes the current AWS End User Messaging SMS and Voice SMS Voice
|
1988
|
+
# V2 resource quotas for your account. The description for a quota
|
1989
|
+
# includes the quota name, current usage toward that quota, and the
|
1990
|
+
# quota's maximum value.
|
1970
1991
|
#
|
1971
1992
|
# When you establish an Amazon Web Services account, the account has
|
1972
1993
|
# initial quotas on the maximum number of configuration sets, opt-out
|
1973
1994
|
# lists, phone numbers, and pools that you can create in a given Region.
|
1974
|
-
# For more information see [
|
1975
|
-
#
|
1995
|
+
# For more information see [Quotas ][1] in the *AWS End User Messaging
|
1996
|
+
# SMS User Guide*.
|
1976
1997
|
#
|
1977
1998
|
#
|
1978
1999
|
#
|
1979
|
-
# [1]: https://docs.aws.amazon.com/
|
2000
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/quotas.html
|
1980
2001
|
#
|
1981
2002
|
# @option params [String] :next_token
|
1982
2003
|
# The token to be used for the next set of paginated results. You don't
|
@@ -2100,8 +2121,8 @@ module Aws::PinpointSMSVoiceV2
|
|
2100
2121
|
# number or pool. It is also a specific word or phrase that an end user
|
2101
2122
|
# can send to your number to elicit a response, such as an informational
|
2102
2123
|
# message or a special offer. When your number receives a message that
|
2103
|
-
# begins with a keyword,
|
2104
|
-
# message.
|
2124
|
+
# begins with a keyword, AWS End User Messaging SMS and Voice responds
|
2125
|
+
# with a customizable message.
|
2105
2126
|
#
|
2106
2127
|
# If you specify a keyword that isn't valid, an error is returned.
|
2107
2128
|
#
|
@@ -3036,18 +3057,18 @@ module Aws::PinpointSMSVoiceV2
|
|
3036
3057
|
req.send_request(options)
|
3037
3058
|
end
|
3038
3059
|
|
3039
|
-
# Describes the current
|
3040
|
-
#
|
3060
|
+
# Describes the current monthly spend limits for sending voice and text
|
3061
|
+
# messages.
|
3041
3062
|
#
|
3042
3063
|
# When you establish an Amazon Web Services account, the account has
|
3043
3064
|
# initial monthly spend limit in a given Region. For more information on
|
3044
3065
|
# increasing your monthly spend limit, see [ Requesting increases to
|
3045
|
-
# your monthly SMS
|
3046
|
-
#
|
3066
|
+
# your monthly SMS, MMS, or Voice spending quota ][1] in the *AWS End
|
3067
|
+
# User Messaging SMS User Guide*.
|
3047
3068
|
#
|
3048
3069
|
#
|
3049
3070
|
#
|
3050
|
-
# [1]: https://docs.aws.amazon.com/
|
3071
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/awssupport-spend-threshold.html
|
3051
3072
|
#
|
3052
3073
|
# @option params [String] :next_token
|
3053
3074
|
# The token to be used for the next set of paginated results. You don't
|
@@ -3500,8 +3521,8 @@ module Aws::PinpointSMSVoiceV2
|
|
3500
3521
|
# number or pool. It is also a specific word or phrase that an end user
|
3501
3522
|
# can send to your number to elicit a response, such as an informational
|
3502
3523
|
# message or a special offer. When your number receives a message that
|
3503
|
-
# begins with a keyword,
|
3504
|
-
# message.
|
3524
|
+
# begins with a keyword, AWS End User Messaging SMS and Voice responds
|
3525
|
+
# with a customizable message.
|
3505
3526
|
#
|
3506
3527
|
# If you specify a keyword that isn't valid, an error is returned.
|
3507
3528
|
#
|
@@ -3774,12 +3795,12 @@ module Aws::PinpointSMSVoiceV2
|
|
3774
3795
|
end
|
3775
3796
|
|
3776
3797
|
# Request an origination phone number for use in your account. For more
|
3777
|
-
# information on phone number request see [
|
3778
|
-
# the *
|
3798
|
+
# information on phone number request see [Request a phone number][1] in
|
3799
|
+
# the *AWS End User Messaging SMS User Guide*.
|
3779
3800
|
#
|
3780
3801
|
#
|
3781
3802
|
#
|
3782
|
-
# [1]: https://docs.aws.amazon.com/
|
3803
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/phone-numbers-request.html
|
3783
3804
|
#
|
3784
3805
|
# @option params [required, String] :iso_country_code
|
3785
3806
|
# The two-character code, in ISO 3166-1 alpha-2 format, for the country
|
@@ -4142,17 +4163,19 @@ module Aws::PinpointSMSVoiceV2
|
|
4142
4163
|
end
|
4143
4164
|
|
4144
4165
|
# Creates a new text message and sends it to a recipient's phone
|
4145
|
-
# number.
|
4166
|
+
# number. SendTextMessage only sends an SMS message to one recipient
|
4167
|
+
# each time it is invoked.
|
4146
4168
|
#
|
4147
4169
|
# SMS throughput limits are measured in Message Parts per Second (MPS).
|
4148
4170
|
# Your MPS limit depends on the destination country of your messages, as
|
4149
4171
|
# well as the type of phone number (origination number) that you use to
|
4150
|
-
# send the message. For more information, see [Message Parts
|
4151
|
-
# (MPS) limits][1] in the *
|
4172
|
+
# send the message. For more information about MPS, see [Message Parts
|
4173
|
+
# per Second (MPS) limits][1] in the *AWS End User Messaging SMS User
|
4174
|
+
# Guide*.
|
4152
4175
|
#
|
4153
4176
|
#
|
4154
4177
|
#
|
4155
|
-
# [1]: https://docs.aws.amazon.com/
|
4178
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/sms-limitations-mps.html
|
4156
4179
|
#
|
4157
4180
|
# @option params [required, String] :destination_phone_number
|
4158
4181
|
# The destination phone number in E.164 format.
|
@@ -4180,10 +4203,15 @@ module Aws::PinpointSMSVoiceV2
|
|
4180
4203
|
#
|
4181
4204
|
# @option params [String] :max_price
|
4182
4205
|
# The maximum amount that you want to spend, in US dollars, per each
|
4183
|
-
# text message
|
4206
|
+
# text message. If the calculated amount to send the text message is
|
4207
|
+
# greater than `MaxPrice`, the message is not sent and an error is
|
4208
|
+
# returned.
|
4184
4209
|
#
|
4185
4210
|
# @option params [Integer] :time_to_live
|
4186
|
-
# How long the text message is valid for. By default this is
|
4211
|
+
# How long the text message is valid for, in seconds. By default this is
|
4212
|
+
# 72 hours. If the messages isn't handed off before the TTL expires we
|
4213
|
+
# stop attempting to hand off the message and return `TTL_EXPIRED`
|
4214
|
+
# event.
|
4187
4215
|
#
|
4188
4216
|
# @option params [Hash<String,String>] :context
|
4189
4217
|
# You can specify custom data in this field. If you do, that data is
|
@@ -4196,13 +4224,34 @@ module Aws::PinpointSMSVoiceV2
|
|
4196
4224
|
# [Special requirements for sending SMS messages to recipients in
|
4197
4225
|
# India][1].
|
4198
4226
|
#
|
4227
|
+
# * `IN_ENTITY_ID` The entity ID or Principal Entity (PE) ID that you
|
4228
|
+
# received after completing the sender ID registration process.
|
4229
|
+
#
|
4230
|
+
# * `IN_TEMPLATE_ID` The template ID that you received after completing
|
4231
|
+
# the sender ID registration process.
|
4232
|
+
#
|
4233
|
+
# Make sure that the Template ID that you specify matches your message
|
4234
|
+
# template exactly. If your message doesn't match the template that
|
4235
|
+
# you provided during the registration process, the mobile carriers
|
4236
|
+
# might reject your message.
|
4237
|
+
#
|
4199
4238
|
#
|
4200
4239
|
#
|
4201
4240
|
# [1]: https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-sms-senderid-india.html
|
4202
4241
|
#
|
4203
4242
|
# @option params [Boolean] :dry_run
|
4204
4243
|
# When set to true, the message is checked and validated, but isn't
|
4205
|
-
# sent to the end recipient.
|
4244
|
+
# sent to the end recipient. You are not charged for using `DryRun`.
|
4245
|
+
#
|
4246
|
+
# The Message Parts per Second (MPS) limit when using `DryRun` is five.
|
4247
|
+
# If your origination identity has a lower MPS limit then the lower MPS
|
4248
|
+
# limit is used. For more information about MPS limits, see [Message
|
4249
|
+
# Parts per Second (MPS) limits][1] in the *AWS End User Messaging SMS
|
4250
|
+
# User Guide*..
|
4251
|
+
#
|
4252
|
+
#
|
4253
|
+
#
|
4254
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/sms-limitations-mps.html
|
4206
4255
|
#
|
4207
4256
|
# @option params [String] :protect_configuration_id
|
4208
4257
|
# The unique identifier for the protect configuration.
|
@@ -4245,9 +4294,9 @@ module Aws::PinpointSMSVoiceV2
|
|
4245
4294
|
req.send_request(options)
|
4246
4295
|
end
|
4247
4296
|
|
4248
|
-
# Allows you to send a request that sends a voice message
|
4249
|
-
#
|
4250
|
-
#
|
4297
|
+
# Allows you to send a request that sends a voice message. This
|
4298
|
+
# operation uses [Amazon Polly][1] to convert a text script into a voice
|
4299
|
+
# message.
|
4251
4300
|
#
|
4252
4301
|
#
|
4253
4302
|
#
|
@@ -4600,17 +4649,16 @@ module Aws::PinpointSMSVoiceV2
|
|
4600
4649
|
req.send_request(options)
|
4601
4650
|
end
|
4602
4651
|
|
4603
|
-
# Adds or overwrites only the specified tags for the specified
|
4604
|
-
#
|
4605
|
-
#
|
4606
|
-
#
|
4607
|
-
#
|
4608
|
-
#
|
4609
|
-
# the *Amazon Pinpoint Developer Guide*.
|
4652
|
+
# Adds or overwrites only the specified tags for the specified resource.
|
4653
|
+
# When you specify an existing tag key, the value is overwritten with
|
4654
|
+
# the new value. Each resource can have a maximum of 50 tags. Each tag
|
4655
|
+
# consists of a key and an optional value. Tag keys must be unique per
|
4656
|
+
# resource. For more information about tags, see [Tags ][1] in the *AWS
|
4657
|
+
# End User Messaging SMS User Guide*.
|
4610
4658
|
#
|
4611
4659
|
#
|
4612
4660
|
#
|
4613
|
-
# [1]: https://docs.aws.amazon.com/
|
4661
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/phone-numbers-tags.html
|
4614
4662
|
#
|
4615
4663
|
# @option params [required, String] :resource_arn
|
4616
4664
|
# The Amazon Resource Name (ARN) of the resource.
|
@@ -4642,14 +4690,13 @@ module Aws::PinpointSMSVoiceV2
|
|
4642
4690
|
req.send_request(options)
|
4643
4691
|
end
|
4644
4692
|
|
4645
|
-
# Removes the association of the specified tags from
|
4646
|
-
#
|
4647
|
-
#
|
4648
|
-
# Guide*.
|
4693
|
+
# Removes the association of the specified tags from a resource. For
|
4694
|
+
# more information on tags see [Tags ][1] in the *AWS End User Messaging
|
4695
|
+
# SMS User Guide*.
|
4649
4696
|
#
|
4650
4697
|
#
|
4651
4698
|
#
|
4652
|
-
# [1]: https://docs.aws.amazon.com/
|
4699
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/phone-numbers-tags.html
|
4653
4700
|
#
|
4654
4701
|
# @option params [required, String] :resource_arn
|
4655
4702
|
# The Amazon Resource Name (ARN) of the resource.
|
@@ -4676,13 +4723,13 @@ module Aws::PinpointSMSVoiceV2
|
|
4676
4723
|
end
|
4677
4724
|
|
4678
4725
|
# Updates an existing event destination in a configuration set. You can
|
4679
|
-
# update the IAM role ARN for CloudWatch Logs and
|
4680
|
-
#
|
4726
|
+
# update the IAM role ARN for CloudWatch Logs and Firehose. You can also
|
4727
|
+
# enable or disable the event destination.
|
4681
4728
|
#
|
4682
4729
|
# You may want to update an event destination to change its matching
|
4683
4730
|
# event types or updating the destination resource ARN. You can't
|
4684
|
-
# change an event destination's type between CloudWatch Logs,
|
4685
|
-
#
|
4731
|
+
# change an event destination's type between CloudWatch Logs, Firehose,
|
4732
|
+
# and Amazon SNS.
|
4686
4733
|
#
|
4687
4734
|
# @option params [required, String] :configuration_set_name
|
4688
4735
|
# The configuration set to update with the new event destination. Valid
|
@@ -4708,7 +4755,7 @@ module Aws::PinpointSMSVoiceV2
|
|
4708
4755
|
#
|
4709
4756
|
# @option params [Types::KinesisFirehoseDestination] :kinesis_firehose_destination
|
4710
4757
|
# An object that contains information about an event destination for
|
4711
|
-
# logging to
|
4758
|
+
# logging to Firehose.
|
4712
4759
|
#
|
4713
4760
|
# @option params [Types::SnsDestination] :sns_destination
|
4714
4761
|
# An object that contains information about an event destination that
|
@@ -4788,11 +4835,12 @@ module Aws::PinpointSMSVoiceV2
|
|
4788
4835
|
#
|
4789
4836
|
# @option params [Boolean] :self_managed_opt_outs_enabled
|
4790
4837
|
# By default this is set to false. When an end recipient sends a message
|
4791
|
-
# that begins with HELP or STOP to one of your dedicated numbers,
|
4792
|
-
#
|
4793
|
-
# the end recipient to the OptOutList.
|
4794
|
-
# responsible for responding to HELP and STOP
|
4795
|
-
# responsible for tracking and honoring opt-out
|
4838
|
+
# that begins with HELP or STOP to one of your dedicated numbers, AWS
|
4839
|
+
# End User Messaging SMS and Voice automatically replies with a
|
4840
|
+
# customizable message and adds the end recipient to the OptOutList.
|
4841
|
+
# When set to true you're responsible for responding to HELP and STOP
|
4842
|
+
# requests. You're also responsible for tracking and honoring opt-out
|
4843
|
+
# requests.
|
4796
4844
|
#
|
4797
4845
|
# @option params [String] :opt_out_list_name
|
4798
4846
|
# The OptOutList to add the phone number to. Valid values for this field
|
@@ -4886,11 +4934,12 @@ module Aws::PinpointSMSVoiceV2
|
|
4886
4934
|
#
|
4887
4935
|
# @option params [Boolean] :self_managed_opt_outs_enabled
|
4888
4936
|
# By default this is set to false. When an end recipient sends a message
|
4889
|
-
# that begins with HELP or STOP to one of your dedicated numbers,
|
4890
|
-
#
|
4891
|
-
# the end recipient to the OptOutList.
|
4892
|
-
# responsible for responding to HELP and STOP
|
4893
|
-
# responsible for tracking and honoring opt-out
|
4937
|
+
# that begins with HELP or STOP to one of your dedicated numbers, AWS
|
4938
|
+
# End User Messaging SMS and Voice automatically replies with a
|
4939
|
+
# customizable message and adds the end recipient to the OptOutList.
|
4940
|
+
# When set to true you're responsible for responding to HELP and STOP
|
4941
|
+
# requests. You're also responsible for tracking and honoring opt-out
|
4942
|
+
# requests.
|
4894
4943
|
#
|
4895
4944
|
# @option params [String] :opt_out_list_name
|
4896
4945
|
# The OptOutList to associate with the pool. Valid values are either
|
@@ -5011,7 +5060,7 @@ module Aws::PinpointSMSVoiceV2
|
|
5011
5060
|
# contain the details for the requested NumberCapability. The Key is the
|
5012
5061
|
# two-letter ISO country code. For a list of supported ISO country
|
5013
5062
|
# codes, see [Supported countries and regions (SMS channel)][1] in the
|
5014
|
-
#
|
5063
|
+
# AWS End User Messaging SMS User Guide.
|
5015
5064
|
#
|
5016
5065
|
#
|
5017
5066
|
#
|
@@ -5155,14 +5204,19 @@ module Aws::PinpointSMSVoiceV2
|
|
5155
5204
|
# @api private
|
5156
5205
|
def build_request(operation_name, params = {})
|
5157
5206
|
handlers = @handlers.for(operation_name)
|
5207
|
+
tracer = config.telemetry_provider.tracer_provider.tracer(
|
5208
|
+
Aws::Telemetry.module_to_tracer_name('Aws::PinpointSMSVoiceV2')
|
5209
|
+
)
|
5158
5210
|
context = Seahorse::Client::RequestContext.new(
|
5159
5211
|
operation_name: operation_name,
|
5160
5212
|
operation: config.api.operation(operation_name),
|
5161
5213
|
client: self,
|
5162
5214
|
params: params,
|
5163
|
-
config: config
|
5215
|
+
config: config,
|
5216
|
+
tracer: tracer
|
5217
|
+
)
|
5164
5218
|
context[:gem_name] = 'aws-sdk-pinpointsmsvoicev2'
|
5165
|
-
context[:gem_version] = '1.
|
5219
|
+
context[:gem_version] = '1.22.0'
|
5166
5220
|
Seahorse::Client::Request.new(handlers, context)
|
5167
5221
|
end
|
5168
5222
|
|
@@ -1868,9 +1868,11 @@ module Aws::PinpointSMSVoiceV2
|
|
1868
1868
|
|
1869
1869
|
api.metadata = {
|
1870
1870
|
"apiVersion" => "2022-03-31",
|
1871
|
+
"auth" => ["aws.auth#sigv4"],
|
1871
1872
|
"endpointPrefix" => "sms-voice",
|
1872
1873
|
"jsonVersion" => "1.0",
|
1873
1874
|
"protocol" => "json",
|
1875
|
+
"protocols" => ["json"],
|
1874
1876
|
"serviceFullName" => "Amazon Pinpoint SMS Voice V2",
|
1875
1877
|
"serviceId" => "Pinpoint SMS Voice V2",
|
1876
1878
|
"signatureVersion" => "v4",
|
@@ -396,7 +396,8 @@ module Aws::PinpointSMSVoiceV2
|
|
396
396
|
#
|
397
397
|
# @!attribute [rw] matching_event_types
|
398
398
|
# An array of event types that determine which events to log. If
|
399
|
-
# "ALL" is used, then
|
399
|
+
# "ALL" is used, then AWS End User Messaging SMS and Voice logs
|
400
|
+
# every event type.
|
400
401
|
#
|
401
402
|
# <note markdown="1"> The `TEXT_SENT` event type is not supported.
|
402
403
|
#
|
@@ -410,7 +411,7 @@ module Aws::PinpointSMSVoiceV2
|
|
410
411
|
#
|
411
412
|
# @!attribute [rw] kinesis_firehose_destination
|
412
413
|
# An object that contains information about an event destination for
|
413
|
-
# logging to Amazon
|
414
|
+
# logging to Amazon Data Firehose.
|
414
415
|
# @return [Types::KinesisFirehoseDestination]
|
415
416
|
#
|
416
417
|
# @!attribute [rw] sns_destination
|
@@ -531,6 +532,13 @@ module Aws::PinpointSMSVoiceV2
|
|
531
532
|
# DescribePhoneNumbers to find the values for PhoneNumberId and
|
532
533
|
# PhoneNumberArn while DescribeSenderIds can be used to get the values
|
533
534
|
# for SenderId and SenderIdArn.
|
535
|
+
#
|
536
|
+
# After the pool is created you can add more origination identities to
|
537
|
+
# the pool by using [AssociateOriginationIdentity][1].
|
538
|
+
#
|
539
|
+
#
|
540
|
+
#
|
541
|
+
# [1]: https://docs.aws.amazon.com/pinpoint/latest/apireference_smsvoicev2/API_AssociateOriginationIdentity.html
|
534
542
|
# @return [String]
|
535
543
|
#
|
536
544
|
# @!attribute [rw] iso_country_code
|
@@ -541,7 +549,8 @@ module Aws::PinpointSMSVoiceV2
|
|
541
549
|
# @!attribute [rw] message_type
|
542
550
|
# The type of message. Valid values are TRANSACTIONAL for messages
|
543
551
|
# that are critical or time-sensitive and PROMOTIONAL for messages
|
544
|
-
# that aren't critical or time-sensitive.
|
552
|
+
# that aren't critical or time-sensitive. After the pool is created
|
553
|
+
# the MessageType can't be changed.
|
545
554
|
# @return [String]
|
546
555
|
#
|
547
556
|
# @!attribute [rw] deletion_protection_enabled
|
@@ -616,10 +625,11 @@ module Aws::PinpointSMSVoiceV2
|
|
616
625
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
617
626
|
# By default this is set to false. When an end recipient sends a
|
618
627
|
# message that begins with HELP or STOP to one of your dedicated
|
619
|
-
# numbers,
|
620
|
-
# message and adds the end recipient to the
|
621
|
-
# true you're responsible for responding to
|
622
|
-
# You're also responsible for tracking and
|
628
|
+
# numbers, AWS End User Messaging SMS and Voice automatically replies
|
629
|
+
# with a customizable message and adds the end recipient to the
|
630
|
+
# OptOutList. When set to true you're responsible for responding to
|
631
|
+
# HELP and STOP requests. You're also responsible for tracking and
|
632
|
+
# honoring opt-out requests.
|
623
633
|
# @return [Boolean]
|
624
634
|
#
|
625
635
|
# @!attribute [rw] opt_out_list_name
|
@@ -627,7 +637,9 @@ module Aws::PinpointSMSVoiceV2
|
|
627
637
|
# @return [String]
|
628
638
|
#
|
629
639
|
# @!attribute [rw] shared_routes_enabled
|
630
|
-
# Indicates whether shared routes are enabled for the pool.
|
640
|
+
# Indicates whether shared routes are enabled for the pool. Set to
|
641
|
+
# false and only origination identities in this pool are used to send
|
642
|
+
# messages.
|
631
643
|
# @return [Boolean]
|
632
644
|
#
|
633
645
|
# @!attribute [rw] deletion_protection_enabled
|
@@ -1562,10 +1574,11 @@ module Aws::PinpointSMSVoiceV2
|
|
1562
1574
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
1563
1575
|
# By default this is set to false. When an end recipient sends a
|
1564
1576
|
# message that begins with HELP or STOP to one of your dedicated
|
1565
|
-
# numbers,
|
1566
|
-
# message and adds the end recipient to the
|
1567
|
-
# true you're responsible for responding to
|
1568
|
-
# You're also responsible for tracking and
|
1577
|
+
# numbers, AWS End User Messaging SMS and Voice automatically replies
|
1578
|
+
# with a customizable message and adds the end recipient to the
|
1579
|
+
# OptOutList. When set to true you're responsible for responding to
|
1580
|
+
# HELP and STOP requests. You're also responsible for tracking and
|
1581
|
+
# honoring opt-out requests.
|
1569
1582
|
# @return [Boolean]
|
1570
1583
|
#
|
1571
1584
|
# @!attribute [rw] opt_out_list_name
|
@@ -3095,8 +3108,8 @@ module Aws::PinpointSMSVoiceV2
|
|
3095
3108
|
# Contains information about an event destination.
|
3096
3109
|
#
|
3097
3110
|
# Event destinations are associated with configuration sets, which
|
3098
|
-
# enable you to publish message sending events to CloudWatch,
|
3099
|
-
#
|
3111
|
+
# enable you to publish message sending events to CloudWatch, Firehose,
|
3112
|
+
# or Amazon SNS.
|
3100
3113
|
#
|
3101
3114
|
# @!attribute [rw] event_destination_name
|
3102
3115
|
# The name of the EventDestination.
|
@@ -3121,7 +3134,7 @@ module Aws::PinpointSMSVoiceV2
|
|
3121
3134
|
#
|
3122
3135
|
# @!attribute [rw] kinesis_firehose_destination
|
3123
3136
|
# An object that contains information about an event destination for
|
3124
|
-
# logging to Amazon
|
3137
|
+
# logging to Amazon Data Firehose.
|
3125
3138
|
# @return [Types::KinesisFirehoseDestination]
|
3126
3139
|
#
|
3127
3140
|
# @!attribute [rw] sns_destination
|
@@ -3178,7 +3191,7 @@ module Aws::PinpointSMSVoiceV2
|
|
3178
3191
|
# contain the details for the requested NumberCapability. The Key is
|
3179
3192
|
# the two-letter ISO country code. For a list of supported ISO country
|
3180
3193
|
# codes, see [Supported countries and regions (SMS channel)][1] in the
|
3181
|
-
#
|
3194
|
+
# AWS End User Messaging SMS User Guide.
|
3182
3195
|
#
|
3183
3196
|
#
|
3184
3197
|
#
|
@@ -3261,15 +3274,15 @@ module Aws::PinpointSMSVoiceV2
|
|
3261
3274
|
|
3262
3275
|
# Contains the delivery stream Amazon Resource Name (ARN), and the ARN
|
3263
3276
|
# of the Identity and Access Management (IAM) role associated with a
|
3264
|
-
#
|
3277
|
+
# Firehose event destination.
|
3265
3278
|
#
|
3266
|
-
# Event destinations, such as
|
3279
|
+
# Event destinations, such as Firehose, are associated with
|
3267
3280
|
# configuration sets, which enable you to publish message sending
|
3268
3281
|
# events.
|
3269
3282
|
#
|
3270
3283
|
# @!attribute [rw] iam_role_arn
|
3271
3284
|
# The ARN of an Identity and Access Management role that is able to
|
3272
|
-
# write event data to an Amazon
|
3285
|
+
# write event data to an Amazon Data Firehose destination.
|
3273
3286
|
# @return [String]
|
3274
3287
|
#
|
3275
3288
|
# @!attribute [rw] delivery_stream_arn
|
@@ -3629,12 +3642,12 @@ module Aws::PinpointSMSVoiceV2
|
|
3629
3642
|
#
|
3630
3643
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
3631
3644
|
# When set to false an end recipient sends a message that begins with
|
3632
|
-
# HELP or STOP to one of your dedicated numbers,
|
3633
|
-
# automatically replies with a customizable
|
3634
|
-
# recipient to the OptOutList. When set to
|
3635
|
-
# for responding to HELP and STOP requests.
|
3636
|
-
# for tracking and honoring opt-out request.
|
3637
|
-
# [Self-managed opt-outs][1]
|
3645
|
+
# HELP or STOP to one of your dedicated numbers, AWS End User
|
3646
|
+
# Messaging SMS and Voice automatically replies with a customizable
|
3647
|
+
# message and adds the end recipient to the OptOutList. When set to
|
3648
|
+
# true you're responsible for responding to HELP and STOP requests.
|
3649
|
+
# You're also responsible for tracking and honoring opt-out request.
|
3650
|
+
# For more information see [Self-managed opt-outs][1]
|
3638
3651
|
#
|
3639
3652
|
#
|
3640
3653
|
#
|
@@ -3746,12 +3759,12 @@ module Aws::PinpointSMSVoiceV2
|
|
3746
3759
|
#
|
3747
3760
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
3748
3761
|
# When set to false, an end recipient sends a message that begins with
|
3749
|
-
# HELP or STOP to one of your dedicated numbers,
|
3750
|
-
# automatically replies with a customizable
|
3751
|
-
# recipient to the OptOutList. When set to
|
3752
|
-
# for responding to HELP and STOP requests.
|
3753
|
-
# for tracking and honoring opt-out requests.
|
3754
|
-
# [Self-managed opt-outs][1]
|
3762
|
+
# HELP or STOP to one of your dedicated numbers, AWS End User
|
3763
|
+
# Messaging SMS and Voice automatically replies with a customizable
|
3764
|
+
# message and adds the end recipient to the OptOutList. When set to
|
3765
|
+
# true you're responsible for responding to HELP and STOP requests.
|
3766
|
+
# You're also responsible for tracking and honoring opt-out requests.
|
3767
|
+
# For more information see [Self-managed opt-outs][1]
|
3755
3768
|
#
|
3756
3769
|
#
|
3757
3770
|
#
|
@@ -3767,10 +3780,9 @@ module Aws::PinpointSMSVoiceV2
|
|
3767
3780
|
#
|
3768
3781
|
# By default, this is set to `False`. If you set this value to `True`,
|
3769
3782
|
# your messages are sent using phone numbers or sender IDs (depending
|
3770
|
-
# on the country) that are shared with other
|
3771
|
-
#
|
3772
|
-
#
|
3773
|
-
# code.
|
3783
|
+
# on the country) that are shared with other users. In some countries,
|
3784
|
+
# such as the United States, senders aren't allowed to use shared
|
3785
|
+
# routes and must use a dedicated phone number or short code.
|
3774
3786
|
# @return [Boolean]
|
3775
3787
|
#
|
3776
3788
|
# @!attribute [rw] deletion_protection_enabled
|
@@ -4854,10 +4866,11 @@ module Aws::PinpointSMSVoiceV2
|
|
4854
4866
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
4855
4867
|
# By default this is set to false. When an end recipient sends a
|
4856
4868
|
# message that begins with HELP or STOP to one of your dedicated
|
4857
|
-
# numbers,
|
4858
|
-
# message and adds the end recipient to the
|
4859
|
-
# true you're responsible for responding to
|
4860
|
-
# You're also responsible for tracking and
|
4869
|
+
# numbers, AWS End User Messaging SMS and Voice automatically replies
|
4870
|
+
# with a customizable message and adds the end recipient to the
|
4871
|
+
# OptOutList. When set to true you're responsible for responding to
|
4872
|
+
# HELP and STOP requests. You're also responsible for tracking and
|
4873
|
+
# honoring opt-out requests.
|
4861
4874
|
# @return [Boolean]
|
4862
4875
|
#
|
4863
4876
|
# @!attribute [rw] opt_out_list_name
|
@@ -5093,10 +5106,11 @@ module Aws::PinpointSMSVoiceV2
|
|
5093
5106
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
5094
5107
|
# By default this is set to false. When an end recipient sends a
|
5095
5108
|
# message that begins with HELP or STOP to one of your dedicated
|
5096
|
-
# numbers,
|
5097
|
-
# message and adds the end recipient to the
|
5098
|
-
# true you're responsible for responding to
|
5099
|
-
# You're also responsible for tracking and
|
5109
|
+
# numbers, AWS End User Messaging SMS and Voice automatically replies
|
5110
|
+
# with a customizable message and adds the end recipient to the
|
5111
|
+
# OptOutList. When set to true you're responsible for responding to
|
5112
|
+
# HELP and STOP requests. You're also responsible for tracking and
|
5113
|
+
# honoring opt-out requests.
|
5100
5114
|
# @return [Boolean]
|
5101
5115
|
#
|
5102
5116
|
# @!attribute [rw] opt_out_list_name
|
@@ -5513,11 +5527,16 @@ module Aws::PinpointSMSVoiceV2
|
|
5513
5527
|
#
|
5514
5528
|
# @!attribute [rw] max_price
|
5515
5529
|
# The maximum amount that you want to spend, in US dollars, per each
|
5516
|
-
# text message
|
5530
|
+
# text message. If the calculated amount to send the text message is
|
5531
|
+
# greater than `MaxPrice`, the message is not sent and an error is
|
5532
|
+
# returned.
|
5517
5533
|
# @return [String]
|
5518
5534
|
#
|
5519
5535
|
# @!attribute [rw] time_to_live
|
5520
|
-
# How long the text message is valid for. By default this
|
5536
|
+
# How long the text message is valid for, in seconds. By default this
|
5537
|
+
# is 72 hours. If the messages isn't handed off before the TTL
|
5538
|
+
# expires we stop attempting to hand off the message and return
|
5539
|
+
# `TTL_EXPIRED` event.
|
5521
5540
|
# @return [Integer]
|
5522
5541
|
#
|
5523
5542
|
# @!attribute [rw] context
|
@@ -5532,6 +5551,17 @@ module Aws::PinpointSMSVoiceV2
|
|
5532
5551
|
# information see [Special requirements for sending SMS messages to
|
5533
5552
|
# recipients in India][1].
|
5534
5553
|
#
|
5554
|
+
# * `IN_ENTITY_ID` The entity ID or Principal Entity (PE) ID that you
|
5555
|
+
# received after completing the sender ID registration process.
|
5556
|
+
#
|
5557
|
+
# * `IN_TEMPLATE_ID` The template ID that you received after
|
5558
|
+
# completing the sender ID registration process.
|
5559
|
+
#
|
5560
|
+
# Make sure that the Template ID that you specify matches your
|
5561
|
+
# message template exactly. If your message doesn't match the
|
5562
|
+
# template that you provided during the registration process, the
|
5563
|
+
# mobile carriers might reject your message.
|
5564
|
+
#
|
5535
5565
|
#
|
5536
5566
|
#
|
5537
5567
|
# [1]: https://docs.aws.amazon.com/pinpoint/latest/userguide/channels-sms-senderid-india.html
|
@@ -5539,7 +5569,17 @@ module Aws::PinpointSMSVoiceV2
|
|
5539
5569
|
#
|
5540
5570
|
# @!attribute [rw] dry_run
|
5541
5571
|
# When set to true, the message is checked and validated, but isn't
|
5542
|
-
# sent to the end recipient.
|
5572
|
+
# sent to the end recipient. You are not charged for using `DryRun`.
|
5573
|
+
#
|
5574
|
+
# The Message Parts per Second (MPS) limit when using `DryRun` is
|
5575
|
+
# five. If your origination identity has a lower MPS limit then the
|
5576
|
+
# lower MPS limit is used. For more information about MPS limits, see
|
5577
|
+
# [Message Parts per Second (MPS) limits][1] in the *AWS End User
|
5578
|
+
# Messaging SMS User Guide*..
|
5579
|
+
#
|
5580
|
+
#
|
5581
|
+
#
|
5582
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/sms-limitations-mps.html
|
5543
5583
|
# @return [Boolean]
|
5544
5584
|
#
|
5545
5585
|
# @!attribute [rw] protect_configuration_id
|
@@ -5674,12 +5714,11 @@ module Aws::PinpointSMSVoiceV2
|
|
5674
5714
|
|
5675
5715
|
# The alphanumeric sender ID in a specific country that you want to
|
5676
5716
|
# describe. For more information on sender IDs see [Requesting sender
|
5677
|
-
# IDs
|
5678
|
-
# Pinpoint User Guide*.
|
5717
|
+
# IDs ][1] in the *AWS End User Messaging SMS User Guide*.
|
5679
5718
|
#
|
5680
5719
|
#
|
5681
5720
|
#
|
5682
|
-
# [1]: https://docs.aws.amazon.com/
|
5721
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/sender-id-request.html
|
5683
5722
|
#
|
5684
5723
|
# @!attribute [rw] sender_id
|
5685
5724
|
# The unique identifier of the sender.
|
@@ -5995,15 +6034,14 @@ module Aws::PinpointSMSVoiceV2
|
|
5995
6034
|
include Aws::Structure
|
5996
6035
|
end
|
5997
6036
|
|
5998
|
-
# Describes the current
|
5999
|
-
#
|
6000
|
-
#
|
6001
|
-
#
|
6002
|
-
# Guide*.
|
6037
|
+
# Describes the current monthly spend limits for sending voice and text
|
6038
|
+
# messages. For more information on increasing your monthly spend limit,
|
6039
|
+
# see [ Requesting a spending quota increase ][1] in the *AWS End User
|
6040
|
+
# Messaging SMS User Guide*.
|
6003
6041
|
#
|
6004
6042
|
#
|
6005
6043
|
#
|
6006
|
-
# [1]: https://docs.aws.amazon.com/
|
6044
|
+
# [1]: https://docs.aws.amazon.com/sms-voice/latest/userguide/awssupport-spend-threshold.html
|
6007
6045
|
#
|
6008
6046
|
# @!attribute [rw] name
|
6009
6047
|
# The name for the SpendLimit.
|
@@ -6289,7 +6327,7 @@ module Aws::PinpointSMSVoiceV2
|
|
6289
6327
|
#
|
6290
6328
|
# @!attribute [rw] kinesis_firehose_destination
|
6291
6329
|
# An object that contains information about an event destination for
|
6292
|
-
# logging to
|
6330
|
+
# logging to Firehose.
|
6293
6331
|
# @return [Types::KinesisFirehoseDestination]
|
6294
6332
|
#
|
6295
6333
|
# @!attribute [rw] sns_destination
|
@@ -6357,10 +6395,11 @@ module Aws::PinpointSMSVoiceV2
|
|
6357
6395
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
6358
6396
|
# By default this is set to false. When an end recipient sends a
|
6359
6397
|
# message that begins with HELP or STOP to one of your dedicated
|
6360
|
-
# numbers,
|
6361
|
-
# message and adds the end recipient to the
|
6362
|
-
# true you're responsible for responding to
|
6363
|
-
# You're also responsible for tracking and
|
6398
|
+
# numbers, AWS End User Messaging SMS and Voice automatically replies
|
6399
|
+
# with a customizable message and adds the end recipient to the
|
6400
|
+
# OptOutList. When set to true you're responsible for responding to
|
6401
|
+
# HELP and STOP requests. You're also responsible for tracking and
|
6402
|
+
# honoring opt-out requests.
|
6364
6403
|
# @return [Boolean]
|
6365
6404
|
#
|
6366
6405
|
# @!attribute [rw] opt_out_list_name
|
@@ -6512,10 +6551,11 @@ module Aws::PinpointSMSVoiceV2
|
|
6512
6551
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
6513
6552
|
# By default this is set to false. When an end recipient sends a
|
6514
6553
|
# message that begins with HELP or STOP to one of your dedicated
|
6515
|
-
# numbers,
|
6516
|
-
# message and adds the end recipient to the
|
6517
|
-
# true you're responsible for responding to
|
6518
|
-
# You're also responsible for tracking and
|
6554
|
+
# numbers, AWS End User Messaging SMS and Voice automatically replies
|
6555
|
+
# with a customizable message and adds the end recipient to the
|
6556
|
+
# OptOutList. When set to true you're responsible for responding to
|
6557
|
+
# HELP and STOP requests. You're also responsible for tracking and
|
6558
|
+
# honoring opt-out requests.
|
6519
6559
|
# @return [Boolean]
|
6520
6560
|
#
|
6521
6561
|
# @!attribute [rw] opt_out_list_name
|
@@ -6578,11 +6618,11 @@ module Aws::PinpointSMSVoiceV2
|
|
6578
6618
|
#
|
6579
6619
|
# @!attribute [rw] self_managed_opt_outs_enabled
|
6580
6620
|
# When an end recipient sends a message that begins with HELP or STOP
|
6581
|
-
# to one of your dedicated numbers,
|
6582
|
-
# replies with a customizable message and adds the
|
6583
|
-
# the OptOutList. When set to true you're
|
6584
|
-
# to HELP and STOP requests. You're also
|
6585
|
-
# honoring opt-out requests.
|
6621
|
+
# to one of your dedicated numbers, AWS End User Messaging SMS and
|
6622
|
+
# Voice automatically replies with a customizable message and adds the
|
6623
|
+
# end recipient to the OptOutList. When set to true you're
|
6624
|
+
# responsible for responding to HELP and STOP requests. You're also
|
6625
|
+
# responsible for tracking and honoring opt-out requests.
|
6586
6626
|
# @return [Boolean]
|
6587
6627
|
#
|
6588
6628
|
# @!attribute [rw] opt_out_list_name
|
@@ -6637,7 +6677,7 @@ module Aws::PinpointSMSVoiceV2
|
|
6637
6677
|
# contain the details for the requested NumberCapability. The Key is
|
6638
6678
|
# the two-letter ISO country code. For a list of supported ISO country
|
6639
6679
|
# codes, see [Supported countries and regions (SMS channel)][1] in the
|
6640
|
-
#
|
6680
|
+
# AWS End User Messaging SMS User Guide.
|
6641
6681
|
#
|
6642
6682
|
#
|
6643
6683
|
#
|
data/sig/client.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
data/sig/resource.rbs
CHANGED
@@ -51,6 +51,7 @@ module Aws
|
|
51
51
|
?sigv4a_signing_region_set: Array[String],
|
52
52
|
?simple_json: bool,
|
53
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
54
55
|
?token_provider: untyped,
|
55
56
|
?use_dualstack_endpoint: bool,
|
56
57
|
?use_fips_endpoint: bool,
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-pinpointsmsvoicev2
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.22.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: 2024-
|
11
|
+
date: 2024-09-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.203.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,21 +29,21 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.203.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Pinpoint SMS Voice V2. This gem is part
|
48
48
|
of the AWS SDK for Ruby.
|
49
49
|
email:
|