aws-sdk-pinpoint 1.60.0 → 1.61.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: f1f41f2c83eab05e97f1ec57caee4bbb5d0cdfe4658c09e6327e1bc24c232be2
4
- data.tar.gz: c3b313540147d7951e5ed87e429bed54649146e77d5c7fcddeeb5b3d29682e9d
3
+ metadata.gz: 554a7270be976f8cf524196593a0e34b6af030a99da5794c5a97a765912131e6
4
+ data.tar.gz: 149ca183170cdd9f9de34375bca3694f62c1d9ac5d6a6d14b75b77b175e077c6
5
5
  SHA512:
6
- metadata.gz: bdd2cef666f1558e87952290868086c24cc4863de3d7f7f8311126691cee701768f8100d659ee04629fb67bace5eb0e247751b13e6a529dd42fb7e6e0a04f3b4
7
- data.tar.gz: e3ab10ed7b155452566eaa0fd0800e1bed6649bf4606a3f9c2ade3ab326541125df28c49b0f3e4f37f1d170b40a96989430f4bd66f15d8cad5fd7d5e1f1c5bf4
6
+ metadata.gz: 03f79660a87d1a01b0936e3ed44cbcb308c20cfcb9467a450561c5982be6d882d7a0a7c20325d6df79b95354f23304795ef14f99bf1b3cfe89a226a3db26119c
7
+ data.tar.gz: a0be23480ea10ef14e82e9a8289fc237152314f4655449b1647973164345dfce5fbe60794e32d8bd7b0ac38748f80ca3858ba1e6b4d64aa705d04510b298b753
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.61.0 (2021-11-26)
5
+ ------------------
6
+
7
+ * Feature - Added a One-Time Password (OTP) management feature. You can use the Amazon Pinpoint API to generate OTP codes and send them to your users as SMS messages. Your apps can then call the API to verify the OTP codes that your users input
8
+
4
9
  1.60.0 (2021-11-04)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.60.0
1
+ 1.61.0
@@ -8640,6 +8640,63 @@ module Aws::Pinpoint
8640
8640
  req.send_request(options)
8641
8641
  end
8642
8642
 
8643
+ # Send an OTP message
8644
+ #
8645
+ # @option params [required, String] :application_id
8646
+ #
8647
+ # @option params [required, Types::SendOTPMessageRequestParameters] :send_otp_message_request_parameters
8648
+ # Send OTP message request parameters.
8649
+ #
8650
+ # @return [Types::SendOTPMessageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
8651
+ #
8652
+ # * {Types::SendOTPMessageResponse#message_response #message_response} => Types::MessageResponse
8653
+ #
8654
+ # @example Request syntax with placeholder values
8655
+ #
8656
+ # resp = client.send_otp_message({
8657
+ # application_id: "__string", # required
8658
+ # send_otp_message_request_parameters: { # required
8659
+ # allowed_attempts: 1,
8660
+ # brand_name: "__string", # required
8661
+ # channel: "__string", # required
8662
+ # code_length: 1,
8663
+ # destination_identity: "__string", # required
8664
+ # entity_id: "__string",
8665
+ # language: "__string",
8666
+ # origination_identity: "__string", # required
8667
+ # reference_id: "__string", # required
8668
+ # template_id: "__string",
8669
+ # validity_period: 1,
8670
+ # },
8671
+ # })
8672
+ #
8673
+ # @example Response structure
8674
+ #
8675
+ # resp.message_response.application_id #=> String
8676
+ # resp.message_response.endpoint_result #=> Hash
8677
+ # resp.message_response.endpoint_result["__string"].address #=> String
8678
+ # resp.message_response.endpoint_result["__string"].delivery_status #=> String, one of "SUCCESSFUL", "THROTTLED", "TEMPORARY_FAILURE", "PERMANENT_FAILURE", "UNKNOWN_FAILURE", "OPT_OUT", "DUPLICATE"
8679
+ # resp.message_response.endpoint_result["__string"].message_id #=> String
8680
+ # resp.message_response.endpoint_result["__string"].status_code #=> Integer
8681
+ # resp.message_response.endpoint_result["__string"].status_message #=> String
8682
+ # resp.message_response.endpoint_result["__string"].updated_token #=> String
8683
+ # resp.message_response.request_id #=> String
8684
+ # resp.message_response.result #=> Hash
8685
+ # resp.message_response.result["__string"].delivery_status #=> String, one of "SUCCESSFUL", "THROTTLED", "TEMPORARY_FAILURE", "PERMANENT_FAILURE", "UNKNOWN_FAILURE", "OPT_OUT", "DUPLICATE"
8686
+ # resp.message_response.result["__string"].message_id #=> String
8687
+ # resp.message_response.result["__string"].status_code #=> Integer
8688
+ # resp.message_response.result["__string"].status_message #=> String
8689
+ # resp.message_response.result["__string"].updated_token #=> String
8690
+ #
8691
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/SendOTPMessage AWS API Documentation
8692
+ #
8693
+ # @overload send_otp_message(params = {})
8694
+ # @param [Hash] params ({})
8695
+ def send_otp_message(params = {}, options = {})
8696
+ req = build_request(:send_otp_message, params)
8697
+ req.send_request(options)
8698
+ end
8699
+
8643
8700
  # Creates and sends a message to a list of users.
