aws-sdk-pinpointsmsvoicev2 1.30.0 → 1.31.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.
data/sig/client.rbs CHANGED
@@ -137,7 +137,7 @@ module Aws
137
137
  def create_event_destination: (
138
138
  configuration_set_name: ::String,
139
139
  event_destination_name: ::String,
140
- matching_event_types: Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")],
140
+ matching_event_types: Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "TEXT_PROTECT_BLOCKED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")],
141
141
  ?cloud_watch_logs_destination: {
142
142
  iam_role_arn: ::String,
143
143
  log_group_arn: ::String
@@ -344,6 +344,7 @@ module Aws
344
344
  def event_destinations: () -> ::Array[Types::EventDestination]
345
345
  def default_message_type: () -> ("TRANSACTIONAL" | "PROMOTIONAL")
346
346
  def default_sender_id: () -> ::String
347
+ def default_message_feedback_enabled: () -> bool
347
348
  def created_timestamp: () -> ::Time
348
349
  end
349
350
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#delete_configuration_set-instance_method
@@ -474,6 +475,23 @@ module Aws
474
475
  ) -> _DeleteProtectConfigurationResponseSuccess
475
476
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProtectConfigurationResponseSuccess
476
477
 
478
+ interface _DeleteProtectConfigurationRuleSetNumberOverrideResponseSuccess
479
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProtectConfigurationRuleSetNumberOverrideResult]
480
+ def protect_configuration_arn: () -> ::String
481
+ def protect_configuration_id: () -> ::String
482
+ def destination_phone_number: () -> ::String
483
+ def created_timestamp: () -> ::Time
484
+ def action: () -> ("ALLOW" | "BLOCK")
485
+ def iso_country_code: () -> ::String
486
+ def expiration_timestamp: () -> ::Time
487
+ end
488
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#delete_protect_configuration_rule_set_number_override-instance_method
489
+ def delete_protect_configuration_rule_set_number_override: (
490
+ protect_configuration_id: ::String,
491
+ destination_phone_number: ::String
492
+ ) -> _DeleteProtectConfigurationRuleSetNumberOverrideResponseSuccess
493
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProtectConfigurationRuleSetNumberOverrideResponseSuccess
494
+
477
495
  interface _DeleteRegistrationResponseSuccess
478
496
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRegistrationResult]
479
497
  def registration_arn: () -> ::String
@@ -600,7 +618,7 @@ module Aws
600
618
  ?configuration_set_names: Array[::String],
601
619
  ?filters: Array[
602
620
  {
603
- name: ("event-destination-name" | "matching-event-types" | "default-message-type" | "default-sender-id" | "protect-configuration-id"),
621
+ name: ("event-destination-name" | "matching-event-types" | "default-message-type" | "default-sender-id" | "default-message-feedback-enabled" | "protect-configuration-id"),
604
622
  values: Array[::String]
605
623
  },
606
624
  ],
@@ -1004,6 +1022,27 @@ module Aws
1004
1022
  ) -> _ListPoolOriginationIdentitiesResponseSuccess
1005
1023
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListPoolOriginationIdentitiesResponseSuccess
1006
1024
 
1025
+ interface _ListProtectConfigurationRuleSetNumberOverridesResponseSuccess
1026
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListProtectConfigurationRuleSetNumberOverridesResult]
1027
+ def protect_configuration_arn: () -> ::String
1028
+ def protect_configuration_id: () -> ::String
1029
+ def rule_set_number_overrides: () -> ::Array[Types::ProtectConfigurationRuleSetNumberOverride]
1030
+ def next_token: () -> ::String
1031
+ end
1032
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#list_protect_configuration_rule_set_number_overrides-instance_method
1033
+ def list_protect_configuration_rule_set_number_overrides: (
1034
+ protect_configuration_id: ::String,
1035
+ ?filters: Array[
1036
+ {
1037
+ name: ("iso-country-code" | "destination-phone-number-begins-with" | "action" | "expires-before" | "expires-after" | "created-before" | "created-after"),
1038
+ values: Array[::String]
1039
+ },
1040
+ ],
1041
+ ?next_token: ::String,
1042
+ ?max_results: ::Integer
1043
+ ) -> _ListProtectConfigurationRuleSetNumberOverridesResponseSuccess
1044
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProtectConfigurationRuleSetNumberOverridesResponseSuccess
1045
+
1007
1046
  interface _ListRegistrationAssociationsResponseSuccess
