aws-sdk-connect 1.189.0 → 1.191.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect/client.rb +514 -13
- data/lib/aws-sdk-connect/client_api.rb +289 -0
- data/lib/aws-sdk-connect/types.rb +622 -6
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +179 -6
- data/sig/types.rbs +168 -7
- metadata +2 -2
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -602,6 +602,34 @@ module Aws
|
|
602
602
|
) -> _CreateHoursOfOperationResponseSuccess
|
603
603
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationResponseSuccess
|
604
604
|
|
605
|
+
interface _CreateHoursOfOperationOverrideResponseSuccess
|
606
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateHoursOfOperationOverrideResponse]
|
607
|
+
def hours_of_operation_override_id: () -> ::String
|
608
|
+
end
|
609
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_hours_of_operation_override-instance_method
|
610
|
+
def create_hours_of_operation_override: (
|
611
|
+
instance_id: ::String,
|
612
|
+
hours_of_operation_id: ::String,
|
613
|
+
name: ::String,
|
614
|
+
?description: ::String,
|
615
|
+
config: Array[
|
616
|
+
{
|
617
|
+
day: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
618
|
+
start_time: {
|
619
|
+
hours: ::Integer,
|
620
|
+
minutes: ::Integer
|
621
|
+
}?,
|
622
|
+
end_time: {
|
623
|
+
hours: ::Integer,
|
624
|
+
minutes: ::Integer
|
625
|
+
}?
|
626
|
+
},
|
627
|
+
],
|
628
|
+
effective_from: ::String,
|
629
|
+
effective_till: ::String
|
630
|
+
) -> _CreateHoursOfOperationOverrideResponseSuccess
|
631
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateHoursOfOperationOverrideResponseSuccess
|
632
|
+
|
605
633
|
interface _CreateInstanceResponseSuccess
|
606
634
|
include ::Seahorse::Client::_ResponseSuccess[Types::CreateInstanceResponse]
|
607
635
|
def id: () -> ::String
|
@@ -627,7 +655,7 @@ module Aws
|
|
627
655
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#create_integration_association-instance_method
|
628
656
|
def create_integration_association: (
|
629
657
|
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" | "ANALYTICS_CONNECTOR" | "CALL_TRANSFER_CONNECTOR"),
|
658
|
+
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" | "COGNITO_USER_POOL"),
|
631
659
|
integration_arn: ::String,
|
632
660
|
?source_application_url: ::String,
|
633
661
|
?source_application_name: ::String,
|
@@ -1169,6 +1197,14 @@ module Aws
|
|
1169
1197
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1170
1198
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1171
1199
|
|
1200
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_hours_of_operation_override-instance_method
|
1201
|
+
def delete_hours_of_operation_override: (
|
1202
|
+
instance_id: ::String,
|
1203
|
+
hours_of_operation_id: ::String,
|
1204
|
+
hours_of_operation_override_id: ::String
|
1205
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1206
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1207
|
+
|
1172
1208
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#delete_instance-instance_method
|
1173
1209
|
def delete_instance: (
|
1174
1210
|
instance_id: ::String
|
@@ -1425,6 +1461,18 @@ module Aws
|
|
1425
1461
|
) -> _DescribeHoursOfOperationResponseSuccess
|
1426
1462
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHoursOfOperationResponseSuccess
|
1427
1463
|
|
1464
|
+
interface _DescribeHoursOfOperationOverrideResponseSuccess
|
1465
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeHoursOfOperationOverrideResponse]
|
1466
|
+
def hours_of_operation_override: () -> Types::HoursOfOperationOverride
|
1467
|
+
end
|
1468
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_hours_of_operation_override-instance_method
|
1469
|
+
def describe_hours_of_operation_override: (
|
1470
|
+
instance_id: ::String,
|
1471
|
+
hours_of_operation_id: ::String,
|
1472
|
+
hours_of_operation_override_id: ::String
|
1473
|
+
) -> _DescribeHoursOfOperationOverrideResponseSuccess
|
1474
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeHoursOfOperationOverrideResponseSuccess
|
1475
|
+
|
1428
1476
|
interface _DescribeInstanceResponseSuccess
|
1429
1477
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeInstanceResponse]
|
1430
1478
|
def instance: () -> Types::Instance
|
@@ -1443,7 +1491,7 @@ module Aws
|
|
1443
1491
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_instance_attribute-instance_method
|
1444
1492
|
def describe_instance_attribute: (
|
1445
1493
|
instance_id: ::String,
|
1446
|
-
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
1494
|
+
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
1447
1495
|
) -> _DescribeInstanceAttributeResponseSuccess
|
1448
1496
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeInstanceAttributeResponseSuccess
|
1449
1497
|
|
@@ -1833,6 +1881,20 @@ module Aws
|
|
1833
1881
|
) -> _GetCurrentUserDataResponseSuccess
|
1834
1882
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetCurrentUserDataResponseSuccess
|
1835
1883
|
|
1884
|
+
interface _GetEffectiveHoursOfOperationsResponseSuccess
|
1885
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetEffectiveHoursOfOperationsResponse]
|
1886
|
+
def effective_hours_of_operation_list: () -> ::Array[Types::EffectiveHoursOfOperations]
|
1887
|
+
def time_zone: () -> ::String
|
1888
|
+
end
|
1889
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#get_effective_hours_of_operations-instance_method
|
1890
|
+
def get_effective_hours_of_operations: (
|
1891
|
+
instance_id: ::String,
|
1892
|
+
hours_of_operation_id: ::String,
|
1893
|
+
from_date: ::String,
|
1894
|
+
to_date: ::String
|
1895
|
+
) -> _GetEffectiveHoursOfOperationsResponseSuccess
|
1896
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetEffectiveHoursOfOperationsResponseSuccess
|
1897
|
+
|
1836
1898
|
interface _GetFederationTokenResponseSuccess
|
1837
1899
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetFederationTokenResponse]
|
1838
1900
|
def credentials: () -> Types::Credentials
|
@@ -2210,6 +2272,22 @@ module Aws
|
|
2210
2272
|
) -> _ListFlowAssociationsResponseSuccess
|
2211
2273
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFlowAssociationsResponseSuccess
|
2212
2274
|
|
2275
|
+
interface _ListHoursOfOperationOverridesResponseSuccess
|
2276
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListHoursOfOperationOverridesResponse]
|
2277
|
+
def next_token: () -> ::String
|
2278
|
+
def hours_of_operation_override_list: () -> ::Array[Types::HoursOfOperationOverride]
|
2279
|
+
def last_modified_region: () -> ::String
|
2280
|
+
def last_modified_time: () -> ::Time
|
2281
|
+
end
|
2282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_hours_of_operation_overrides-instance_method
|
2283
|
+
def list_hours_of_operation_overrides: (
|
2284
|
+
instance_id: ::String,
|
2285
|
+
hours_of_operation_id: ::String,
|
2286
|
+
?next_token: ::String,
|
2287
|
+
?max_results: ::Integer
|
2288
|
+
) -> _ListHoursOfOperationOverridesResponseSuccess
|
2289
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListHoursOfOperationOverridesResponseSuccess
|
2290
|
+
|
2213
2291
|
interface _ListHoursOfOperationsResponseSuccess
|
2214
2292
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListHoursOfOperationsResponse]
|
2215
2293
|
def hours_of_operation_summary_list: () -> ::Array[Types::HoursOfOperationSummary]
|
@@ -2270,7 +2348,7 @@ module Aws
|
|
2270
2348
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_integration_associations-instance_method
|
2271
2349
|
def list_integration_associations: (
|
2272
2350
|
instance_id: ::String,
|
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"),
|
2351
|
+
?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" | "COGNITO_USER_POOL"),
|
2274
2352
|
?next_token: ::String,
|
2275
2353
|
?max_results: ::Integer,
|
2276
2354
|
?integration_arn: ::String
|
@@ -2855,7 +2933,9 @@ module Aws
|
|
2855
2933
|
field_name: ::String?,
|
2856
2934
|
value: ::String?,
|
2857
2935
|
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
2858
|
-
}
|
2936
|
+
}?,
|
2937
|
+
state_condition: ("ACTIVE" | "ARCHIVED")?,
|
2938
|
+
status_condition: ("PUBLISHED" | "SAVED")?
|
2859
2939
|
}
|
2860
2940
|
) -> _SearchContactFlowModulesResponseSuccess
|
2861
2941
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchContactFlowModulesResponseSuccess
|
@@ -3027,6 +3107,60 @@ module Aws
|
|
3027
3107
|
) -> _SearchEmailAddressesResponseSuccess
|
3028
3108
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchEmailAddressesResponseSuccess
|
3029
3109
|
|
3110
|
+
interface _SearchHoursOfOperationOverridesResponseSuccess
|
3111
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::SearchHoursOfOperationOverridesResponse]
|
3112
|
+
def hours_of_operation_overrides: () -> ::Array[Types::HoursOfOperationOverride]
|
3113
|
+
def next_token: () -> ::String
|
3114
|
+
def approximate_total_count: () -> ::Integer
|
3115
|
+
end
|
3116
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#search_hours_of_operation_overrides-instance_method
|
3117
|
+
def search_hours_of_operation_overrides: (
|
3118
|
+
instance_id: ::String,
|
3119
|
+
?next_token: ::String,
|
3120
|
+
?max_results: ::Integer,
|
3121
|
+
?search_filter: {
|
3122
|
+
tag_filter: {
|
3123
|
+
or_conditions: Array[
|
3124
|
+
Array[
|
3125
|
+
{
|
3126
|
+
tag_key: ::String?,
|
3127
|
+
tag_value: ::String?
|
3128
|
+
},
|
3129
|
+
],
|
3130
|
+
]?,
|
3131
|
+
and_conditions: Array[
|
3132
|
+
{
|
3133
|
+
tag_key: ::String?,
|
3134
|
+
tag_value: ::String?
|
3135
|
+
},
|
3136
|
+
]?,
|
3137
|
+
tag_condition: {
|
3138
|
+
tag_key: ::String?,
|
3139
|
+
tag_value: ::String?
|
3140
|
+
}?
|
3141
|
+
}?
|
3142
|
+
},
|
3143
|
+
?search_criteria: {
|
3144
|
+
or_conditions: Array[
|
3145
|
+
untyped,
|
3146
|
+
]?,
|
3147
|
+
and_conditions: Array[
|
3148
|
+
untyped,
|
3149
|
+
]?,
|
3150
|
+
string_condition: {
|
3151
|
+
field_name: ::String?,
|
3152
|
+
value: ::String?,
|
3153
|
+
comparison_type: ("STARTS_WITH" | "CONTAINS" | "EXACT")?
|
3154
|
+
}?,
|
3155
|
+
date_condition: {
|
3156
|
+
field_name: ::String?,
|
3157
|
+
value: ::String?,
|
3158
|
+
comparison_type: ("GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO")?
|
3159
|
+
}?
|
3160
|
+
}
|
3161
|
+
) -> _SearchHoursOfOperationOverridesResponseSuccess
|
3162
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchHoursOfOperationOverridesResponseSuccess
|
3163
|
+
|
3030
3164
|
interface _SearchHoursOfOperationsResponseSuccess
|
3031
3165
|
include ::Seahorse::Client::_ResponseSuccess[Types::SearchHoursOfOperationsResponse]
|
3032
3166
|
def hours_of_operations: () -> ::Array[Types::HoursOfOperation]
|
@@ -3679,7 +3813,8 @@ module Aws
|
|
3679
3813
|
value_string: ::String?,
|
3680
3814
|
value_map: Hash[::String, untyped]?,
|
3681
3815
|
value_integer: ::Integer?
|
3682
|
-
}]
|
3816
|
+
}],
|
3817
|
+
?customer_id: ::String
|
3683
3818
|
) -> _StartChatContactResponseSuccess
|
3684
3819
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartChatContactResponseSuccess
|
3685
3820
|
|
@@ -4431,10 +4566,35 @@ module Aws
|
|
4431
4566
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4432
4567
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4433
4568
|
|
4569
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_hours_of_operation_override-instance_method
|
4570
|
+
def update_hours_of_operation_override: (
|
4571
|
+
instance_id: ::String,
|
4572
|
+
hours_of_operation_id: ::String,
|
4573
|
+
hours_of_operation_override_id: ::String,
|
4574
|
+
?name: ::String,
|
4575
|
+
?description: ::String,
|
4576
|
+
?config: Array[
|
4577
|
+
{
|
4578
|
+
day: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")?,
|
4579
|
+
start_time: {
|
4580
|
+
hours: ::Integer,
|
4581
|
+
minutes: ::Integer
|
4582
|
+
}?,
|
4583
|
+
end_time: {
|
4584
|
+
hours: ::Integer,
|
4585
|
+
minutes: ::Integer
|
4586
|
+
}?
|
4587
|
+
},
|
4588
|
+
],
|
4589
|
+
?effective_from: ::String,
|
4590
|
+
?effective_till: ::String
|
4591
|
+
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4592
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4593
|
+
|
4434
4594
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_instance_attribute-instance_method
|
4435
4595
|
def update_instance_attribute: (
|
4436
4596
|
instance_id: ::String,
|
4437
|
-
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING"),
|
4597
|
+
attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE"),
|
4438
4598
|
value: ::String
|
4439
4599
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4440
4600
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
@@ -4473,6 +4633,19 @@ module Aws
|
|
4473
4633
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4474
4634
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
4475
4635
|
|
4636
|
+
interface _UpdateParticipantAuthenticationResponseSuccess
|
4637
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateParticipantAuthenticationResponse]
|
4638
|
+
end
|
4639
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_participant_authentication-instance_method
|
4640
|
+
def update_participant_authentication: (
|
4641
|
+
state: ::String,
|
4642
|
+
instance_id: ::String,
|
4643
|
+
?code: ::String,
|
4644
|
+
?error: ::String,
|
4645
|
+
?error_description: ::String
|
4646
|
+
) -> _UpdateParticipantAuthenticationResponseSuccess
|
4647
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateParticipantAuthenticationResponseSuccess
|
4648
|
+
|
4476
4649
|
interface _UpdateParticipantRoleConfigResponseSuccess
|
4477
4650
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateParticipantRoleConfigResponse]
|
4478
4651
|
end
|
data/sig/types.rbs
CHANGED
@@ -331,7 +331,7 @@ module Aws::Connect
|
|
331
331
|
end
|
332
332
|
|
333
333
|
class Attribute
|
334
|
-
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
334
|
+
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
335
335
|
attr_accessor value: ::String
|
336
336
|
SENSITIVE: []
|
337
337
|
end
|
@@ -577,6 +577,7 @@ module Aws::Connect
|
|
577
577
|
attr_accessor scheduled_timestamp: ::Time
|
578
578
|
attr_accessor related_contact_id: ::String
|
579
579
|
attr_accessor wisdom_info: Types::WisdomInfo
|
580
|
+
attr_accessor customer_id: ::String
|
580
581
|
attr_accessor customer_endpoint: Types::EndpointInfo
|
581
582
|
attr_accessor system_endpoint: Types::EndpointInfo
|
582
583
|
attr_accessor queue_time_adjustment_seconds: ::Integer
|
@@ -656,6 +657,8 @@ module Aws::Connect
|
|
656
657
|
attr_accessor or_conditions: ::Array[Types::ContactFlowModuleSearchCriteria]
|
657
658
|
attr_accessor and_conditions: ::Array[Types::ContactFlowModuleSearchCriteria]
|
658
659
|
attr_accessor string_condition: Types::StringCondition
|
660
|
+
attr_accessor state_condition: ("ACTIVE" | "ARCHIVED")
|
661
|
+
attr_accessor status_condition: ("PUBLISHED" | "SAVED")
|
659
662
|
SENSITIVE: []
|
660
663
|
end
|
661
664
|
|
@@ -896,6 +899,22 @@ module Aws::Connect
|
|
896
899
|
SENSITIVE: []
|
897
900
|
end
|
898
901
|
|
902
|
+
class CreateHoursOfOperationOverrideRequest
|
903
|
+
attr_accessor instance_id: ::String
|
904
|
+
attr_accessor hours_of_operation_id: ::String
|
905
|
+
attr_accessor name: ::String
|
906
|
+
attr_accessor description: ::String
|
907
|
+
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
908
|
+
attr_accessor effective_from: ::String
|
909
|
+
attr_accessor effective_till: ::String
|
910
|
+
SENSITIVE: []
|
911
|
+
end
|
912
|
+
|
913
|
+
class CreateHoursOfOperationOverrideResponse
|
914
|
+
attr_accessor hours_of_operation_override_id: ::String
|
915
|
+
SENSITIVE: []
|
916
|
+
end
|
917
|
+
|
899
918
|
class CreateHoursOfOperationRequest
|
900
919
|
attr_accessor instance_id: ::String
|
901
920
|
attr_accessor name: ::String
|
@@ -931,7 +950,7 @@ module Aws::Connect
|
|
931
950
|
|
932
951
|
class CreateIntegrationAssociationRequest
|
933
952
|
attr_accessor instance_id: ::String
|
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")
|
953
|
+
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" | "COGNITO_USER_POOL")
|
935
954
|
attr_accessor integration_arn: ::String
|
936
955
|
attr_accessor source_application_url: ::String
|
937
956
|
attr_accessor source_application_name: ::String
|
@@ -1297,6 +1316,13 @@ module Aws::Connect
|
|
1297
1316
|
SENSITIVE: []
|
1298
1317
|
end
|
1299
1318
|
|
1319
|
+
class DateCondition
|
1320
|
+
attr_accessor field_name: ::String
|
1321
|
+
attr_accessor value: ::String
|
1322
|
+
attr_accessor comparison_type: ("GREATER_THAN" | "LESS_THAN" | "GREATER_THAN_OR_EQUAL_TO" | "LESS_THAN_OR_EQUAL_TO" | "EQUAL_TO")
|
1323
|
+
SENSITIVE: []
|
1324
|
+
end
|
1325
|
+
|
1300
1326
|
class DateReference
|
1301
1327
|
attr_accessor name: ::String
|
1302
1328
|
attr_accessor value: ::String
|
@@ -1375,6 +1401,13 @@ module Aws::Connect
|
|
1375
1401
|
SENSITIVE: []
|
1376
1402
|
end
|
1377
1403
|
|
1404
|
+
class DeleteHoursOfOperationOverrideRequest
|
1405
|
+
attr_accessor instance_id: ::String
|
1406
|
+
attr_accessor hours_of_operation_id: ::String
|
1407
|
+
attr_accessor hours_of_operation_override_id: ::String
|
1408
|
+
SENSITIVE: []
|
1409
|
+
end
|
1410
|
+
|
1378
1411
|
class DeleteHoursOfOperationRequest
|
1379
1412
|
attr_accessor instance_id: ::String
|
1380
1413
|
attr_accessor hours_of_operation_id: ::String
|
@@ -1609,6 +1642,18 @@ module Aws::Connect
|
|
1609
1642
|
SENSITIVE: []
|
1610
1643
|
end
|
1611
1644
|
|
1645
|
+
class DescribeHoursOfOperationOverrideRequest
|
1646
|
+
attr_accessor instance_id: ::String
|
1647
|
+
attr_accessor hours_of_operation_id: ::String
|
1648
|
+
attr_accessor hours_of_operation_override_id: ::String
|
1649
|
+
SENSITIVE: []
|
1650
|
+
end
|
1651
|
+
|
1652
|
+
class DescribeHoursOfOperationOverrideResponse
|
1653
|
+
attr_accessor hours_of_operation_override: Types::HoursOfOperationOverride
|
1654
|
+
SENSITIVE: []
|
1655
|
+
end
|
1656
|
+
|
1612
1657
|
class DescribeHoursOfOperationRequest
|
1613
1658
|
attr_accessor instance_id: ::String
|
1614
1659
|
attr_accessor hours_of_operation_id: ::String
|
@@ -1622,7 +1667,7 @@ module Aws::Connect
|
|
1622
1667
|
|
1623
1668
|
class DescribeInstanceAttributeRequest
|
1624
1669
|
attr_accessor instance_id: ::String
|
1625
|
-
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
1670
|
+
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
1626
1671
|
SENSITIVE: []
|
1627
1672
|
end
|
1628
1673
|
|
@@ -1955,6 +2000,12 @@ module Aws::Connect
|
|
1955
2000
|
SENSITIVE: []
|
1956
2001
|
end
|
1957
2002
|
|
2003
|
+
class EffectiveHoursOfOperations
|
2004
|
+
attr_accessor date: ::String
|
2005
|
+
attr_accessor operational_hours: ::Array[Types::OperationalHour]
|
2006
|
+
SENSITIVE: []
|
2007
|
+
end
|
2008
|
+
|
1958
2009
|
class EmailAddressInfo
|
1959
2010
|
attr_accessor email_address: ::String
|
1960
2011
|
attr_accessor display_name: ::String
|
@@ -2410,6 +2461,20 @@ module Aws::Connect
|
|
2410
2461
|
SENSITIVE: []
|
2411
2462
|
end
|
2412
2463
|
|
2464
|
+
class GetEffectiveHoursOfOperationsRequest
|
2465
|
+
attr_accessor instance_id: ::String
|
2466
|
+
attr_accessor hours_of_operation_id: ::String
|
2467
|
+
attr_accessor from_date: ::String
|
2468
|
+
attr_accessor to_date: ::String
|
2469
|
+
SENSITIVE: []
|
2470
|
+
end
|
2471
|
+
|
2472
|
+
class GetEffectiveHoursOfOperationsResponse
|
2473
|
+
attr_accessor effective_hours_of_operation_list: ::Array[Types::EffectiveHoursOfOperations]
|
2474
|
+
attr_accessor time_zone: ::String
|
2475
|
+
SENSITIVE: []
|
2476
|
+
end
|
2477
|
+
|
2413
2478
|
class GetFederationTokenRequest
|
2414
2479
|
attr_accessor instance_id: ::String
|
2415
2480
|
SENSITIVE: []
|
@@ -2658,6 +2723,33 @@ module Aws::Connect
|
|
2658
2723
|
SENSITIVE: []
|
2659
2724
|
end
|
2660
2725
|
|
2726
|
+
class HoursOfOperationOverride
|
2727
|
+
attr_accessor hours_of_operation_override_id: ::String
|
2728
|
+
attr_accessor hours_of_operation_id: ::String
|
2729
|
+
attr_accessor hours_of_operation_arn: ::String
|
2730
|
+
attr_accessor name: ::String
|
2731
|
+
attr_accessor description: ::String
|
2732
|
+
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
2733
|
+
attr_accessor effective_from: ::String
|
2734
|
+
attr_accessor effective_till: ::String
|
2735
|
+
SENSITIVE: []
|
2736
|
+
end
|
2737
|
+
|
2738
|
+
class HoursOfOperationOverrideConfig
|
2739
|
+
attr_accessor day: ("SUNDAY" | "MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY")
|
2740
|
+
attr_accessor start_time: Types::OverrideTimeSlice
|
2741
|
+
attr_accessor end_time: Types::OverrideTimeSlice
|
2742
|
+
SENSITIVE: []
|
2743
|
+
end
|
2744
|
+
|
2745
|
+
class HoursOfOperationOverrideSearchCriteria
|
2746
|
+
attr_accessor or_conditions: ::Array[Types::HoursOfOperationOverrideSearchCriteria]
|
2747
|
+
attr_accessor and_conditions: ::Array[Types::HoursOfOperationOverrideSearchCriteria]
|
2748
|
+
attr_accessor string_condition: Types::StringCondition
|
2749
|
+
attr_accessor date_condition: Types::DateCondition
|
2750
|
+
SENSITIVE: []
|
2751
|
+
end
|
2752
|
+
|
2661
2753
|
class HoursOfOperationSearchCriteria
|
2662
2754
|
attr_accessor or_conditions: ::Array[Types::HoursOfOperationSearchCriteria]
|
2663
2755
|
attr_accessor and_conditions: ::Array[Types::HoursOfOperationSearchCriteria]
|
@@ -2774,7 +2866,7 @@ module Aws::Connect
|
|
2774
2866
|
attr_accessor integration_association_id: ::String
|
2775
2867
|
attr_accessor integration_association_arn: ::String
|
2776
2868
|
attr_accessor instance_id: ::String
|
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")
|
2869
|
+
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" | "COGNITO_USER_POOL")
|
2778
2870
|
attr_accessor integration_arn: ::String
|
2779
2871
|
attr_accessor source_application_url: ::String
|
2780
2872
|
attr_accessor source_application_name: ::String
|
@@ -3081,6 +3173,22 @@ module Aws::Connect
|
|
3081
3173
|
SENSITIVE: []
|
3082
3174
|
end
|
3083
3175
|
|
3176
|
+
class ListHoursOfOperationOverridesRequest
|
3177
|
+
attr_accessor instance_id: ::String
|
3178
|
+
attr_accessor hours_of_operation_id: ::String
|
3179
|
+
attr_accessor next_token: ::String
|
3180
|
+
attr_accessor max_results: ::Integer
|
3181
|
+
SENSITIVE: []
|
3182
|
+
end
|
3183
|
+
|
3184
|
+
class ListHoursOfOperationOverridesResponse
|
3185
|
+
attr_accessor next_token: ::String
|
3186
|
+
attr_accessor hours_of_operation_override_list: ::Array[Types::HoursOfOperationOverride]
|
3187
|
+
attr_accessor last_modified_region: ::String
|
3188
|
+
attr_accessor last_modified_time: ::Time
|
3189
|
+
SENSITIVE: []
|
3190
|
+
end
|
3191
|
+
|
3084
3192
|
class ListHoursOfOperationsRequest
|
3085
3193
|
attr_accessor instance_id: ::String
|
3086
3194
|
attr_accessor next_token: ::String
|
@@ -3135,7 +3243,7 @@ module Aws::Connect
|
|
3135
3243
|
|
3136
3244
|
class ListIntegrationAssociationsRequest
|
3137
3245
|
attr_accessor instance_id: ::String
|
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")
|
3246
|
+
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" | "COGNITO_USER_POOL")
|
3139
3247
|
attr_accessor next_token: ::String
|
3140
3248
|
attr_accessor max_results: ::Integer
|
3141
3249
|
attr_accessor integration_arn: ::String
|
@@ -3665,6 +3773,12 @@ module Aws::Connect
|
|
3665
3773
|
SENSITIVE: []
|
3666
3774
|
end
|
3667
3775
|
|
3776
|
+
class OperationalHour
|
3777
|
+
attr_accessor start: Types::OverrideTimeSlice
|
3778
|
+
attr_accessor end: Types::OverrideTimeSlice
|
3779
|
+
SENSITIVE: []
|
3780
|
+
end
|
3781
|
+
|
3668
3782
|
class OutboundAdditionalRecipients
|
3669
3783
|
attr_accessor cc_email_addresses: ::Array[Types::EmailAddressInfo]
|
3670
3784
|
SENSITIVE: []
|
@@ -3706,6 +3820,12 @@ module Aws::Connect
|
|
3706
3820
|
SENSITIVE: []
|
3707
3821
|
end
|
3708
3822
|
|
3823
|
+
class OverrideTimeSlice
|
3824
|
+
attr_accessor hours: ::Integer
|
3825
|
+
attr_accessor minutes: ::Integer
|
3826
|
+
SENSITIVE: []
|
3827
|
+
end
|
3828
|
+
|
3709
3829
|
class ParticipantCapabilities
|
3710
3830
|
attr_accessor video: ("SEND")
|
3711
3831
|
attr_accessor screen_share: ("SEND")
|
@@ -4515,6 +4635,22 @@ module Aws::Connect
|
|
4515
4635
|
SENSITIVE: []
|
4516
4636
|
end
|
4517
4637
|
|
4638
|
+
class SearchHoursOfOperationOverridesRequest
|
4639
|
+
attr_accessor instance_id: ::String
|
4640
|
+
attr_accessor next_token: ::String
|
4641
|
+
attr_accessor max_results: ::Integer
|
4642
|
+
attr_accessor search_filter: Types::HoursOfOperationSearchFilter
|
4643
|
+
attr_accessor search_criteria: Types::HoursOfOperationOverrideSearchCriteria
|
4644
|
+
SENSITIVE: []
|
4645
|
+
end
|
4646
|
+
|
4647
|
+
class SearchHoursOfOperationOverridesResponse
|
4648
|
+
attr_accessor hours_of_operation_overrides: ::Array[Types::HoursOfOperationOverride]
|
4649
|
+
attr_accessor next_token: ::String
|
4650
|
+
attr_accessor approximate_total_count: ::Integer
|
4651
|
+
SENSITIVE: []
|
4652
|
+
end
|
4653
|
+
|
4518
4654
|
class SearchHoursOfOperationsRequest
|
4519
4655
|
attr_accessor instance_id: ::String
|
4520
4656
|
attr_accessor next_token: ::String
|
@@ -4895,7 +5031,8 @@ module Aws::Connect
|
|
4895
5031
|
attr_accessor persistent_chat: Types::PersistentChat
|
4896
5032
|
attr_accessor related_contact_id: ::String
|
4897
5033
|
attr_accessor segment_attributes: ::Hash[::String, Types::SegmentAttributeValue]
|
4898
|
-
|
5034
|
+
attr_accessor customer_id: ::String
|
5035
|
+
SENSITIVE: [:customer_id]
|
4899
5036
|
end
|
4900
5037
|
|
4901
5038
|
class StartChatContactResponse
|
@@ -5545,6 +5682,18 @@ module Aws::Connect
|
|
5545
5682
|
SENSITIVE: []
|
5546
5683
|
end
|
5547
5684
|
|
5685
|
+
class UpdateHoursOfOperationOverrideRequest
|
5686
|
+
attr_accessor instance_id: ::String
|
5687
|
+
attr_accessor hours_of_operation_id: ::String
|
5688
|
+
attr_accessor hours_of_operation_override_id: ::String
|
5689
|
+
attr_accessor name: ::String
|
5690
|
+
attr_accessor description: ::String
|
5691
|
+
attr_accessor config: ::Array[Types::HoursOfOperationOverrideConfig]
|
5692
|
+
attr_accessor effective_from: ::String
|
5693
|
+
attr_accessor effective_till: ::String
|
5694
|
+
SENSITIVE: []
|
5695
|
+
end
|
5696
|
+
|
5548
5697
|
class UpdateHoursOfOperationRequest
|
5549
5698
|
attr_accessor instance_id: ::String
|
5550
5699
|
attr_accessor hours_of_operation_id: ::String
|
@@ -5557,7 +5706,7 @@ module Aws::Connect
|
|
5557
5706
|
|
5558
5707
|
class UpdateInstanceAttributeRequest
|
5559
5708
|
attr_accessor instance_id: ::String
|
5560
|
-
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING")
|
5709
|
+
attr_accessor attribute_type: ("INBOUND_CALLS" | "OUTBOUND_CALLS" | "CONTACTFLOW_LOGS" | "CONTACT_LENS" | "AUTO_RESOLVE_BEST_VOICES" | "USE_CUSTOM_TTS_VOICES" | "EARLY_MEDIA" | "MULTI_PARTY_CONFERENCE" | "HIGH_VOLUME_OUTBOUND" | "ENHANCED_CONTACT_MONITORING" | "ENHANCED_CHAT_MONITORING" | "MULTI_PARTY_CHAT_CONFERENCE")
|
5561
5710
|
attr_accessor value: ::String
|
5562
5711
|
SENSITIVE: []
|
5563
5712
|
end
|
@@ -5570,6 +5719,18 @@ module Aws::Connect
|
|
5570
5719
|
SENSITIVE: []
|
5571
5720
|
end
|
5572
5721
|
|
5722
|
+
class UpdateParticipantAuthenticationRequest
|
5723
|
+
attr_accessor state: ::String
|
5724
|
+
attr_accessor instance_id: ::String
|
5725
|
+
attr_accessor code: ::String
|
5726
|
+
attr_accessor error: ::String
|
5727
|
+
attr_accessor error_description: ::String
|
5728
|
+
SENSITIVE: [:code, :error, :error_description]
|
5729
|
+
end
|
5730
|
+
|
5731
|
+
class UpdateParticipantAuthenticationResponse < Aws::EmptyStructure
|
5732
|
+
end
|
5733
|
+
|
5573
5734
|
class UpdateParticipantRoleConfigChannelInfo
|
5574
5735
|
attr_accessor chat: Types::ChatParticipantRoleConfig
|
5575
5736
|
attr_accessor unknown: untyped
|
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.191.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-12-
|
11
|
+
date: 2024-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|