aws-sdk-connect 1.187.0 → 1.189.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-connect/client.rb +483 -189
- data/lib/aws-sdk-connect/client_api.rb +75 -0
- data/lib/aws-sdk-connect/types.rb +519 -182
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +61 -13
- data/sig/types.rbs +55 -10
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -143,7 +143,7 @@ module Aws
|
|
143
143
|
instance_id: ::String,
|
144
144
|
resource_id: ::String,
|
145
145
|
flow_id: ::String,
|
146
|
-
resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
146
|
+
resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
147
147
|
) -> _AssociateFlowResponseSuccess
|
148
148
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateFlowResponseSuccess
|
149
149
|
|
@@ -317,7 +317,7 @@ module Aws
|
|
317
317
|
def batch_get_flow_association: (
|
318
318
|
instance_id: ::String,
|
319
319
|
resource_ids: Array[::String],
|
320
|
-
?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
320
|
+
?resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
|
321
321
|
) -> _BatchGetFlowAssociationResponseSuccess
|
322
322
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetFlowAssociationResponseSuccess
|
323
323
|
|
@@ -627,7 +627,7 @@ module Aws
|
|
627
627
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
|
628
628
|
def create_integration_association: (
|
629
629
|
instance_id: ::String,
|
630
|
-
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY"),
|
630
|
+
integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
|
631
631
|
integration_arn: ::String,
|
632
632
|
?source_application_url: ::String,
|
633
633
|
?source_application_name: ::String,
|
@@ -692,6 +692,25 @@ module Aws
|
|
692
692
|
) -> _CreatePromptResponseSuccess
|
693
693
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePromptResponseSuccess
|
694
694
|
|
695
|
+
interface _CreatePushNotificationRegistrationResponseSuccess
|
696
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreatePushNotificationRegistrationResponse]
|
697
|
+
def registration_id: () -> ::String
|
698
|
+
end
|
699
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_push_notification_registration-instance_method
|
700
|
+
def create_push_notification_registration: (
|
701
|
+
instance_id: ::String,
|
702
|
+
?client_token: ::String,
|
703
|
+
pinpoint_app_arn: ::String,
|
704
|
+
device_token: ::String,
|
705
|
+
device_type: ("GCM" | "APNS" | "APNS_SANDBOX"),
|
706
|
+
contact_configuration: {
|
707
|
+
contact_id: ::String,
|
708
|
+
participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")?,
|
709
|
+
include_raw_message: bool?
|
710
|
+
}
|
711
|
+
) -> _CreatePushNotificationRegistrationResponseSuccess
|
712
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreatePushNotificationRegistrationResponseSuccess
|
713
|
+
|
695
714
|
interface _CreateQueueResponseSuccess
|
696
715
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateQueueResponse]
|
697
716
|
def queue_arn: () -> ::String
|
@@ -1177,6 +1196,17 @@ module Aws
|
|
1177
1196
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1178
1197
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1179
1198
|
|
1199
|
+
interface _DeletePushNotificationRegistrationResponseSuccess
|
1200
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeletePushNotificationRegistrationResponse]
|
1201
|
+
end
|
1202
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_push_notification_registration-instance_method
|
1203
|
+
def delete_push_notification_registration: (
|
1204
|
+
instance_id: ::String,
|
1205
|
+
registration_id: ::String,
|
1206
|
+
contact_id: ::String
|
1207
|
+
) -> _DeletePushNotificationRegistrationResponseSuccess
|
1208
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeletePushNotificationRegistrationResponseSuccess
|
1209
|
+
|
1180
1210
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_queue-instance_method
|
1181
1211
|
def delete_queue: (
|
1182
1212
|
instance_id: ::String,
|
@@ -1615,7 +1645,7 @@ module Aws
|
|
1615
1645
|
def disassociate_flow: (
|
1616
1646
|
instance_id: ::String,
|
1617
1647
|
resource_id: ::String,
|
1618
|
-
resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
1648
|
+
resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
1619
1649
|
) -> _DisassociateFlowResponseSuccess
|
1620
1650
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateFlowResponseSuccess
|
1621
1651
|
|
@@ -1820,13 +1850,13 @@ module Aws
|
|
1820
1850
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetFlowAssociationResponse]
|
1821
1851
|
def resource_id: () -> ::String
|
1822
1852
|
def flow_id: () -> ::String
|
1823
|
-
def resource_type: () -> ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
1853
|
+
def resource_type: () -> ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
1824
1854
|
end
|
1825
1855
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_flow_association-instance_method
|
1826
1856
|
def get_flow_association: (
|
1827
1857
|
instance_id: ::String,
|
1828
1858
|
resource_id: ::String,
|
1829
|
-
resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
1859
|
+
resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
1830
1860
|
) -> _GetFlowAssociationResponseSuccess
|
1831
1861
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetFlowAssociationResponseSuccess
|
1832
1862
|
|
@@ -2174,7 +2204,7 @@ module Aws
|
|
2174
2204
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_flow_associations-instance_method
|
2175
2205
|
def list_flow_associations: (
|
2176
2206
|
instance_id: ::String,
|
2177
|
-
?resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL"),
|
2207
|
+
?resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR"),
|
2178
2208
|
?next_token: ::String,
|
2179
2209
|
?max_results: ::Integer
|
2180
2210
|
) -> _ListFlowAssociationsResponseSuccess
|
@@ -2240,7 +2270,7 @@ module Aws
|
|
2240
2270
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
|
2241
2271
|
def list_integration_associations: (
|
2242
2272
|
instance_id: ::String,
|
2243
|
-
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY"),
|
2273
|
+
?integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
|
2244
2274
|
?next_token: ::String,
|
2245
2275
|
?max_results: ::Integer,
|
2246
2276
|
?integration_arn: ::String
|
@@ -2706,7 +2736,8 @@ module Aws
|
|
2706
2736
|
def resume_contact_recording: (
|
2707
2737
|
instance_id: ::String,
|
2708
2738
|
contact_id: ::String,
|
2709
|
-
initial_contact_id: ::String
|
2739
|
+
initial_contact_id: ::String,
|
2740
|
+
?contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
|
2710
2741
|
) -> _ResumeContactRecordingResponseSuccess
|
2711
2742
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ResumeContactRecordingResponseSuccess
|
2712
2743
|
|
@@ -3675,7 +3706,8 @@ module Aws
|
|
3675
3706
|
contact_id: ::String,
|
3676
3707
|
initial_contact_id: ::String,
|
3677
3708
|
voice_recording_configuration: {
|
3678
|
-
voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")
|
3709
|
+
voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")?,
|
3710
|
+
ivr_recording_track: ("ALL")?
|
3679
3711
|
}
|
3680
3712
|
) -> _StartContactRecordingResponseSuccess
|
3681
3713
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactRecordingResponseSuccess
|
@@ -3970,7 +4002,8 @@ module Aws
|
|
3970
4002
|
def stop_contact_recording: (
|
3971
4003
|
instance_id: ::String,
|
3972
4004
|
contact_id: ::String,
|
3973
|
-
initial_contact_id: ::String
|
4005
|
+
initial_contact_id: ::String,
|
4006
|
+
?contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
|
3974
4007
|
) -> _StopContactRecordingResponseSuccess
|
3975
4008
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopContactRecordingResponseSuccess
|
3976
4009
|
|
@@ -4014,7 +4047,8 @@ module Aws
|
|
4014
4047
|
def suspend_contact_recording: (
|
4015
4048
|
instance_id: ::String,
|
4016
4049
|
contact_id: ::String,
|
4017
|
-
initial_contact_id: ::String
|
4050
|
+
initial_contact_id: ::String,
|
4051
|
+
?contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
|
4018
4052
|
) -> _SuspendContactRecordingResponseSuccess
|
4019
4053
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SuspendContactRecordingResponseSuccess
|
4020
4054
|
|
@@ -4114,7 +4148,21 @@ module Aws
|
|
4114
4148
|
value_string: ::String?,
|
4115
4149
|
value_map: Hash[::String, untyped]?,
|
4116
4150
|
value_integer: ::Integer?
|
4117
|
-
}]
|
4151
|
+
}],
|
4152
|
+
?queue_info: {
|
4153
|
+
id: ::String?
|
4154
|
+
},
|
4155
|
+
?user_info: {
|
4156
|
+
user_id: ::String?
|
4157
|
+
},
|
4158
|
+
?customer_endpoint: {
|
4159
|
+
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
|
4160
|
+
address: ::String?
|
4161
|
+
},
|
4162
|
+
?system_endpoint: {
|
4163
|
+
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN" | "EMAIL_ADDRESS")?,
|
4164
|
+
address: ::String?
|
4165
|
+
}
|
4118
4166
|
) -> _UpdateContactResponseSuccess
|
4119
4167
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactResponseSuccess
|
4120
4168
|
|
data/sig/types.rbs
CHANGED
@@ -202,7 +202,7 @@ module Aws::Connect
|
|
202
202
|
attr_accessor instance_id: ::String
|
203
203
|
attr_accessor resource_id: ::String
|
204
204
|
attr_accessor flow_id: ::String
|
205
|
-
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
205
|
+
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
206
206
|
SENSITIVE: []
|
207
207
|
end
|
208
208
|
|
@@ -437,7 +437,7 @@ module Aws::Connect
|
|
437
437
|
class BatchGetFlowAssociationRequest
|
438
438
|
attr_accessor instance_id: ::String
|
439
439
|
attr_accessor resource_ids: ::Array[::String]
|
440
|
-
attr_accessor resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
440
|
+
attr_accessor resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
|
441
441
|
SENSITIVE: []
|
442
442
|
end
|
443
443
|
|
@@ -600,6 +600,13 @@ module Aws::Connect
|
|
600
600
|
SENSITIVE: []
|
601
601
|
end
|
602
602
|
|
603
|
+
class ContactConfiguration
|
604
|
+
attr_accessor contact_id: ::String
|
605
|
+
attr_accessor participant_role: ("AGENT" | "CUSTOMER" | "SYSTEM" | "CUSTOM_BOT" | "SUPERVISOR")
|
606
|
+
attr_accessor include_raw_message: bool
|
607
|
+
SENSITIVE: []
|
608
|
+
end
|
609
|
+
|
603
610
|
class ContactDataRequest
|
604
611
|
attr_accessor system_endpoint: Types::Endpoint
|
605
612
|
attr_accessor customer_endpoint: Types::Endpoint
|
@@ -924,7 +931,7 @@ module Aws::Connect
|
|
924
931
|
|
925
932
|
class CreateIntegrationAssociationRequest
|
926
933
|
attr_accessor instance_id: ::String
|
927
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY")
|
934
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
|
928
935
|
attr_accessor integration_arn: ::String
|
929
936
|
attr_accessor source_application_url: ::String
|
930
937
|
attr_accessor source_application_name: ::String
|
@@ -989,6 +996,21 @@ module Aws::Connect
|
|
989
996
|
SENSITIVE: []
|
990
997
|
end
|
991
998
|
|
999
|
+
class CreatePushNotificationRegistrationRequest
|
1000
|
+
attr_accessor instance_id: ::String
|
1001
|
+
attr_accessor client_token: ::String
|
1002
|
+
attr_accessor pinpoint_app_arn: ::String
|
1003
|
+
attr_accessor device_token: ::String
|
1004
|
+
attr_accessor device_type: ("GCM" | "APNS" | "APNS_SANDBOX")
|
1005
|
+
attr_accessor contact_configuration: Types::ContactConfiguration
|
1006
|
+
SENSITIVE: []
|
1007
|
+
end
|
1008
|
+
|
1009
|
+
class CreatePushNotificationRegistrationResponse
|
1010
|
+
attr_accessor registration_id: ::String
|
1011
|
+
SENSITIVE: []
|
1012
|
+
end
|
1013
|
+
|
992
1014
|
class CreateQueueRequest
|
993
1015
|
attr_accessor instance_id: ::String
|
994
1016
|
attr_accessor name: ::String
|
@@ -1382,6 +1404,16 @@ module Aws::Connect
|
|
1382
1404
|
SENSITIVE: []
|
1383
1405
|
end
|
1384
1406
|
|
1407
|
+
class DeletePushNotificationRegistrationRequest
|
1408
|
+
attr_accessor instance_id: ::String
|
1409
|
+
attr_accessor registration_id: ::String
|
1410
|
+
attr_accessor contact_id: ::String
|
1411
|
+
SENSITIVE: []
|
1412
|
+
end
|
1413
|
+
|
1414
|
+
class DeletePushNotificationRegistrationResponse < Aws::EmptyStructure
|
1415
|
+
end
|
1416
|
+
|
1385
1417
|
class DeleteQueueRequest
|
1386
1418
|
attr_accessor instance_id: ::String
|
1387
1419
|
attr_accessor queue_id: ::String
|
@@ -1816,7 +1848,7 @@ module Aws::Connect
|
|
1816
1848
|
class DisassociateFlowRequest
|
1817
1849
|
attr_accessor instance_id: ::String
|
1818
1850
|
attr_accessor resource_id: ::String
|
1819
|
-
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
1851
|
+
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
1820
1852
|
SENSITIVE: []
|
1821
1853
|
end
|
1822
1854
|
|
@@ -2306,7 +2338,7 @@ module Aws::Connect
|
|
2306
2338
|
class FlowAssociationSummary
|
2307
2339
|
attr_accessor resource_id: ::String
|
2308
2340
|
attr_accessor flow_id: ::String
|
2309
|
-
attr_accessor resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
2341
|
+
attr_accessor resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
|
2310
2342
|
SENSITIVE: []
|
2311
2343
|
end
|
2312
2344
|
|
@@ -2394,14 +2426,14 @@ module Aws::Connect
|
|
2394
2426
|
class GetFlowAssociationRequest
|
2395
2427
|
attr_accessor instance_id: ::String
|
2396
2428
|
attr_accessor resource_id: ::String
|
2397
|
-
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
2429
|
+
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
2398
2430
|
SENSITIVE: []
|
2399
2431
|
end
|
2400
2432
|
|
2401
2433
|
class GetFlowAssociationResponse
|
2402
2434
|
attr_accessor resource_id: ::String
|
2403
2435
|
attr_accessor flow_id: ::String
|
2404
|
-
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
2436
|
+
attr_accessor resource_type: ("SMS_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR" | "WHATSAPP_MESSAGING_PHONE_NUMBER")
|
2405
2437
|
SENSITIVE: []
|
2406
2438
|
end
|
2407
2439
|
|
@@ -2742,7 +2774,7 @@ module Aws::Connect
|
|
2742
2774
|
attr_accessor integration_association_id: ::String
|
2743
2775
|
attr_accessor integration_association_arn: ::String
|
2744
2776
|
attr_accessor instance_id: ::String
|
2745
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY")
|
2777
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
|
2746
2778
|
attr_accessor integration_arn: ::String
|
2747
2779
|
attr_accessor source_application_url: ::String
|
2748
2780
|
attr_accessor source_application_name: ::String
|
@@ -3037,7 +3069,7 @@ module Aws::Connect
|
|
3037
3069
|
|
3038
3070
|
class ListFlowAssociationsRequest
|
3039
3071
|
attr_accessor instance_id: ::String
|
3040
|
-
attr_accessor resource_type: ("VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL")
|
3072
|
+
attr_accessor resource_type: ("WHATSAPP_MESSAGING_PHONE_NUMBER" | "VOICE_PHONE_NUMBER" | "INBOUND_EMAIL" | "OUTBOUND_EMAIL" | "ANALYTICS_CONNECTOR")
|
3041
3073
|
attr_accessor next_token: ::String
|
3042
3074
|
attr_accessor max_results: ::Integer
|
3043
3075
|
SENSITIVE: []
|
@@ -3103,7 +3135,7 @@ module Aws::Connect
|
|
3103
3135
|
|
3104
3136
|
class ListIntegrationAssociationsRequest
|
3105
3137
|
attr_accessor instance_id: ::String
|
3106
|
-
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY")
|
3138
|
+
attr_accessor integration_type: ("EVENT" | "VOICE_ID" | "PINPOINT_APP" | "WISDOM_ASSISTANT" | "WISDOM_KNOWLEDGE_BASE" | "WISDOM_QUICK_RESPONSES" | "Q_MESSAGE_TEMPLATES" | "CASES_DOMAIN" | "APPLICATION" | "FILE_SCANNER" | "SES_IDENTITY" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR")
|
3107
3139
|
attr_accessor next_token: ::String
|
3108
3140
|
attr_accessor max_results: ::Integer
|
3109
3141
|
attr_accessor integration_arn: ::String
|
@@ -3875,6 +3907,11 @@ module Aws::Connect
|
|
3875
3907
|
SENSITIVE: []
|
3876
3908
|
end
|
3877
3909
|
|
3910
|
+
class QueueInfoInput
|
3911
|
+
attr_accessor id: ::String
|
3912
|
+
SENSITIVE: []
|
3913
|
+
end
|
3914
|
+
|
3878
3915
|
class QueueQuickConnectConfig
|
3879
3916
|
attr_accessor queue_id: ::String
|
3880
3917
|
attr_accessor contact_flow_id: ::String
|
@@ -4199,6 +4236,7 @@ module Aws::Connect
|
|
4199
4236
|
attr_accessor instance_id: ::String
|
4200
4237
|
attr_accessor contact_id: ::String
|
4201
4238
|
attr_accessor initial_contact_id: ::String
|
4239
|
+
attr_accessor contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
|
4202
4240
|
SENSITIVE: []
|
4203
4241
|
end
|
4204
4242
|
|
@@ -5053,6 +5091,7 @@ module Aws::Connect
|
|
5053
5091
|
attr_accessor instance_id: ::String
|
5054
5092
|
attr_accessor contact_id: ::String
|
5055
5093
|
attr_accessor initial_contact_id: ::String
|
5094
|
+
attr_accessor contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
|
5056
5095
|
SENSITIVE: []
|
5057
5096
|
end
|
5058
5097
|
|
@@ -5121,6 +5160,7 @@ module Aws::Connect
|
|
5121
5160
|
attr_accessor instance_id: ::String
|
5122
5161
|
attr_accessor contact_id: ::String
|
5123
5162
|
attr_accessor initial_contact_id: ::String
|
5163
|
+
attr_accessor contact_recording_type: ("AGENT" | "IVR" | "SCREEN")
|
5124
5164
|
SENSITIVE: []
|
5125
5165
|
end
|
5126
5166
|
|
@@ -5438,6 +5478,10 @@ module Aws::Connect
|
|
5438
5478
|
attr_accessor description: ::String
|
5439
5479
|
attr_accessor references: ::Hash[::String, Types::Reference]
|
5440
5480
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
5481
|
+
attr_accessor queue_info: Types::QueueInfoInput
|
5482
|
+
attr_accessor user_info: Types::UserInfo
|
5483
|
+
attr_accessor customer_endpoint: Types::Endpoint
|
5484
|
+
attr_accessor system_endpoint: Types::Endpoint
|
5441
5485
|
SENSITIVE: [:name, :description]
|
5442
5486
|
end
|
5443
5487
|
|
@@ -6071,6 +6115,7 @@ module Aws::Connect
|
|
6071
6115
|
|
6072
6116
|
class VoiceRecordingConfiguration
|
6073
6117
|
attr_accessor voice_recording_track: ("FROM_AGENT" | "TO_AGENT" | "ALL")
|
6118
|
+
attr_accessor ivr_recording_track: ("ALL")
|
6074
6119
|
SENSITIVE: []
|
6075
6120
|
end
|
6076
6121
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-connect
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.189.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-12-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|