1008
1047
  include ::Seahorse::Client::_ResponseSuccess[Types::ListRegistrationAssociationsResult]
1009
1048
  def registration_arn: () -> ::String
@@ -1054,6 +1093,18 @@ module Aws
1054
1093
  ) -> _PutKeywordResponseSuccess
1055
1094
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutKeywordResponseSuccess
1056
1095
 
1096
+ interface _PutMessageFeedbackResponseSuccess
1097
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutMessageFeedbackResult]
1098
+ def message_id: () -> ::String
1099
+ def message_feedback_status: () -> ("RECEIVED" | "FAILED")
1100
+ end
1101
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#put_message_feedback-instance_method
1102
+ def put_message_feedback: (
1103
+ message_id: ::String,
1104
+ message_feedback_status: ("RECEIVED" | "FAILED")
1105
+ ) -> _PutMessageFeedbackResponseSuccess
1106
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutMessageFeedbackResponseSuccess
1107
+
1057
1108
  interface _PutOptedOutNumberResponseSuccess
1058
1109
  include ::Seahorse::Client::_ResponseSuccess[Types::PutOptedOutNumberResult]
1059
1110
  def opt_out_list_arn: () -> ::String
@@ -1069,6 +1120,26 @@ module Aws
1069
1120
  ) -> _PutOptedOutNumberResponseSuccess
1070
1121
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutOptedOutNumberResponseSuccess
1071
1122
 
1123
+ interface _PutProtectConfigurationRuleSetNumberOverrideResponseSuccess
1124
+ include ::Seahorse::Client::_ResponseSuccess[Types::PutProtectConfigurationRuleSetNumberOverrideResult]
1125
+ def protect_configuration_arn: () -> ::String
1126
+ def protect_configuration_id: () -> ::String
1127
+ def destination_phone_number: () -> ::String
1128
+ def created_timestamp: () -> ::Time
1129
+ def action: () -> ("ALLOW" | "BLOCK")
1130
+ def iso_country_code: () -> ::String
1131
+ def expiration_timestamp: () -> ::Time
1132
+ end
1133
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#put_protect_configuration_rule_set_number_override-instance_method
1134
+ def put_protect_configuration_rule_set_number_override: (
1135
+ ?client_token: ::String,
1136
+ protect_configuration_id: ::String,
1137
+ destination_phone_number: ::String,
1138
+ action: ("ALLOW" | "BLOCK"),
1139
+ ?expiration_timestamp: ::Time
1140
+ ) -> _PutProtectConfigurationRuleSetNumberOverrideResponseSuccess
1141
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutProtectConfigurationRuleSetNumberOverrideResponseSuccess
1142
+
1072
1143
  interface _PutRegistrationFieldValueResponseSuccess
1073
1144
  include ::Seahorse::Client::_ResponseSuccess[Types::PutRegistrationFieldValueResult]
1074
1145
  def registration_arn: () -> ::String
@@ -1244,7 +1315,8 @@ module Aws
1244
1315
  ?time_to_live: ::Integer,
1245
1316
  ?context: Hash[::String, ::String],
1246
1317
  ?dry_run: bool,
1247
- ?protect_configuration_id: ::String
1318
+ ?protect_configuration_id: ::String,
1319
+ ?message_feedback_enabled: bool
1248
1320
  ) -> _SendMediaMessageResponseSuccess
1249
1321
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendMediaMessageResponseSuccess
1250
1322
 
@@ -1265,7 +1337,8 @@ module Aws
1265
1337
  ?context: Hash[::String, ::String],
1266
1338
  ?destination_country_parameters: Hash[("IN_TEMPLATE_ID" | "IN_ENTITY_ID"), ::String],
1267
1339
  ?dry_run: bool,
1268
- ?protect_configuration_id: ::String
1340
+ ?protect_configuration_id: ::String,
1341
+ ?message_feedback_enabled: bool
1269
1342
  ) -> _SendTextMessageResponseSuccess
1270
1343
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendTextMessageResponseSuccess
1271
1344
 
@@ -1285,7 +1358,8 @@ module Aws
1285
1358
  ?time_to_live: ::Integer,
1286
1359
  ?context: Hash[::String, ::String],
