aws-sdk-pinpointsmsvoice 1.13.0 → 1.18.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 +5 -5
- data/lib/aws-sdk-pinpointsmsvoice.rb +9 -4
- data/lib/aws-sdk-pinpointsmsvoice/client.rb +72 -14
- data/lib/aws-sdk-pinpointsmsvoice/client_api.rb +2 -0
- data/lib/aws-sdk-pinpointsmsvoice/errors.rb +30 -6
- data/lib/aws-sdk-pinpointsmsvoice/resource.rb +3 -0
- data/lib/aws-sdk-pinpointsmsvoice/types.rb +28 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: f20d7834c10f0123ad60b90b76437ba661539c48ffe0b9665c853f9b6a4cc548
|
4
|
+
data.tar.gz: 9d724db9227cbc5c58869160a62030ddacc9891e857ce78b2758c51e8fb8cd1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0515044d2b0bb5d6409da4bfc8c9d9120deca711d4e86797d72ee5805027c045918ffce0793f4c77548e362e73cbc409b68121000a3668bd3a56934e93be2fdd
|
7
|
+
data.tar.gz: 720ddab5fb96069fc03b29a9650dfcafc139182ed16b911f94252b9ca0457272e41320cdcd2b6f055fdd43c48f41a1b2dc2c86bb87949e93f8775d58403ec9a1
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-pinpointsmsvoice/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# pinpoint_sms_voice = Aws::PinpointSMSVoice::Client.new
|
30
|
+
# resp = pinpoint_sms_voice.create_configuration_set(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from Amazon Pinpoint SMS and Voice Service
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from Amazon Pinpoint SMS and Voice Service are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::PinpointSMSVoice::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all Amazon Pinpoint SMS and Voice Service API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-pinpointsmsvoice/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::PinpointSMSVoice
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.18.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:pinpointsmsvoice)
|
31
34
|
|
32
35
|
module Aws::PinpointSMSVoice
|
36
|
+
# An API client for PinpointSMSVoice. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::PinpointSMSVoice::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::PinpointSMSVoice
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV4)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::PinpointSMSVoice
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::PinpointSMSVoice
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::PinpointSMSVoice
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::PinpointSMSVoice
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::PinpointSMSVoice
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::PinpointSMSVoice
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::PinpointSMSVoice
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::PinpointSMSVoice
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::PinpointSMSVoice
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -559,7 +617,7 @@ module Aws::PinpointSMSVoice
|
|
559
617
|
params: params,
|
560
618
|
config: config)
|
561
619
|
context[:gem_name] = 'aws-sdk-pinpointsmsvoice'
|
562
|
-
context[:gem_version] = '1.
|
620
|
+
context[:gem_version] = '1.18.0'
|
563
621
|
Seahorse::Client::Request.new(handlers, context)
|
564
622
|
end
|
565
623
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,34 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::PinpointSMSVoice
|
11
|
+
|
12
|
+
# When PinpointSMSVoice returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::PinpointSMSVoice::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all PinpointSMSVoice errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::PinpointSMSVoice::Errors::ServiceError
|
20
|
+
# # rescues all PinpointSMSVoice API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {AlreadyExistsException}
|
31
|
+
# * {BadRequestException}
|
32
|
+
# * {InternalServiceErrorException}
|
33
|
+
# * {LimitExceededException}
|
34
|
+
# * {NotFoundException}
|
35
|
+
# * {TooManyRequestsException}
|
36
|
+
#
|
37
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
38
|
+
# if they are not defined above.
|
9
39
|
module Errors
|
10
40
|
|
11
41
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +53,6 @@ module Aws::PinpointSMSVoice
|
|
23
53
|
def message
|
24
54
|
@message || @data[:message]
|
25
55
|
end
|
26
|
-
|
27
56
|
end
|
28
57
|
|
29
58
|
class BadRequestException < ServiceError
|
@@ -39,7 +68,6 @@ module Aws::PinpointSMSVoice
|
|
39
68
|
def message
|
40
69
|
@message || @data[:message]
|
41
70
|
end
|
42
|
-
|
43
71
|
end
|
44
72
|
|
45
73
|
class InternalServiceErrorException < ServiceError
|
@@ -55,7 +83,6 @@ module Aws::PinpointSMSVoice
|
|
55
83
|
def message
|
56
84
|
@message || @data[:message]
|
57
85
|
end
|
58
|
-
|
59
86
|
end
|
60
87
|
|
61
88
|
class LimitExceededException < ServiceError
|
@@ -71,7 +98,6 @@ module Aws::PinpointSMSVoice
|
|
71
98
|
def message
|
72
99
|
@message || @data[:message]
|
73
100
|
end
|
74
|
-
|
75
101
|
end
|
76
102
|
|
77
103
|
class NotFoundException < ServiceError
|
@@ -87,7 +113,6 @@ module Aws::PinpointSMSVoice
|
|
87
113
|
def message
|
88
114
|
@message || @data[:message]
|
89
115
|
end
|
90
|
-
|
91
116
|
end
|
92
117
|
|
93
118
|
class TooManyRequestsException < ServiceError
|
@@ -103,7 +128,6 @@ module Aws::PinpointSMSVoice
|
|
103
128
|
def message
|
104
129
|
@message || @data[:message]
|
105
130
|
end
|
106
|
-
|
107
131
|
end
|
108
132
|
|
109
133
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::PinpointSMSVoice
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -17,6 +19,7 @@ module Aws::PinpointSMSVoice
|
|
17
19
|
#
|
18
20
|
class AlreadyExistsException < Struct.new(
|
19
21
|
:message)
|
22
|
+
SENSITIVE = []
|
20
23
|
include Aws::Structure
|
21
24
|
end
|
22
25
|
|
@@ -29,6 +32,7 @@ module Aws::PinpointSMSVoice
|
|
29
32
|
#
|
30
33
|
class BadRequestException < Struct.new(
|
31
34
|
:message)
|
35
|
+
SENSITIVE = []
|
32
36
|
include Aws::Structure
|
33
37
|
end
|
34
38
|
|
@@ -51,6 +55,7 @@ module Aws::PinpointSMSVoice
|
|
51
55
|
#
|
52
56
|
class CallInstructionsMessageType < Struct.new(
|
53
57
|
:text)
|
58
|
+
SENSITIVE = []
|
54
59
|
include Aws::Structure
|
55
60
|
end
|
56
61
|
|
@@ -81,6 +86,7 @@ module Aws::PinpointSMSVoice
|
|
81
86
|
class CloudWatchLogsDestination < Struct.new(
|
82
87
|
:iam_role_arn,
|
83
88
|
:log_group_arn)
|
89
|
+
SENSITIVE = []
|
84
90
|
include Aws::Structure
|
85
91
|
end
|
86
92
|
|
@@ -126,6 +132,7 @@ module Aws::PinpointSMSVoice
|
|
126
132
|
:configuration_set_name,
|
127
133
|
:event_destination,
|
128
134
|
:event_destination_name)
|
135
|
+
SENSITIVE = []
|
129
136
|
include Aws::Structure
|
130
137
|
end
|
131
138
|
|
@@ -153,6 +160,7 @@ module Aws::PinpointSMSVoice
|
|
153
160
|
#
|
154
161
|
class CreateConfigurationSetRequest < Struct.new(
|
155
162
|
:configuration_set_name)
|
163
|
+
SENSITIVE = []
|
156
164
|
include Aws::Structure
|
157
165
|
end
|
158
166
|
|
@@ -182,6 +190,7 @@ module Aws::PinpointSMSVoice
|
|
182
190
|
class DeleteConfigurationSetEventDestinationRequest < Struct.new(
|
183
191
|
:configuration_set_name,
|
184
192
|
:event_destination_name)
|
193
|
+
SENSITIVE = []
|
185
194
|
include Aws::Structure
|
186
195
|
end
|
187
196
|
|
@@ -206,6 +215,7 @@ module Aws::PinpointSMSVoice
|
|
206
215
|
#
|
207
216
|
class DeleteConfigurationSetRequest < Struct.new(
|
208
217
|
:configuration_set_name)
|
218
|
+
SENSITIVE = []
|
209
219
|
include Aws::Structure
|
210
220
|
end
|
211
221
|
|
@@ -258,6 +268,7 @@ module Aws::PinpointSMSVoice
|
|
258
268
|
:matching_event_types,
|
259
269
|
:name,
|
260
270
|
:sns_destination)
|
271
|
+
SENSITIVE = []
|
261
272
|
include Aws::Structure
|
262
273
|
end
|
263
274
|
|
@@ -317,6 +328,7 @@ module Aws::PinpointSMSVoice
|
|
317
328
|
:kinesis_firehose_destination,
|
318
329
|
:matching_event_types,
|
319
330
|
:sns_destination)
|
331
|
+
SENSITIVE = []
|
320
332
|
include Aws::Structure
|
321
333
|
end
|
322
334
|
|
@@ -334,6 +346,7 @@ module Aws::PinpointSMSVoice
|
|
334
346
|
#
|
335
347
|
class GetConfigurationSetEventDestinationsRequest < Struct.new(
|
336
348
|
:configuration_set_name)
|
349
|
+
SENSITIVE = []
|
337
350
|
include Aws::Structure
|
338
351
|
end
|
339
352
|
|
@@ -349,6 +362,7 @@ module Aws::PinpointSMSVoice
|
|
349
362
|
#
|
350
363
|
class GetConfigurationSetEventDestinationsResponse < Struct.new(
|
351
364
|
:event_destinations)
|
365
|
+
SENSITIVE = []
|
352
366
|
include Aws::Structure
|
353
367
|
end
|
354
368
|
|
@@ -363,6 +377,7 @@ module Aws::PinpointSMSVoice
|
|
363
377
|
#
|
364
378
|
class InternalServiceErrorException < Struct.new(
|
365
379
|
:message)
|
380
|
+
SENSITIVE = []
|
366
381
|
include Aws::Structure
|
367
382
|
end
|
368
383
|
|
@@ -392,6 +407,7 @@ module Aws::PinpointSMSVoice
|
|
392
407
|
class KinesisFirehoseDestination < Struct.new(
|
393
408
|
:delivery_stream_arn,
|
394
409
|
:iam_role_arn)
|
410
|
+
SENSITIVE = []
|
395
411
|
include Aws::Structure
|
396
412
|
end
|
397
413
|
|
@@ -404,6 +420,7 @@ module Aws::PinpointSMSVoice
|
|
404
420
|
#
|
405
421
|
class LimitExceededException < Struct.new(
|
406
422
|
:message)
|
423
|
+
SENSITIVE = []
|
407
424
|
include Aws::Structure
|
408
425
|
end
|
409
426
|
|
@@ -426,6 +443,7 @@ module Aws::PinpointSMSVoice
|
|
426
443
|
class ListConfigurationSetsRequest < Struct.new(
|
427
444
|
:next_token,
|
428
445
|
:page_size)
|
446
|
+
SENSITIVE = []
|
429
447
|
include Aws::Structure
|
430
448
|
end
|
431
449
|
|
@@ -447,6 +465,7 @@ module Aws::PinpointSMSVoice
|
|
447
465
|
class ListConfigurationSetsResponse < Struct.new(
|
448
466
|
:configuration_sets,
|
449
467
|
:next_token)
|
468
|
+
SENSITIVE = []
|
450
469
|
include Aws::Structure
|
451
470
|
end
|
452
471
|
|
@@ -459,6 +478,7 @@ module Aws::PinpointSMSVoice
|
|
459
478
|
#
|
460
479
|
class NotFoundException < Struct.new(
|
461
480
|
:message)
|
481
|
+
SENSITIVE = []
|
462
482
|
include Aws::Structure
|
463
483
|
end
|
464
484
|
|
@@ -494,6 +514,7 @@ module Aws::PinpointSMSVoice
|
|
494
514
|
:language_code,
|
495
515
|
:text,
|
496
516
|
:voice_id)
|
517
|
+
SENSITIVE = []
|
497
518
|
include Aws::Structure
|
498
519
|
end
|
499
520
|
|
@@ -529,6 +550,7 @@ module Aws::PinpointSMSVoice
|
|
529
550
|
:language_code,
|
530
551
|
:text,
|
531
552
|
:voice_id)
|
553
|
+
SENSITIVE = []
|
532
554
|
include Aws::Structure
|
533
555
|
end
|
534
556
|
|
@@ -593,6 +615,7 @@ module Aws::PinpointSMSVoice
|
|
593
615
|
:content,
|
594
616
|
:destination_phone_number,
|
595
617
|
:origination_phone_number)
|
618
|
+
SENSITIVE = []
|
596
619
|
include Aws::Structure
|
597
620
|
end
|
598
621
|
|
@@ -607,6 +630,7 @@ module Aws::PinpointSMSVoice
|
|
607
630
|
#
|
608
631
|
class SendVoiceMessageResponse < Struct.new(
|
609
632
|
:message_id)
|
633
|
+
SENSITIVE = []
|
610
634
|
include Aws::Structure
|
611
635
|
end
|
612
636
|
|
@@ -629,6 +653,7 @@ module Aws::PinpointSMSVoice
|
|
629
653
|
#
|
630
654
|
class SnsDestination < Struct.new(
|
631
655
|
:topic_arn)
|
656
|
+
SENSITIVE = []
|
632
657
|
include Aws::Structure
|
633
658
|
end
|
634
659
|
|
@@ -642,6 +667,7 @@ module Aws::PinpointSMSVoice
|
|
642
667
|
#
|
643
668
|
class TooManyRequestsException < Struct.new(
|
644
669
|
:message)
|
670
|
+
SENSITIVE = []
|
645
671
|
include Aws::Structure
|
646
672
|
end
|
647
673
|
|
@@ -687,6 +713,7 @@ module Aws::PinpointSMSVoice
|
|
687
713
|
:configuration_set_name,
|
688
714
|
:event_destination,
|
689
715
|
:event_destination_name)
|
716
|
+
SENSITIVE = []
|
690
717
|
include Aws::Structure
|
691
718
|
end
|
692
719
|
|
@@ -738,6 +765,7 @@ module Aws::PinpointSMSVoice
|
|
738
765
|
:call_instructions_message,
|
739
766
|
:plain_text_message,
|
740
767
|
:ssml_message)
|
768
|
+
SENSITIVE = []
|
741
769
|
include Aws::Structure
|
742
770
|
end
|
743
771
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-pinpointsmsvoice
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.18.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:
|
11
|
+
date: 2020-06-23 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.99.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - Pinpoint SMS Voice
|