8644
8701
  #
8645
8702
  # @option params [required, String] :application_id
@@ -11945,7 +12002,7 @@ module Aws::Pinpoint
11945
12002
  params: params,
11946
12003
  config: config)
11947
12004
  context[:gem_name] = 'aws-sdk-pinpoint'
11948
- context[:gem_version] = '1.60.0'
12005
+ context[:gem_version] = '1.61.0'
11949
12006
  Seahorse::Client::Request.new(handlers, context)
11950
12007
  end
11951
12008
 
@@ -425,6 +425,9 @@ module Aws::Pinpoint
425
425
  SegmentsResponse = Shapes::StructureShape.new(name: 'SegmentsResponse')
426
426
  SendMessagesRequest = Shapes::StructureShape.new(name: 'SendMessagesRequest')
427
427
  SendMessagesResponse = Shapes::StructureShape.new(name: 'SendMessagesResponse')
428
+ SendOTPMessageRequest = Shapes::StructureShape.new(name: 'SendOTPMessageRequest')
429
+ SendOTPMessageRequestParameters = Shapes::StructureShape.new(name: 'SendOTPMessageRequestParameters')
430
+ SendOTPMessageResponse = Shapes::StructureShape.new(name: 'SendOTPMessageResponse')
428
431
  SendUsersMessageRequest = Shapes::StructureShape.new(name: 'SendUsersMessageRequest')
429
432
  SendUsersMessageResponse = Shapes::StructureShape.new(name: 'SendUsersMessageResponse')
430
433
  SendUsersMessagesRequest = Shapes::StructureShape.new(name: 'SendUsersMessagesRequest')
@@ -502,6 +505,10 @@ module Aws::Pinpoint
502
505
  UpdateVoiceChannelResponse = Shapes::StructureShape.new(name: 'UpdateVoiceChannelResponse')
503
506
  UpdateVoiceTemplateRequest = Shapes::StructureShape.new(name: 'UpdateVoiceTemplateRequest')
504
507
  UpdateVoiceTemplateResponse = Shapes::StructureShape.new(name: 'UpdateVoiceTemplateResponse')
508
+ VerificationResponse = Shapes::StructureShape.new(name: 'VerificationResponse')
509
+ VerifyOTPMessageRequest = Shapes::StructureShape.new(name: 'VerifyOTPMessageRequest')
510
+ VerifyOTPMessageRequestParameters = Shapes::StructureShape.new(name: 'VerifyOTPMessageRequestParameters')
511
+ VerifyOTPMessageResponse = Shapes::StructureShape.new(name: 'VerifyOTPMessageResponse')
505
512
  VoiceChannelRequest = Shapes::StructureShape.new(name: 'VoiceChannelRequest')