1287
1360
  ?dry_run: bool,
1288
- ?protect_configuration_id: ::String
1361
+ ?protect_configuration_id: ::String,
1362
+ ?message_feedback_enabled: bool
1289
1363
  ) -> _SendVoiceMessageResponseSuccess
1290
1364
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SendVoiceMessageResponseSuccess
1291
1365
 
@@ -1300,6 +1374,19 @@ module Aws
1300
1374
  ) -> _SetAccountDefaultProtectConfigurationResponseSuccess
1301
1375
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetAccountDefaultProtectConfigurationResponseSuccess
1302
1376
 
1377
+ interface _SetDefaultMessageFeedbackEnabledResponseSuccess
1378
+ include ::Seahorse::Client::_ResponseSuccess[Types::SetDefaultMessageFeedbackEnabledResult]
1379
+ def configuration_set_arn: () -> ::String
1380
+ def configuration_set_name: () -> ::String
1381
+ def message_feedback_enabled: () -> bool
1382
+ end
1383
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/PinpointSMSVoiceV2/Client.html#set_default_message_feedback_enabled-instance_method
1384
+ def set_default_message_feedback_enabled: (
1385
+ configuration_set_name: ::String,
1386
+ message_feedback_enabled: bool
1387
+ ) -> _SetDefaultMessageFeedbackEnabledResponseSuccess
1388
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SetDefaultMessageFeedbackEnabledResponseSuccess
1389
+
1303
1390
  interface _SetDefaultMessageTypeResponseSuccess
1304
1391
  include ::Seahorse::Client::_ResponseSuccess[Types::SetDefaultMessageTypeResult]
1305
1392
  def configuration_set_arn: () -> ::String
@@ -1406,7 +1493,7 @@ module Aws
1406
1493
  configuration_set_name: ::String,
1407
1494
  event_destination_name: ::String,
1408
1495
  ?enabled: bool,
