aws-sdk-connect 1.169.0 → 1.179.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 +50 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +383 -56
- data/lib/aws-sdk-connect/client_api.rb +71 -0
- data/lib/aws-sdk-connect/endpoints.rb +266 -1020
- data/lib/aws-sdk-connect/plugins/endpoints.rb +20 -6
- data/lib/aws-sdk-connect/types.rb +320 -22
- data/lib/aws-sdk-connect.rb +15 -11
- data/sig/client.rbs +72 -7
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +61 -8
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -50,6 +51,7 @@ module Aws
|
|
50
51
|
?session_token: String,
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
55
|
?token_provider: untyped,
|
54
56
|
?use_dualstack_endpoint: bool,
|
55
57
|
?use_fips_endpoint: bool,
|
@@ -128,7 +130,7 @@ module Aws
|
|
128
130
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#associate_default_vocabulary-instance_method
|
129
131
|
def associate_default_vocabulary: (
|
130
132
|
instance_id: ::String,
|
131
|
-
language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA"),
|
133
|
+
language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH"),
|
132
134
|
?vocabulary_id: ::String
|
133
135
|
) -> _AssociateDefaultVocabularyResponseSuccess
|
134
136
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDefaultVocabularyResponseSuccess
|
@@ -331,11 +333,11 @@ module Aws
|
|
331
333
|
contact_data_request_list: Array[
|
332
334
|
{
|
333
335
|
system_endpoint: {
|
334
|
-
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW")?,
|
336
|
+
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
|
335
337
|
address: ::String?
|
336
338
|
}?,
|
337
339
|
customer_endpoint: {
|
338
|
-
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW")?,
|
340
|
+
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
|
339
341
|
address: ::String?
|
340
342
|
}?,
|
341
343
|
request_identifier: ::String?,
|
@@ -990,7 +992,7 @@ module Aws
|
|
990
992
|
?client_token: ::String,
|
991
993
|
instance_id: ::String,
|
992
994
|
vocabulary_name: ::String,
|
993
|
-
language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA"),
|
995
|
+
language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH"),
|
994
996
|
content: ::String,
|
995
997
|
?tags: Hash[::String, ::String]
|
996
998
|
) -> _CreateVocabularyResponseSuccess
|
@@ -1293,6 +1295,7 @@ module Aws
|
|
1293
1295
|
interface _DescribeInstanceResponseSuccess
|
1294
1296
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceResponse]
|
1295
1297
|
def instance: () -> Types::Instance
|
1298
|
+
def replication_configuration: () -> Types::ReplicationConfiguration
|
1296
1299
|
end
|
1297
1300
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance-instance_method
|
1298
1301
|
def describe_instance: (
|
@@ -1998,7 +2001,7 @@ module Aws
|
|
1998
2001
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_default_vocabularies-instance_method
|
1999
2002
|
def list_default_vocabularies: (
|
2000
2003
|
instance_id: ::String,
|
2001
|
-
?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA"),
|
2004
|
+
?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH"),
|
2002
2005
|
?max_results: ::Integer,
|
2003
2006
|
?next_token: ::String
|
2004
2007
|
) -> _ListDefaultVocabulariesResponseSuccess
|
@@ -3319,7 +3322,7 @@ module Aws
|
|
3319
3322
|
?next_token: ::String,
|
3320
3323
|
?state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS"),
|
3321
3324
|
?name_starts_with: ::String,
|
3322
|
-
?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
3325
|
+
?language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
3323
3326
|
) -> _SearchVocabulariesResponseSuccess
|
3324
3327
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchVocabulariesResponseSuccess
|
3325
3328
|
|
@@ -3453,6 +3456,40 @@ module Aws
|
|
3453
3456
|
) -> _StartContactStreamingResponseSuccess
|
3454
3457
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartContactStreamingResponseSuccess
|
3455
3458
|
|
3459
|
+
interface _StartOutboundChatContactResponseSuccess
|
3460
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundChatContactResponse]
|
3461
|
+
def contact_id: () -> ::String
|
3462
|
+
end
|
3463
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#start_outbound_chat_contact-instance_method
|
3464
|
+
def start_outbound_chat_contact: (
|
3465
|
+
source_endpoint: {
|
3466
|
+
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
|
3467
|
+
address: ::String?
|
3468
|
+
},
|
3469
|
+
destination_endpoint: {
|
3470
|
+
type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")?,
|
3471
|
+
address: ::String?
|
3472
|
+
},
|
3473
|
+
instance_id: ::String,
|
3474
|
+
segment_attributes: Hash[::String, {
|
3475
|
+
value_string: ::String?
|
3476
|
+
}],
|
3477
|
+
?attributes: Hash[::String, ::String],
|
3478
|
+
contact_flow_id: ::String,
|
3479
|
+
?chat_duration_in_minutes: ::Integer,
|
3480
|
+
?participant_details: {
|
3481
|
+
display_name: ::String
|
3482
|
+
},
|
3483
|
+
?initial_system_message: {
|
3484
|
+
content_type: ::String,
|
3485
|
+
content: ::String
|
3486
|
+
},
|
3487
|
+
?related_contact_id: ::String,
|
3488
|
+
?supported_messaging_content_types: Array[::String],
|
3489
|
+
?client_token: ::String
|
3490
|
+
) -> _StartOutboundChatContactResponseSuccess
|
3491
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartOutboundChatContactResponseSuccess
|
3492
|
+
|
3456
3493
|
interface _StartOutboundVoiceContactResponseSuccess
|
3457
3494
|
include ::Seahorse::Client::_ResponseSuccess[Types::StartOutboundVoiceContactResponse]
|
3458
3495
|
def contact_id: () -> ::String
|
@@ -3800,7 +3837,35 @@ module Aws
|
|
3800
3837
|
instance_id: ::String,
|
3801
3838
|
contact_id: ::String,
|
3802
3839
|
?queue_time_adjustment_seconds: ::Integer,
|
3803
|
-
?queue_priority: ::Integer
|
3840
|
+
?queue_priority: ::Integer,
|
3841
|
+
?routing_criteria: {
|
3842
|
+
steps: Array[
|
3843
|
+
{
|
3844
|
+
expiry: {
|
3845
|
+
duration_in_seconds: ::Integer?
|
3846
|
+
}?,
|
3847
|
+
expression: {
|
3848
|
+
attribute_condition: {
|
3849
|
+
name: ::String?,
|
3850
|
+
value: ::String?,
|
3851
|
+
proficiency_level: ::Float?,
|
3852
|
+
match_criteria: {
|
3853
|
+
agents_criteria: {
|
3854
|
+
agent_ids: Array[::String]?
|
3855
|
+
}?
|
3856
|
+
}?,
|
3857
|
+
comparison_operator: ::String?
|
3858
|
+
}?,
|
3859
|
+
and_expression: Array[
|
3860
|
+
untyped,
|
3861
|
+
]?,
|
3862
|
+
or_expression: Array[
|
3863
|
+
untyped,
|
3864
|
+
]?
|
3865
|
+
}?
|
3866
|
+
},
|
3867
|
+
]?
|
3868
|
+
}
|
3804
3869
|
) -> _UpdateContactRoutingDataResponseSuccess
|
3805
3870
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContactRoutingDataResponseSuccess
|
3806
3871
|
|
data/sig/resource.rbs
CHANGED
@@ -15,6 +15,7 @@ module Aws
|
|
15
15
|
?credentials: untyped,
|
16
16
|
?region: String,
|
17
17
|
?access_key_id: String,
|
18
|
+
?account_id: String,
|
18
19
|
?active_endpoint_cache: bool,
|
19
20
|
?adaptive_retry_wait_to_fill: bool,
|
20
21
|
?client_side_monitoring: bool,
|
@@ -50,6 +51,7 @@ module Aws
|
|
50
51
|
?session_token: String,
|
51
52
|
?sigv4a_signing_region_set: Array[String],
|
52
53
|
?stub_responses: untyped,
|
54
|
+
?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
|
53
55
|
?token_provider: untyped,
|
54
56
|
?use_dualstack_endpoint: bool,
|
55
57
|
?use_fips_endpoint: bool,
|
data/sig/types.rbs
CHANGED
@@ -184,7 +184,7 @@ module Aws::Connect
|
|
184
184
|
|
185
185
|
class AssociateDefaultVocabularyRequest
|
186
186
|
attr_accessor instance_id: ::String
|
187
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
187
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
188
188
|
attr_accessor vocabulary_id: ::String
|
189
189
|
SENSITIVE: []
|
190
190
|
end
|
@@ -1089,7 +1089,7 @@ module Aws::Connect
|
|
1089
1089
|
attr_accessor client_token: ::String
|
1090
1090
|
attr_accessor instance_id: ::String
|
1091
1091
|
attr_accessor vocabulary_name: ::String
|
1092
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
1092
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
1093
1093
|
attr_accessor content: ::String
|
1094
1094
|
attr_accessor tags: ::Hash[::String, ::String]
|
1095
1095
|
SENSITIVE: []
|
@@ -1192,7 +1192,7 @@ module Aws::Connect
|
|
1192
1192
|
|
1193
1193
|
class DefaultVocabulary
|
1194
1194
|
attr_accessor instance_id: ::String
|
1195
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
1195
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
1196
1196
|
attr_accessor vocabulary_id: ::String
|
1197
1197
|
attr_accessor vocabulary_name: ::String
|
1198
1198
|
SENSITIVE: []
|
@@ -1474,6 +1474,7 @@ module Aws::Connect
|
|
1474
1474
|
|
1475
1475
|
class DescribeInstanceResponse
|
1476
1476
|
attr_accessor instance: Types::Instance
|
1477
|
+
attr_accessor replication_configuration: Types::ReplicationConfiguration
|
1477
1478
|
SENSITIVE: []
|
1478
1479
|
end
|
1479
1480
|
|
@@ -1809,7 +1810,7 @@ module Aws::Connect
|
|
1809
1810
|
end
|
1810
1811
|
|
1811
1812
|
class Endpoint
|
1812
|
-
attr_accessor type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW")
|
1813
|
+
attr_accessor type: ("TELEPHONE_NUMBER" | "VOIP" | "CONTACT_FLOW" | "CONNECT_PHONENUMBER_ARN")
|
1813
1814
|
attr_accessor address: ::String
|
1814
1815
|
SENSITIVE: []
|
1815
1816
|
end
|
@@ -2762,7 +2763,7 @@ module Aws::Connect
|
|
2762
2763
|
|
2763
2764
|
class ListDefaultVocabulariesRequest
|
2764
2765
|
attr_accessor instance_id: ::String
|
2765
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
2766
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
2766
2767
|
attr_accessor max_results: ::Integer
|
2767
2768
|
attr_accessor next_token: ::String
|
2768
2769
|
SENSITIVE: []
|
@@ -3883,6 +3884,20 @@ module Aws::Connect
|
|
3883
3884
|
SENSITIVE: []
|
3884
3885
|
end
|
3885
3886
|
|
3887
|
+
class ReplicationConfiguration
|
3888
|
+
attr_accessor replication_status_summary_list: ::Array[Types::ReplicationStatusSummary]
|
3889
|
+
attr_accessor source_region: ::String
|
3890
|
+
attr_accessor global_sign_in_endpoint: ::String
|
3891
|
+
SENSITIVE: []
|
3892
|
+
end
|
3893
|
+
|
3894
|
+
class ReplicationStatusSummary
|
3895
|
+
attr_accessor region: ::String
|
3896
|
+
attr_accessor replication_status: ("INSTANCE_REPLICATION_COMPLETE" | "INSTANCE_REPLICATION_IN_PROGRESS" | "INSTANCE_REPLICATION_FAILED" | "INSTANCE_REPLICA_DELETING" | "INSTANCE_REPLICATION_DELETION_FAILED" | "RESOURCE_REPLICATION_NOT_STARTED")
|
3897
|
+
attr_accessor replication_status_reason: ::String
|
3898
|
+
SENSITIVE: []
|
3899
|
+
end
|
3900
|
+
|
3886
3901
|
class RequiredFieldInfo
|
3887
3902
|
attr_accessor id: Types::TaskTemplateFieldIdentifier
|
3888
3903
|
SENSITIVE: []
|
@@ -3942,6 +3957,22 @@ module Aws::Connect
|
|
3942
3957
|
SENSITIVE: []
|
3943
3958
|
end
|
3944
3959
|
|
3960
|
+
class RoutingCriteriaInput
|
3961
|
+
attr_accessor steps: ::Array[Types::RoutingCriteriaInputStep]
|
3962
|
+
SENSITIVE: []
|
3963
|
+
end
|
3964
|
+
|
3965
|
+
class RoutingCriteriaInputStep
|
3966
|
+
attr_accessor expiry: Types::RoutingCriteriaInputStepExpiry
|
3967
|
+
attr_accessor expression: Types::Expression
|
3968
|
+
SENSITIVE: []
|
3969
|
+
end
|
3970
|
+
|
3971
|
+
class RoutingCriteriaInputStepExpiry
|
3972
|
+
attr_accessor duration_in_seconds: ::Integer
|
3973
|
+
SENSITIVE: []
|
3974
|
+
end
|
3975
|
+
|
3945
3976
|
class RoutingProfile
|
3946
3977
|
attr_accessor instance_id: ::String
|
3947
3978
|
attr_accessor name: ::String
|
@@ -4328,7 +4359,7 @@ module Aws::Connect
|
|
4328
4359
|
attr_accessor next_token: ::String
|
4329
4360
|
attr_accessor state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS")
|
4330
4361
|
attr_accessor name_starts_with: ::String
|
4331
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
4362
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
4332
4363
|
SENSITIVE: []
|
4333
4364
|
end
|
4334
4365
|
|
@@ -4546,6 +4577,27 @@ module Aws::Connect
|
|
4546
4577
|
SENSITIVE: []
|
4547
4578
|
end
|
4548
4579
|
|
4580
|
+
class StartOutboundChatContactRequest
|
4581
|
+
attr_accessor source_endpoint: Types::Endpoint
|
4582
|
+
attr_accessor destination_endpoint: Types::Endpoint
|
4583
|
+
attr_accessor instance_id: ::String
|
4584
|
+
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
4585
|
+
attr_accessor attributes: ::Hash[::String, ::String]
|
4586
|
+
attr_accessor contact_flow_id: ::String
|
4587
|
+
attr_accessor chat_duration_in_minutes: ::Integer
|
4588
|
+
attr_accessor participant_details: Types::ParticipantDetails
|
4589
|
+
attr_accessor initial_system_message: Types::ChatMessage
|
4590
|
+
attr_accessor related_contact_id: ::String
|
4591
|
+
attr_accessor supported_messaging_content_types: ::Array[::String]
|
4592
|
+
attr_accessor client_token: ::String
|
4593
|
+
SENSITIVE: []
|
4594
|
+
end
|
4595
|
+
|
4596
|
+
class StartOutboundChatContactResponse
|
4597
|
+
attr_accessor contact_id: ::String
|
4598
|
+
SENSITIVE: []
|
4599
|
+
end
|
4600
|
+
|
4549
4601
|
class StartOutboundVoiceContactRequest
|
4550
4602
|
attr_accessor name: ::String
|
4551
4603
|
attr_accessor description: ::String
|
@@ -5004,6 +5056,7 @@ module Aws::Connect
|
|
5004
5056
|
attr_accessor contact_id: ::String
|
5005
5057
|
attr_accessor queue_time_adjustment_seconds: ::Integer
|
5006
5058
|
attr_accessor queue_priority: ::Integer
|
5059
|
+
attr_accessor routing_criteria: Types::RoutingCriteriaInput
|
5007
5060
|
SENSITIVE: []
|
5008
5061
|
end
|
5009
5062
|
|
@@ -5574,7 +5627,7 @@ module Aws::Connect
|
|
5574
5627
|
attr_accessor name: ::String
|
5575
5628
|
attr_accessor id: ::String
|
5576
5629
|
attr_accessor arn: ::String
|
5577
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
5630
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
5578
5631
|
attr_accessor state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS")
|
5579
5632
|
attr_accessor last_modified_time: ::Time
|
5580
5633
|
attr_accessor failure_reason: ::String
|
@@ -5587,7 +5640,7 @@ module Aws::Connect
|
|
5587
5640
|
attr_accessor name: ::String
|
5588
5641
|
attr_accessor id: ::String
|
5589
5642
|
attr_accessor arn: ::String
|
5590
|
-
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA")
|
5643
|
+
attr_accessor language_code: ("ar-AE" | "de-CH" | "de-DE" | "en-AB" | "en-AU" | "en-GB" | "en-IE" | "en-IN" | "en-US" | "en-WL" | "es-ES" | "es-US" | "fr-CA" | "fr-FR" | "hi-IN" | "it-IT" | "ja-JP" | "ko-KR" | "pt-BR" | "pt-PT" | "zh-CN" | "en-NZ" | "en-ZA" | "ca-ES" | "da-DK" | "fi-FI" | "id-ID" | "ms-MY" | "nl-NL" | "no-NO" | "pl-PL" | "sv-SE" | "tl-PH")
|
5591
5644
|
attr_accessor state: ("CREATION_IN_PROGRESS" | "ACTIVE" | "CREATION_FAILED" | "DELETE_IN_PROGRESS")
|
5592
5645
|
attr_accessor last_modified_time: ::Time
|
5593
5646
|
attr_accessor failure_reason: ::String
|
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.179.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-30 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.207.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.207.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|