506
513
  VoiceChannelResponse = Shapes::StructureShape.new(name: 'VoiceChannelResponse')
507
514
  VoiceMessage = Shapes::StructureShape.new(name: 'VoiceMessage')
@@ -2756,6 +2763,30 @@ module Aws::Pinpoint
2756
2763
  SendMessagesResponse[:payload] = :message_response
2757
2764
  SendMessagesResponse[:payload_member] = SendMessagesResponse.member(:message_response)
2758
2765
 
2766
+ SendOTPMessageRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "application-id"))
2767
+ SendOTPMessageRequest.add_member(:send_otp_message_request_parameters, Shapes::ShapeRef.new(shape: SendOTPMessageRequestParameters, required: true, location_name: "SendOTPMessageRequestParameters"))
2768
+ SendOTPMessageRequest.struct_class = Types::SendOTPMessageRequest
2769
+ SendOTPMessageRequest[:payload] = :send_otp_message_request_parameters
2770
+ SendOTPMessageRequest[:payload_member] = SendOTPMessageRequest.member(:send_otp_message_request_parameters)
2771
+
2772
+ SendOTPMessageRequestParameters.add_member(:allowed_attempts, Shapes::ShapeRef.new(shape: __integer, location_name: "AllowedAttempts"))
2773
+ SendOTPMessageRequestParameters.add_member(:brand_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "BrandName"))
2774
+ SendOTPMessageRequestParameters.add_member(:channel, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Channel"))
2775
+ SendOTPMessageRequestParameters.add_member(:code_length, Shapes::ShapeRef.new(shape: __integer, location_name: "CodeLength"))
2776
+ SendOTPMessageRequestParameters.add_member(:destination_identity, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "DestinationIdentity"))
2777
+ SendOTPMessageRequestParameters.add_member(:entity_id, Shapes::ShapeRef.new(shape: __string, location_name: "EntityId"))
2778
+ SendOTPMessageRequestParameters.add_member(:language, Shapes::ShapeRef.new(shape: __string, location_name: "Language"))
2779
+ SendOTPMessageRequestParameters.add_member(:origination_identity, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "OriginationIdentity"))
2780
+ SendOTPMessageRequestParameters.add_member(:reference_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ReferenceId"))
2781
+ SendOTPMessageRequestParameters.add_member(:template_id, Shapes::ShapeRef.new(shape: __string, location_name: "TemplateId"))
2782
+ SendOTPMessageRequestParameters.add_member(:validity_period, Shapes::ShapeRef.new(shape: __integer, location_name: "ValidityPeriod"))
2783
+ SendOTPMessageRequestParameters.struct_class = Types::SendOTPMessageRequestParameters
2784
+
2785
+ SendOTPMessageResponse.add_member(:message_response, Shapes::ShapeRef.new(shape: MessageResponse, required: true, location_name: "MessageResponse"))
2786
+ SendOTPMessageResponse.struct_class = Types::SendOTPMessageResponse
2787
+ SendOTPMessageResponse[:payload] = :message_response
2788
+ SendOTPMessageResponse[:payload_member] = SendOTPMessageResponse.member(:message_response)
2789
+
2759
2790
  SendUsersMessageRequest.add_member(:context, Shapes::ShapeRef.new(shape: MapOf__string, location_name: "Context"))
2760
2791
  SendUsersMessageRequest.add_member(:message_configuration, Shapes::ShapeRef.new(shape: DirectMessageConfiguration, required: true, location_name: "MessageConfiguration"))
2761
2792
  SendUsersMessageRequest.add_member(:template_configuration, Shapes::ShapeRef.new(shape: TemplateConfiguration, location_name: "TemplateConfiguration"))
@@ -3178,6 +3209,25 @@ module Aws::Pinpoint
3178
3209
  UpdateVoiceTemplateResponse[:payload] = :message_body
3179
3210
  UpdateVoiceTemplateResponse[:payload_member] = UpdateVoiceTemplateResponse.member(:message_body)
3180
3211
 
3212
+ VerificationResponse.add_member(:valid, Shapes::ShapeRef.new(shape: __boolean, location_name: "Valid"))
3213
+ VerificationResponse.struct_class = Types::VerificationResponse
3214
+
3215
+ VerifyOTPMessageRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "application-id"))
3216
+ VerifyOTPMessageRequest.add_member(:verify_otp_message_request_parameters, Shapes::ShapeRef.new(shape: VerifyOTPMessageRequestParameters, required: true, location_name: "VerifyOTPMessageRequestParameters"))
3217
+ VerifyOTPMessageRequest.struct_class = Types::VerifyOTPMessageRequest
3218
+ VerifyOTPMessageRequest[:payload] = :verify_otp_message_request_parameters
3219
+ VerifyOTPMessageRequest[:payload_member] = VerifyOTPMessageRequest.member(:verify_otp_message_request_parameters)
3220
+
3221
+ VerifyOTPMessageRequestParameters.add_member(:destination_identity, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "DestinationIdentity"))
3222
+ VerifyOTPMessageRequestParameters.add_member(:otp, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Otp"))
3223
+ VerifyOTPMessageRequestParameters.add_member(:reference_id, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "ReferenceId"))
3224
+ VerifyOTPMessageRequestParameters.struct_class = Types::VerifyOTPMessageRequestParameters
3225
+
3226
+ VerifyOTPMessageResponse.add_member(:verification_response, Shapes::ShapeRef.new(shape: VerificationResponse, required: true, location_name: "VerificationResponse"))
3227
+ VerifyOTPMessageResponse.struct_class = Types::VerifyOTPMessageResponse
3228
+ VerifyOTPMessageResponse[:payload] = :verification_response
3229
+ VerifyOTPMessageResponse[:payload_member] = VerifyOTPMessageResponse.member(:verification_response)
3230
+
3181
3231
  VoiceChannelRequest.add_member(:enabled, Shapes::ShapeRef.new(shape: __boolean, location_name: "Enabled"))