1409
- ?matching_event_types: Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")],
1496
+ ?matching_event_types: Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "TEXT_PROTECT_BLOCKED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")],
1410
1497
  ?cloud_watch_logs_destination: {
1411
1498
  iam_role_arn: ::String,
1412
1499
  log_group_arn: ::String
data/sig/types.rbs CHANGED
@@ -65,7 +65,7 @@ module Aws::PinpointSMSVoiceV2
65
65
  end
66
66
 
67
67
  class ConfigurationSetFilter
68
- attr_accessor name: ("event-destination-name" | "matching-event-types" | "default-message-type" | "default-sender-id" | "protect-configuration-id")
68
+ attr_accessor name: ("event-destination-name" | "matching-event-types" | "default-message-type" | "default-sender-id" | "default-message-feedback-enabled" | "protect-configuration-id")
69
69
  attr_accessor values: ::Array[::String]
70
70
  SENSITIVE: []
71
71
  end
@@ -76,6 +76,7 @@ module Aws::PinpointSMSVoiceV2
76
76
  attr_accessor event_destinations: ::Array[Types::EventDestination]
77
77
  attr_accessor default_message_type: ("TRANSACTIONAL" | "PROMOTIONAL")
78
78
  attr_accessor default_sender_id: ::String
79
+ attr_accessor default_message_feedback_enabled: bool
79
80
  attr_accessor created_timestamp: ::Time
80
81
  attr_accessor protect_configuration_id: ::String
81
82
  SENSITIVE: []
@@ -83,8 +84,8 @@ module Aws::PinpointSMSVoiceV2
83
84
 
84
85
  class ConflictException
85
86
  attr_accessor message: ::String
86
- attr_accessor reason: ("CREATE_REGISTRATION_VERSION_NOT_ALLOWED" | "DELETION_PROTECTION_ENABLED" | "DESTINATION_PHONE_NUMBER_NOT_VERIFIED" | "DESTINATION_PHONE_NUMBER_OPTED_OUT" | "DISASSOCIATE_REGISTRATION_NOT_ALLOWED" | "DISCARD_REGISTRATION_VERSION_NOT_ALLOWED" | "EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED" | "EVENT_DESTINATION_MISMATCH" | "KEYWORD_MISMATCH" | "LAST_PHONE_NUMBER" | "NUMBER_CAPABILITIES_MISMATCH" | "MESSAGE_TYPE_MISMATCH" | "NO_ORIGINATION_IDENTITIES_FOUND" | "OPT_OUT_LIST_MISMATCH" | "PHONE_NUMBER_ASSOCIATED_TO_POOL" | "PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION" | "PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL" | "PHONE_NUMBER_NOT_IN_REGISTRATION_REGION" | "REGISTRATION_ALREADY_SUBMITTED" | "REGISTRATION_NOT_COMPLETE" | "SENDER_ID_ASSOCIATED_TO_POOL" | "RESOURCE_ALREADY_EXISTS" | "RESOURCE_DELETION_NOT_ALLOWED" | "RESOURCE_MODIFICATION_NOT_ALLOWED" | "RESOURCE_NOT_ACTIVE" | "RESOURCE_NOT_EMPTY" | "SELF_MANAGED_OPT_OUTS_MISMATCH" | "SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED" | "TWO_WAY_CONFIG_MISMATCH" | "VERIFICATION_CODE_EXPIRED" | "VERIFICATION_ALREADY_COMPLETE" | "PROTECT_CONFIGURATION_IS_ACCOUNT_DEFAULT" | "PROTECT_CONFIGURATION_ASSOCIATED_WITH_CONFIGURATION_SET" | "PROTECT_CONFIGURATION_NOT_ASSOCIATED_WITH_CONFIGURATION_SET" | "DESTINATION_COUNTRY_BLOCKED_BY_PROTECT_CONFIGURATION")
87
- attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration" | "policy")
87
+ attr_accessor reason: ("CREATE_REGISTRATION_VERSION_NOT_ALLOWED" | "DELETION_PROTECTION_ENABLED" | "DESTINATION_PHONE_NUMBER_NOT_VERIFIED" | "DESTINATION_PHONE_NUMBER_OPTED_OUT" | "DISASSOCIATE_REGISTRATION_NOT_ALLOWED" | "DISCARD_REGISTRATION_VERSION_NOT_ALLOWED" | "EDIT_REGISTRATION_FIELD_VALUES_NOT_ALLOWED" | "EVENT_DESTINATION_MISMATCH" | "KEYWORD_MISMATCH" | "LAST_PHONE_NUMBER" | "NUMBER_CAPABILITIES_MISMATCH" | "MESSAGE_TYPE_MISMATCH" | "NO_ORIGINATION_IDENTITIES_FOUND" | "OPT_OUT_LIST_MISMATCH" | "PHONE_NUMBER_ASSOCIATED_TO_POOL" | "PHONE_NUMBER_ASSOCIATED_TO_REGISTRATION" | "PHONE_NUMBER_NOT_ASSOCIATED_TO_POOL" | "PHONE_NUMBER_NOT_IN_REGISTRATION_REGION" | "REGISTRATION_ALREADY_SUBMITTED" | "REGISTRATION_NOT_COMPLETE" | "SENDER_ID_ASSOCIATED_TO_POOL" | "RESOURCE_ALREADY_EXISTS" | "RESOURCE_DELETION_NOT_ALLOWED" | "RESOURCE_MODIFICATION_NOT_ALLOWED" | "RESOURCE_NOT_ACTIVE" | "RESOURCE_NOT_EMPTY" | "SELF_MANAGED_OPT_OUTS_MISMATCH" | "SUBMIT_REGISTRATION_VERSION_NOT_ALLOWED" | "TWO_WAY_CONFIG_MISMATCH" | "VERIFICATION_CODE_EXPIRED" | "VERIFICATION_ALREADY_COMPLETE" | "PROTECT_CONFIGURATION_IS_ACCOUNT_DEFAULT" | "PROTECT_CONFIGURATION_ASSOCIATED_WITH_CONFIGURATION_SET" | "PROTECT_CONFIGURATION_NOT_ASSOCIATED_WITH_CONFIGURATION_SET" | "DESTINATION_COUNTRY_BLOCKED_BY_PROTECT_CONFIGURATION" | "DESTINATION_PHONE_NUMBER_BLOCKED_BY_PROTECT_NUMBER_OVERRIDE")
88
+ attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration" | "policy" | "message")
88
89
  attr_accessor resource_id: ::String
89
90
  SENSITIVE: []
90
91
  end
@@ -107,7 +108,7 @@ module Aws::PinpointSMSVoiceV2
107
108
  class CreateEventDestinationRequest
108
109
  attr_accessor configuration_set_name: ::String
109
110
  attr_accessor event_destination_name: ::String
110
- attr_accessor matching_event_types: ::Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")]
111
+ attr_accessor matching_event_types: ::Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "TEXT_PROTECT_BLOCKED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")]
111
112
  attr_accessor cloud_watch_logs_destination: Types::CloudWatchLogsDestination
112
113
  attr_accessor kinesis_firehose_destination: Types::KinesisFirehoseDestination
113
114
  attr_accessor sns_destination: Types::SnsDestination
@@ -286,6 +287,7 @@ module Aws::PinpointSMSVoiceV2
286
287
  attr_accessor event_destinations: ::Array[Types::EventDestination]
287
288
  attr_accessor default_message_type: ("TRANSACTIONAL" | "PROMOTIONAL")
288
289
  attr_accessor default_sender_id: ::String
290
+ attr_accessor default_message_feedback_enabled: bool
289
291
  attr_accessor created_timestamp: ::Time
290
292
  SENSITIVE: []
291
293
  end
@@ -411,6 +413,23 @@ module Aws::PinpointSMSVoiceV2
411
413
  SENSITIVE: []
412
414
  end
413
415
 
416
+ class DeleteProtectConfigurationRuleSetNumberOverrideRequest
417
+ attr_accessor protect_configuration_id: ::String
418
+ attr_accessor destination_phone_number: ::String
419
+ SENSITIVE: []
420
+ end
421
+
422
+ class DeleteProtectConfigurationRuleSetNumberOverrideResult
423
+ attr_accessor protect_configuration_arn: ::String
424
+ attr_accessor protect_configuration_id: ::String
425
+ attr_accessor destination_phone_number: ::String
426
+ attr_accessor created_timestamp: ::Time
427
+ attr_accessor action: ("ALLOW" | "BLOCK")
428
+ attr_accessor iso_country_code: ::String
429
+ attr_accessor expiration_timestamp: ::Time
430
+ SENSITIVE: []
431
+ end
432
+
414
433
  class DeleteRegistrationAttachmentRequest
415
434
  attr_accessor registration_attachment_id: ::String
416
435
  SENSITIVE: []
@@ -830,7 +849,7 @@ module Aws::PinpointSMSVoiceV2
830
849
  class EventDestination
831
850
  attr_accessor event_destination_name: ::String
832
851
  attr_accessor enabled: bool
833
- attr_accessor matching_event_types: ::Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")]
852
+ attr_accessor matching_event_types: ::Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "TEXT_PROTECT_BLOCKED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")]
834
853
  attr_accessor cloud_watch_logs_destination: Types::CloudWatchLogsDestination
835
854
  attr_accessor kinesis_firehose_destination: Types::KinesisFirehoseDestination
836
855
  attr_accessor sns_destination: Types::SnsDestination
@@ -904,6 +923,22 @@ module Aws::PinpointSMSVoiceV2
904
923
  SENSITIVE: []
905
924
  end
906
925
 
926
+ class ListProtectConfigurationRuleSetNumberOverridesRequest
927
+ attr_accessor protect_configuration_id: ::String
928
+ attr_accessor filters: ::Array[Types::ProtectConfigurationRuleSetNumberOverrideFilterItem]
929
+ attr_accessor next_token: ::String
930
+ attr_accessor max_results: ::Integer
931
+ SENSITIVE: []
932
+ end
933
+
934
+ class ListProtectConfigurationRuleSetNumberOverridesResult
935
+ attr_accessor protect_configuration_arn: ::String
936
+ attr_accessor protect_configuration_id: ::String
937
+ attr_accessor rule_set_number_overrides: ::Array[Types::ProtectConfigurationRuleSetNumberOverride]
938
+ attr_accessor next_token: ::String
939
+ SENSITIVE: []
940
+ end
941
+
907
942
  class ListRegistrationAssociationsRequest
908
943
  attr_accessor registration_id: ::String
909
944
  attr_accessor filters: ::Array[Types::RegistrationAssociationFilter]
@@ -1037,6 +1072,21 @@ module Aws::PinpointSMSVoiceV2
1037
1072
  SENSITIVE: []
1038
1073
  end
1039
1074
 