3182
3232
  VoiceChannelRequest.struct_class = Types::VoiceChannelRequest
3183
3233
 
@@ -4640,6 +4690,21 @@ module Aws::Pinpoint
4640
4690
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
4641
4691
  end)
4642
4692
 
4693
+ api.add_operation(:send_otp_message, Seahorse::Model::Operation.new.tap do |o|
4694
+ o.name = "SendOTPMessage"
4695
+ o.http_method = "POST"
4696
+ o.http_request_uri = "/v1/apps/{application-id}/otp"
4697
+ o.input = Shapes::ShapeRef.new(shape: SendOTPMessageRequest)
4698
+ o.output = Shapes::ShapeRef.new(shape: SendOTPMessageResponse)
4699
+ o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
4700
+ o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
4701
+ o.errors << Shapes::ShapeRef.new(shape: PayloadTooLargeException)
4702
+ o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
4703
+ o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
4704
+ o.errors << Shapes::ShapeRef.new(shape: MethodNotAllowedException)
4705
+ o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
4706
+ end)
4707
+
4643
4708
  api.add_operation(:send_users_messages, Seahorse::Model::Operation.new.tap do |o|
4644
4709
  o.name = "SendUsersMessages"
4645
4710
  o.http_method = "POST"
@@ -16109,6 +16109,141 @@ module Aws::Pinpoint
16109
16109
  include Aws::Structure
16110
16110
  end
16111
16111
 
16112
+ # @note When making an API call, you may pass SendOTPMessageRequest
16113
+ # data as a hash:
16114
+ #
16115
+ # {
16116
+ # application_id: "__string", # required
16117
+ # send_otp_message_request_parameters: { # required
16118
+ # allowed_attempts: 1,
16119
+ # brand_name: "__string", # required
16120
+ # channel: "__string", # required
16121
+ # code_length: 1,
16122
+ # destination_identity: "__string", # required
16123
+ # entity_id: "__string",
16124
+ # language: "__string",
16125
+ # origination_identity: "__string", # required
16126
+ # reference_id: "__string", # required
16127
+ # template_id: "__string",
16128
+ # validity_period: 1,
16129
+ # },
16130
+ # }
16131
+ #
16132
+ # @!attribute [rw] application_id
16133
+ # @return [String]
16134
+ #
16135
+ # @!attribute [rw] send_otp_message_request_parameters
16136
+ # Send OTP message request parameters.
16137
+ # @return [Types::SendOTPMessageRequestParameters]
16138
+ #
16139
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/SendOTPMessageRequest AWS API Documentation
16140
+ #
16141
+ class SendOTPMessageRequest < Struct.new(
16142
+ :application_id,
16143
+ :send_otp_message_request_parameters)
16144
+ SENSITIVE = []
16145
+ include Aws::Structure
16146
+ end
16147
+
16148
+ # Send OTP message request parameters.
16149
+ #
16150
+ # @note When making an API call, you may pass SendOTPMessageRequestParameters
16151
+ # data as a hash:
16152
+ #
16153
+ # {
16154
+ # allowed_attempts: 1,
16155
+ # brand_name: "__string", # required
16156
+ # channel: "__string", # required
16157
+ # code_length: 1,
16158
+ # destination_identity: "__string", # required
16159
+ # entity_id: "__string",
16160
+ # language: "__string",
16161
+ # origination_identity: "__string", # required
16162
+ # reference_id: "__string", # required
16163
+ # template_id: "__string",
16164
+ # validity_period: 1,
16165
+ # }
16166
+ #
16167
+ # @!attribute [rw] allowed_attempts
16168
+ # The attempts allowed to validate an OTP.
16169
+ # @return [Integer]
16170
+ #
16171
+ # @!attribute [rw] brand_name
16172
+ # The brand name that will be substituted into the OTP message body.
16173
+ # Should be owned by calling AWS account.
16174
+ # @return [String]
16175
+ #
16176
+ # @!attribute [rw] channel
16177
+ # Channel type for the OTP message. Supported values: \[SMS\].
16178
+ # @return [String]
16179
+ #
16180
+ # @!attribute [rw] code_length
16181
+ # The number of characters in the generated OTP.
16182
+ # @return [Integer]
16183
+ #
16184
+ # @!attribute [rw] destination_identity
16185
+ # The destination identity to send OTP to.
16186
+ # @return [String]
16187
+ #
16188
+ # @!attribute [rw] entity_id
16189
+ # A unique Entity ID received from DLT after entity registration is
16190
+ # approved.
16191
+ # @return [String]
16192
+ #
16193
+ # @!attribute [rw] language
16194
+ # The language to be used for the outgoing message body containing the
16195
+ # OTP.
16196
+ # @return [String]
16197
+ #
16198
+ # @!attribute [rw] origination_identity
16199
+ # The origination identity used to send OTP from.
16200
+ # @return [String]
16201
+ #
16202
+ # @!attribute [rw] reference_id
16203
+ # Developer-specified reference identifier. Required to match during
16204
+ # OTP verification.
16205
+ # @return [String]
16206
+ #
16207
+ # @!attribute [rw] template_id
16208
+ # A unique Template ID received from DLT after entity registration is
16209
+ # approved.
16210
+ # @return [String]
16211
+ #
16212
+ # @!attribute [rw] validity_period
16213
+ # The time in minutes before the OTP is no longer valid.
16214
+ # @return [Integer]
16215
+ #
16216
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/SendOTPMessageRequestParameters AWS API Documentation
16217
+ #
16218
+ class SendOTPMessageRequestParameters < Struct.new(
16219
+ :allowed_attempts,
16220
+ :brand_name,
16221
+ :channel,
16222
+ :code_length,
16223
+ :destination_identity,
16224
+ :entity_id,
16225
+ :language,
16226
+ :origination_identity,
16227
+ :reference_id,
16228
+ :template_id,
16229
+ :validity_period)
16230
+ SENSITIVE = []
16231
+ include Aws::Structure
16232
+ end
16233
+
16234
+ # @!attribute [rw] message_response
16235
+ # Provides information about the results of a request to send a
16236
+ # message to an endpoint address.
16237
+ # @return [Types::MessageResponse]
16238
+ #
16239
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/SendOTPMessageResponse AWS API Documentation
16240
+ #
16241
+ class SendOTPMessageResponse < Struct.new(
16242
+ :message_response)
16243
+ SENSITIVE = []
16244
+ include Aws::Structure
16245
+ end
16246
+
16112
16247
  # Specifies the configuration and other settings for a message to send
16113
16248
  # to all the endpoints that are associated with a list of users.
16114
16249
  #
@@ -19861,6 +19996,72 @@ module Aws::Pinpoint
19861
19996
  include Aws::Structure
19862
19997
  end
19863
19998
 
19999
+ # Verify OTP Message Response.
20000
+ #
20001
+ # @!attribute [rw] valid
20002
+ # Specifies whether the OTP is valid or not.
20003
+ # @return [Boolean]
20004
+ #
20005
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/VerificationResponse AWS API Documentation
20006
+ #
20007
+ class VerificationResponse < Struct.new(
20008
+ :valid)
20009
+ SENSITIVE = []
20010
+ include Aws::Structure
20011
+ end
20012
+
20013
+ # @!attribute [rw] application_id
20014
+ # @return [String]
20015
+ #
20016
+ # @!attribute [rw] verify_otp_message_request_parameters
20017
+ # Verify OTP message request.
20018
+ # @return [Types::VerifyOTPMessageRequestParameters]
20019
+ #
20020
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/VerifyOTPMessageRequest AWS API Documentation
20021
+ #
20022
+ class VerifyOTPMessageRequest < Struct.new(
20023
+ :application_id,
20024
+ :verify_otp_message_request_parameters)
20025
+ SENSITIVE = []
20026
+ include Aws::Structure
20027
+ end
20028
+
20029
+ # Verify OTP message request.
20030
+ #
20031
+ # @!attribute [rw] destination_identity
20032
+ # The destination identity to send OTP to.
20033
+ # @return [String]
20034
+ #
20035
+ # @!attribute [rw] otp
20036
+ # The OTP the end user provided for verification.
20037
+ # @return [String]
20038
+ #
20039
+ # @!attribute [rw] reference_id
20040
+ # The reference identifier provided when the OTP was previously sent.
20041
+ # @return [String]
20042
+ #
20043
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/VerifyOTPMessageRequestParameters AWS API Documentation
20044
+ #
20045
+ class VerifyOTPMessageRequestParameters < Struct.new(
20046
+ :destination_identity,
20047
+ :otp,
20048
+ :reference_id)
20049
+ SENSITIVE = []
20050
+ include Aws::Structure
20051
+ end
20052
+
20053
+ # @!attribute [rw] verification_response
20054
+ # Verify OTP Message Response.
20055
+ # @return [Types::VerificationResponse]
20056
+ #
20057
+ # @see http://docs.aws.amazon.com/goto/WebAPI/pinpoint-2016-12-01/VerifyOTPMessageResponse AWS API Documentation
20058
+ #
20059
+ class VerifyOTPMessageResponse < Struct.new(
20060
+ :verification_response)
20061
+ SENSITIVE = []
20062
+ include Aws::Structure
20063
+ end
20064
+
19864
20065
  # Specifies the status and settings of the voice channel for an
19865
20066
  # application.
19866
20067
  #
@@ -48,6 +48,6 @@ require_relative 'aws-sdk-pinpoint/customizations'
48
48
  # @!group service
49
49
  module Aws::Pinpoint
50
50
 
51
- GEM_VERSION = '1.60.0'
51
+ GEM_VERSION = '1.61.0'
52
52
 
53
53
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-pinpoint
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.60.0
4
+ version: 1.61.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: 2021-11-04 00:00:00.000000000 Z
11
+ date: 2021-11-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core