1075
+ class ProtectConfigurationRuleSetNumberOverride
1076
+ attr_accessor destination_phone_number: ::String
1077
+ attr_accessor created_timestamp: ::Time
1078
+ attr_accessor action: ("ALLOW" | "BLOCK")
1079
+ attr_accessor iso_country_code: ::String
1080
+ attr_accessor expiration_timestamp: ::Time
1081
+ SENSITIVE: []
1082
+ end
1083
+
1084
+ class ProtectConfigurationRuleSetNumberOverrideFilterItem
1085
+ attr_accessor name: ("iso-country-code" | "destination-phone-number-begins-with" | "action" | "expires-before" | "expires-after" | "created-before" | "created-after")
1086
+ attr_accessor values: ::Array[::String]
1087
+ SENSITIVE: []
1088
+ end
1089
+
1040
1090
  class PutKeywordRequest
1041
1091
  attr_accessor origination_identity: ::String
1042
1092
  attr_accessor keyword: ::String
@@ -1054,6 +1104,18 @@ module Aws::PinpointSMSVoiceV2
1054
1104
  SENSITIVE: []
1055
1105
  end
1056
1106
 
1107
+ class PutMessageFeedbackRequest
1108
+ attr_accessor message_id: ::String
1109
+ attr_accessor message_feedback_status: ("RECEIVED" | "FAILED")
1110
+ SENSITIVE: []
1111
+ end
1112
+
1113
+ class PutMessageFeedbackResult
1114
+ attr_accessor message_id: ::String
1115
+ attr_accessor message_feedback_status: ("RECEIVED" | "FAILED")
1116
+ SENSITIVE: []
1117
+ end
1118
+
1057
1119
  class PutOptedOutNumberRequest
1058
1120
  attr_accessor opt_out_list_name: ::String
1059
1121
  attr_accessor opted_out_number: ::String
@@ -1069,6 +1131,26 @@ module Aws::PinpointSMSVoiceV2
1069
1131
  SENSITIVE: []
1070
1132
  end
1071
1133
 
1134
+ class PutProtectConfigurationRuleSetNumberOverrideRequest
1135
+ attr_accessor client_token: ::String
1136
+ attr_accessor protect_configuration_id: ::String
1137
+ attr_accessor destination_phone_number: ::String
1138
+ attr_accessor action: ("ALLOW" | "BLOCK")
1139
+ attr_accessor expiration_timestamp: ::Time
1140
+ SENSITIVE: []
1141
+ end
1142
+
1143
+ class PutProtectConfigurationRuleSetNumberOverrideResult
1144
+ attr_accessor protect_configuration_arn: ::String
1145
+ attr_accessor protect_configuration_id: ::String
1146
+ attr_accessor destination_phone_number: ::String
1147
+ attr_accessor created_timestamp: ::Time
1148
+ attr_accessor action: ("ALLOW" | "BLOCK")
1149
+ attr_accessor iso_country_code: ::String
1150
+ attr_accessor expiration_timestamp: ::Time
1151
+ SENSITIVE: []
1152
+ end
1153
+
1072
1154
  class PutRegistrationFieldValueRequest
1073
1155
  attr_accessor registration_id: ::String
1074
1156
  attr_accessor field_path: ::String
@@ -1359,7 +1441,7 @@ module Aws::PinpointSMSVoiceV2
1359
1441
 
1360
1442
  class ResourceNotFoundException
1361
1443
  attr_accessor message: ::String
1362
- attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration" | "policy")
1444
+ attr_accessor resource_type: ("account" | "phone-number" | "sender-id" | "pool" | "configuration-set" | "opt-out-list" | "event-destination" | "keyword" | "opted-out-number" | "registration" | "registration-attachment" | "verified-destination-number" | "protect-configuration" | "policy" | "message")
1363
1445
  attr_accessor resource_id: ::String
1364
1446
  SENSITIVE: []
1365
1447
  end
@@ -1405,6 +1487,7 @@ module Aws::PinpointSMSVoiceV2
1405
1487
  attr_accessor context: ::Hash[::String, ::String]
1406
1488
  attr_accessor dry_run: bool
1407
1489
  attr_accessor protect_configuration_id: ::String
1490
+ attr_accessor message_feedback_enabled: bool
1408
1491
  SENSITIVE: []
1409
1492
  end
1410
1493
 
@@ -1426,6 +1509,7 @@ module Aws::PinpointSMSVoiceV2
1426
1509
  attr_accessor destination_country_parameters: ::Hash[("IN_TEMPLATE_ID" | "IN_ENTITY_ID"), ::String]
1427
1510
  attr_accessor dry_run: bool
1428
1511
  attr_accessor protect_configuration_id: ::String
1512
+ attr_accessor message_feedback_enabled: bool
1429
1513
  SENSITIVE: []
1430
1514
  end
1431
1515
 
@@ -1446,6 +1530,7 @@ module Aws::PinpointSMSVoiceV2
1446
1530
  attr_accessor context: ::Hash[::String, ::String]
1447
1531
  attr_accessor dry_run: bool
1448
1532
  attr_accessor protect_configuration_id: ::String
1533
+ attr_accessor message_feedback_enabled: bool
1449
1534
  SENSITIVE: []
1450
1535
  end
1451
1536
 
@@ -1495,6 +1580,19 @@ module Aws::PinpointSMSVoiceV2
1495
1580
  SENSITIVE: []
1496
1581
  end
1497
1582
 
1583
+ class SetDefaultMessageFeedbackEnabledRequest
1584
+ attr_accessor configuration_set_name: ::String
1585
+ attr_accessor message_feedback_enabled: bool
1586
+ SENSITIVE: []
1587
+ end
1588
+
1589
+ class SetDefaultMessageFeedbackEnabledResult
1590
+ attr_accessor configuration_set_arn: ::String
1591
+ attr_accessor configuration_set_name: ::String
1592
+ attr_accessor message_feedback_enabled: bool
1593
+ SENSITIVE: []
1594
+ end
1595
+
1498
1596
  class SetDefaultMessageTypeRequest
1499
1597
  attr_accessor configuration_set_name: ::String
1500
1598
  attr_accessor message_type: ("TRANSACTIONAL" | "PROMOTIONAL")
@@ -1626,7 +1724,7 @@ module Aws::PinpointSMSVoiceV2
1626
1724
  attr_accessor configuration_set_name: ::String
1627
1725
  attr_accessor event_destination_name: ::String
1628
1726
  attr_accessor enabled: bool
1629
- attr_accessor matching_event_types: ::Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")]
1727
+ attr_accessor matching_event_types: ::Array[("ALL" | "TEXT_ALL" | "TEXT_SENT" | "TEXT_PENDING" | "TEXT_QUEUED" | "TEXT_SUCCESSFUL" | "TEXT_DELIVERED" | "TEXT_INVALID" | "TEXT_INVALID_MESSAGE" | "TEXT_UNREACHABLE" | "TEXT_CARRIER_UNREACHABLE" | "TEXT_BLOCKED" | "TEXT_CARRIER_BLOCKED" | "TEXT_SPAM" | "TEXT_UNKNOWN" | "TEXT_TTL_EXPIRED" | "TEXT_PROTECT_BLOCKED" | "VOICE_ALL" | "VOICE_INITIATED" | "VOICE_RINGING" | "VOICE_ANSWERED" | "VOICE_COMPLETED" | "VOICE_BUSY" | "VOICE_NO_ANSWER" | "VOICE_FAILED" | "VOICE_TTL_EXPIRED" | "MEDIA_ALL" | "MEDIA_PENDING" | "MEDIA_QUEUED" | "MEDIA_SUCCESSFUL" | "MEDIA_DELIVERED" | "MEDIA_INVALID" | "MEDIA_INVALID_MESSAGE" | "MEDIA_UNREACHABLE" | "MEDIA_CARRIER_UNREACHABLE" | "MEDIA_BLOCKED" | "MEDIA_CARRIER_BLOCKED" | "MEDIA_SPAM" | "MEDIA_UNKNOWN" | "MEDIA_TTL_EXPIRED" | "MEDIA_FILE_INACCESSIBLE" | "MEDIA_FILE_TYPE_UNSUPPORTED" | "MEDIA_FILE_SIZE_EXCEEDED")]
1630
1728
  attr_accessor cloud_watch_logs_destination: Types::CloudWatchLogsDestination
1631
1729
  attr_accessor kinesis_firehose_destination: Types::KinesisFirehoseDestination
1632
1730
  attr_accessor sns_destination: Types::SnsDestination
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.30.0
4
+ version: 1.31.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-08 00:00:00.000000000 Z
11
+ date: 2024-11-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core