aws-sdk-connect 1.43.0 → 1.47.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 +20 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-connect.rb +1 -1
- data/lib/aws-sdk-connect/client.rb +385 -144
- data/lib/aws-sdk-connect/client_api.rb +87 -1
- data/lib/aws-sdk-connect/types.rb +398 -102
- metadata +4 -4
@@ -18,7 +18,9 @@ module Aws::Connect
|
|
18
18
|
AgentFirstName = Shapes::StringShape.new(name: 'AgentFirstName')
|
19
19
|
AgentLastName = Shapes::StringShape.new(name: 'AgentLastName')
|
20
20
|
AgentUsername = Shapes::StringShape.new(name: 'AgentUsername')
|
21
|
+
AliasArn = Shapes::StringShape.new(name: 'AliasArn')
|
21
22
|
AssociateApprovedOriginRequest = Shapes::StructureShape.new(name: 'AssociateApprovedOriginRequest')
|
23
|
+
AssociateBotRequest = Shapes::StructureShape.new(name: 'AssociateBotRequest')
|
22
24
|
AssociateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'AssociateInstanceStorageConfigRequest')
|
23
25
|
AssociateInstanceStorageConfigResponse = Shapes::StructureShape.new(name: 'AssociateInstanceStorageConfigResponse')
|
24
26
|
AssociateLambdaFunctionRequest = Shapes::StructureShape.new(name: 'AssociateLambdaFunctionRequest')
|
@@ -122,6 +124,7 @@ module Aws::Connect
|
|
122
124
|
DirectoryType = Shapes::StringShape.new(name: 'DirectoryType')
|
123
125
|
DirectoryUserId = Shapes::StringShape.new(name: 'DirectoryUserId')
|
124
126
|
DisassociateApprovedOriginRequest = Shapes::StructureShape.new(name: 'DisassociateApprovedOriginRequest')
|
127
|
+
DisassociateBotRequest = Shapes::StructureShape.new(name: 'DisassociateBotRequest')
|
125
128
|
DisassociateInstanceStorageConfigRequest = Shapes::StructureShape.new(name: 'DisassociateInstanceStorageConfigRequest')
|
126
129
|
DisassociateLambdaFunctionRequest = Shapes::StructureShape.new(name: 'DisassociateLambdaFunctionRequest')
|
127
130
|
DisassociateLexBotRequest = Shapes::StructureShape.new(name: 'DisassociateLexBotRequest')
|
@@ -201,11 +204,17 @@ module Aws::Connect
|
|
201
204
|
KinesisStreamConfig = Shapes::StructureShape.new(name: 'KinesisStreamConfig')
|
202
205
|
KinesisVideoStreamConfig = Shapes::StructureShape.new(name: 'KinesisVideoStreamConfig')
|
203
206
|
LexBot = Shapes::StructureShape.new(name: 'LexBot')
|
207
|
+
LexBotConfig = Shapes::StructureShape.new(name: 'LexBotConfig')
|
208
|
+
LexBotConfigList = Shapes::ListShape.new(name: 'LexBotConfigList')
|
204
209
|
LexBotsList = Shapes::ListShape.new(name: 'LexBotsList')
|
205
210
|
LexRegion = Shapes::StringShape.new(name: 'LexRegion')
|
211
|
+
LexV2Bot = Shapes::StructureShape.new(name: 'LexV2Bot')
|
212
|
+
LexVersion = Shapes::StringShape.new(name: 'LexVersion')
|
206
213
|
LimitExceededException = Shapes::StructureShape.new(name: 'LimitExceededException')
|
207
214
|
ListApprovedOriginsRequest = Shapes::StructureShape.new(name: 'ListApprovedOriginsRequest')
|
208
215
|
ListApprovedOriginsResponse = Shapes::StructureShape.new(name: 'ListApprovedOriginsResponse')
|
216
|
+
ListBotsRequest = Shapes::StructureShape.new(name: 'ListBotsRequest')
|
217
|
+
ListBotsResponse = Shapes::StructureShape.new(name: 'ListBotsResponse')
|
209
218
|
ListContactFlowsRequest = Shapes::StructureShape.new(name: 'ListContactFlowsRequest')
|
210
219
|
ListContactFlowsResponse = Shapes::StructureShape.new(name: 'ListContactFlowsResponse')
|
211
220
|
ListHoursOfOperationsRequest = Shapes::StructureShape.new(name: 'ListHoursOfOperationsRequest')
|
@@ -389,6 +398,7 @@ module Aws::Connect
|
|
389
398
|
UpdateQueueOutboundCallerConfigRequest = Shapes::StructureShape.new(name: 'UpdateQueueOutboundCallerConfigRequest')
|
390
399
|
UpdateQueueStatusRequest = Shapes::StructureShape.new(name: 'UpdateQueueStatusRequest')
|
391
400
|
UpdateQuickConnectConfigRequest = Shapes::StructureShape.new(name: 'UpdateQuickConnectConfigRequest')
|
401
|
+
UpdateQuickConnectDescription = Shapes::StringShape.new(name: 'UpdateQuickConnectDescription')
|
392
402
|
UpdateQuickConnectNameRequest = Shapes::StructureShape.new(name: 'UpdateQuickConnectNameRequest')
|
393
403
|
UpdateRoutingProfileConcurrencyRequest = Shapes::StructureShape.new(name: 'UpdateRoutingProfileConcurrencyRequest')
|
394
404
|
UpdateRoutingProfileDefaultOutboundQueueRequest = Shapes::StructureShape.new(name: 'UpdateRoutingProfileDefaultOutboundQueueRequest')
|
@@ -422,6 +432,11 @@ module Aws::Connect
|
|
422
432
|
AssociateApprovedOriginRequest.add_member(:origin, Shapes::ShapeRef.new(shape: Origin, required: true, location_name: "Origin"))
|
423
433
|
AssociateApprovedOriginRequest.struct_class = Types::AssociateApprovedOriginRequest
|
424
434
|
|
435
|
+
AssociateBotRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
436
|
+
AssociateBotRequest.add_member(:lex_bot, Shapes::ShapeRef.new(shape: LexBot, location_name: "LexBot"))
|
437
|
+
AssociateBotRequest.add_member(:lex_v2_bot, Shapes::ShapeRef.new(shape: LexV2Bot, location_name: "LexV2Bot"))
|
438
|
+
AssociateBotRequest.struct_class = Types::AssociateBotRequest
|
439
|
+
|
425
440
|
AssociateInstanceStorageConfigRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
426
441
|
AssociateInstanceStorageConfigRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: InstanceStorageResourceType, required: true, location_name: "ResourceType"))
|
427
442
|
AssociateInstanceStorageConfigRequest.add_member(:storage_config, Shapes::ShapeRef.new(shape: InstanceStorageConfig, required: true, location_name: "StorageConfig"))
|
@@ -528,6 +543,7 @@ module Aws::Connect
|
|
528
543
|
CreateIntegrationAssociationRequest.add_member(:source_application_url, Shapes::ShapeRef.new(shape: URI, required: true, location_name: "SourceApplicationUrl"))
|
529
544
|
CreateIntegrationAssociationRequest.add_member(:source_application_name, Shapes::ShapeRef.new(shape: SourceApplicationName, required: true, location_name: "SourceApplicationName"))
|
530
545
|
CreateIntegrationAssociationRequest.add_member(:source_type, Shapes::ShapeRef.new(shape: SourceType, required: true, location_name: "SourceType"))
|
546
|
+
CreateIntegrationAssociationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
531
547
|
CreateIntegrationAssociationRequest.struct_class = Types::CreateIntegrationAssociationRequest
|
532
548
|
|
533
549
|
CreateIntegrationAssociationResponse.add_member(:integration_association_id, Shapes::ShapeRef.new(shape: IntegrationAssociationId, location_name: "IntegrationAssociationId"))
|
@@ -575,6 +591,7 @@ module Aws::Connect
|
|
575
591
|
CreateUseCaseRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
576
592
|
CreateUseCaseRequest.add_member(:integration_association_id, Shapes::ShapeRef.new(shape: IntegrationAssociationId, required: true, location: "uri", location_name: "IntegrationAssociationId"))
|
577
593
|
CreateUseCaseRequest.add_member(:use_case_type, Shapes::ShapeRef.new(shape: UseCaseType, required: true, location_name: "UseCaseType"))
|
594
|
+
CreateUseCaseRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "Tags"))
|
578
595
|
CreateUseCaseRequest.struct_class = Types::CreateUseCaseRequest
|
579
596
|
|
580
597
|
CreateUseCaseResponse.add_member(:use_case_id, Shapes::ShapeRef.new(shape: UseCaseId, location_name: "UseCaseId"))
|
@@ -741,6 +758,11 @@ module Aws::Connect
|
|
741
758
|
DisassociateApprovedOriginRequest.add_member(:origin, Shapes::ShapeRef.new(shape: Origin, required: true, location: "querystring", location_name: "origin"))
|
742
759
|
DisassociateApprovedOriginRequest.struct_class = Types::DisassociateApprovedOriginRequest
|
743
760
|
|
761
|
+
DisassociateBotRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
762
|
+
DisassociateBotRequest.add_member(:lex_bot, Shapes::ShapeRef.new(shape: LexBot, location_name: "LexBot"))
|
763
|
+
DisassociateBotRequest.add_member(:lex_v2_bot, Shapes::ShapeRef.new(shape: LexV2Bot, location_name: "LexV2Bot"))
|
764
|
+
DisassociateBotRequest.struct_class = Types::DisassociateBotRequest
|
765
|
+
|
744
766
|
DisassociateInstanceStorageConfigRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
745
767
|
DisassociateInstanceStorageConfigRequest.add_member(:association_id, Shapes::ShapeRef.new(shape: AssociationId, required: true, location: "uri", location_name: "AssociationId"))
|
746
768
|
DisassociateInstanceStorageConfigRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: InstanceStorageResourceType, required: true, location: "querystring", location_name: "resourceType"))
|
@@ -991,8 +1013,17 @@ module Aws::Connect
|
|
991
1013
|
LexBot.add_member(:lex_region, Shapes::ShapeRef.new(shape: LexRegion, location_name: "LexRegion"))
|
992
1014
|
LexBot.struct_class = Types::LexBot
|
993
1015
|
|
1016
|
+
LexBotConfig.add_member(:lex_bot, Shapes::ShapeRef.new(shape: LexBot, location_name: "LexBot"))
|
1017
|
+
LexBotConfig.add_member(:lex_v2_bot, Shapes::ShapeRef.new(shape: LexV2Bot, location_name: "LexV2Bot"))
|
1018
|
+
LexBotConfig.struct_class = Types::LexBotConfig
|
1019
|
+
|
1020
|
+
LexBotConfigList.member = Shapes::ShapeRef.new(shape: LexBotConfig)
|
1021
|
+
|
994
1022
|
LexBotsList.member = Shapes::ShapeRef.new(shape: LexBot)
|
995
1023
|
|
1024
|
+
LexV2Bot.add_member(:alias_arn, Shapes::ShapeRef.new(shape: AliasArn, location_name: "AliasArn"))
|
1025
|
+
LexV2Bot.struct_class = Types::LexV2Bot
|
1026
|
+
|
996
1027
|
LimitExceededException.add_member(:message, Shapes::ShapeRef.new(shape: Message, location_name: "Message"))
|
997
1028
|
LimitExceededException.struct_class = Types::LimitExceededException
|
998
1029
|
|
@@ -1005,6 +1036,16 @@ module Aws::Connect
|
|
1005
1036
|
ListApprovedOriginsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1006
1037
|
ListApprovedOriginsResponse.struct_class = Types::ListApprovedOriginsResponse
|
1007
1038
|
|
1039
|
+
ListBotsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1040
|
+
ListBotsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
1041
|
+
ListBotsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult25, location: "querystring", location_name: "maxResults", metadata: {"box"=>true}))
|
1042
|
+
ListBotsRequest.add_member(:lex_version, Shapes::ShapeRef.new(shape: LexVersion, required: true, location: "querystring", location_name: "lexVersion"))
|
1043
|
+
ListBotsRequest.struct_class = Types::ListBotsRequest
|
1044
|
+
|
1045
|
+
ListBotsResponse.add_member(:lex_bots, Shapes::ShapeRef.new(shape: LexBotConfigList, location_name: "LexBots"))
|
1046
|
+
ListBotsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
1047
|
+
ListBotsResponse.struct_class = Types::ListBotsResponse
|
1048
|
+
|
1008
1049
|
ListContactFlowsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1009
1050
|
ListContactFlowsRequest.add_member(:contact_flow_types, Shapes::ShapeRef.new(shape: ContactFlowTypes, location: "querystring", location_name: "contactFlowTypes"))
|
1010
1051
|
ListContactFlowsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
@@ -1538,7 +1579,7 @@ module Aws::Connect
|
|
1538
1579
|
UpdateQuickConnectNameRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
1539
1580
|
UpdateQuickConnectNameRequest.add_member(:quick_connect_id, Shapes::ShapeRef.new(shape: QuickConnectId, required: true, location: "uri", location_name: "QuickConnectId"))
|
1540
1581
|
UpdateQuickConnectNameRequest.add_member(:name, Shapes::ShapeRef.new(shape: QuickConnectName, location_name: "Name"))
|
1541
|
-
UpdateQuickConnectNameRequest.add_member(:description, Shapes::ShapeRef.new(shape:
|
1582
|
+
UpdateQuickConnectNameRequest.add_member(:description, Shapes::ShapeRef.new(shape: UpdateQuickConnectDescription, location_name: "Description"))
|
1542
1583
|
UpdateQuickConnectNameRequest.struct_class = Types::UpdateQuickConnectNameRequest
|
1543
1584
|
|
1544
1585
|
UpdateRoutingProfileConcurrencyRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
@@ -1677,6 +1718,21 @@ module Aws::Connect
|
|
1677
1718
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1678
1719
|
end)
|
1679
1720
|
|
1721
|
+
api.add_operation(:associate_bot, Seahorse::Model::Operation.new.tap do |o|
|
1722
|
+
o.name = "AssociateBot"
|
1723
|
+
o.http_method = "PUT"
|
1724
|
+
o.http_request_uri = "/instance/{InstanceId}/bot"
|
1725
|
+
o.input = Shapes::ShapeRef.new(shape: AssociateBotRequest)
|
1726
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
1727
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
1728
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceConflictException)
|
1729
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
1730
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
1731
|
+
o.errors << Shapes::ShapeRef.new(shape: LimitExceededException)
|
1732
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
1733
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
1734
|
+
end)
|
1735
|
+
|
1680
1736
|
api.add_operation(:associate_instance_storage_config, Seahorse::Model::Operation.new.tap do |o|
|
1681
1737
|
o.name = "AssociateInstanceStorageConfig"
|
1682
1738
|
o.http_method = "PUT"
|
@@ -2123,6 +2179,18 @@ module Aws::Connect
|
|
2123
2179
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2124
2180
|
end)
|
2125
2181
|
|
2182
|
+
api.add_operation(:disassociate_bot, Seahorse::Model::Operation.new.tap do |o|
|
2183
|
+
o.name = "DisassociateBot"
|
2184
|
+
o.http_method = "POST"
|
2185
|
+
o.http_request_uri = "/instance/{InstanceId}/bot"
|
2186
|
+
o.input = Shapes::ShapeRef.new(shape: DisassociateBotRequest)
|
2187
|
+
o.output = Shapes::ShapeRef.new(shape: Shapes::StructureShape.new(struct_class: Aws::EmptyStructure))
|
2188
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2189
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2190
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2191
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2192
|
+
end)
|
2193
|
+
|
2126
2194
|
api.add_operation(:disassociate_instance_storage_config, Seahorse::Model::Operation.new.tap do |o|
|
2127
2195
|
o.name = "DisassociateInstanceStorageConfig"
|
2128
2196
|
o.http_method = "DELETE"
|
@@ -2283,6 +2351,24 @@ module Aws::Connect
|
|
2283
2351
|
)
|
2284
2352
|
end)
|
2285
2353
|
|
2354
|
+
api.add_operation(:list_bots, Seahorse::Model::Operation.new.tap do |o|
|
2355
|
+
o.name = "ListBots"
|
2356
|
+
o.http_method = "GET"
|
2357
|
+
o.http_request_uri = "/instance/{InstanceId}/bots"
|
2358
|
+
o.input = Shapes::ShapeRef.new(shape: ListBotsRequest)
|
2359
|
+
o.output = Shapes::ShapeRef.new(shape: ListBotsResponse)
|
2360
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
2361
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
2362
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidRequestException)
|
2363
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
2364
|
+
o[:pager] = Aws::Pager.new(
|
2365
|
+
limit_key: "max_results",
|
2366
|
+
tokens: {
|
2367
|
+
"next_token" => "next_token"
|
2368
|
+
}
|
2369
|
+
)
|
2370
|
+
end)
|
2371
|
+
|
2286
2372
|
api.add_operation(:list_contact_flows, Seahorse::Model::Operation.new.tap do |o|
|
2287
2373
|
o.name = "ListContactFlows"
|
2288
2374
|
o.http_method = "GET"
|
@@ -19,7 +19,8 @@ module Aws::Connect
|
|
19
19
|
# }
|
20
20
|
#
|
21
21
|
# @!attribute [rw] instance_id
|
22
|
-
# The identifier of the Amazon Connect instance.
|
22
|
+
# The identifier of the Amazon Connect instance. You can find the
|
23
|
+
# instanceId in the ARN of the instance.
|
23
24
|
# @return [String]
|
24
25
|
#
|
25
26
|
# @!attribute [rw] origin
|
@@ -35,6 +36,43 @@ module Aws::Connect
|
|
35
36
|
include Aws::Structure
|
36
37
|
end
|
37
38
|
|
39
|
+
# @note When making an API call, you may pass AssociateBotRequest
|
40
|
+
# data as a hash:
|
41
|
+
#
|
42
|
+
# {
|
43
|
+
# instance_id: "InstanceId", # required
|
44
|
+
# lex_bot: {
|
45
|
+
# name: "BotName",
|
46
|
+
# lex_region: "LexRegion",
|
47
|
+
# },
|
48
|
+
# lex_v2_bot: {
|
49
|
+
# alias_arn: "AliasArn",
|
50
|
+
# },
|
51
|
+
# }
|
52
|
+
#
|
53
|
+
# @!attribute [rw] instance_id
|
54
|
+
# The identifier of the Amazon Connect instance. You can find the
|
55
|
+
# instanceId in the ARN of the instance.
|
56
|
+
# @return [String]
|
57
|
+
#
|
58
|
+
# @!attribute [rw] lex_bot
|
59
|
+
# Configuration information of an Amazon Lex bot.
|
60
|
+
# @return [Types::LexBot]
|
61
|
+
#
|
62
|
+
# @!attribute [rw] lex_v2_bot
|
63
|
+
# The Amazon Lex V2 bot to associate with the instance.
|
64
|
+
# @return [Types::LexV2Bot]
|
65
|
+
#
|
66
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateBotRequest AWS API Documentation
|
67
|
+
#
|
68
|
+
class AssociateBotRequest < Struct.new(
|
69
|
+
:instance_id,
|
70
|
+
:lex_bot,
|
71
|
+
:lex_v2_bot)
|
72
|
+
SENSITIVE = []
|
73
|
+
include Aws::Structure
|
74
|
+
end
|
75
|
+
|
38
76
|
# @note When making an API call, you may pass AssociateInstanceStorageConfigRequest
|
39
77
|
# data as a hash:
|
40
78
|
#
|
@@ -70,7 +108,8 @@ module Aws::Connect
|
|
70
108
|
# }
|
71
109
|
#
|
72
110
|
# @!attribute [rw] instance_id
|
73
|
-
# The identifier of the Amazon Connect instance.
|
111
|
+
# The identifier of the Amazon Connect instance. You can find the
|
112
|
+
# instanceId in the ARN of the instance.
|
74
113
|
# @return [String]
|
75
114
|
#
|
76
115
|
# @!attribute [rw] resource_type
|
@@ -113,7 +152,8 @@ module Aws::Connect
|
|
113
152
|
# }
|
114
153
|
#
|
115
154
|
# @!attribute [rw] instance_id
|
116
|
-
# The identifier of the Amazon Connect instance.
|
155
|
+
# The identifier of the Amazon Connect instance. You can find the
|
156
|
+
# instanceId in the ARN of the instance.
|
117
157
|
# @return [String]
|
118
158
|
#
|
119
159
|
# @!attribute [rw] function_arn
|
@@ -142,11 +182,12 @@ module Aws::Connect
|
|
142
182
|
# }
|
143
183
|
#
|
144
184
|
# @!attribute [rw] instance_id
|
145
|
-
# The identifier of the Amazon Connect instance.
|
185
|
+
# The identifier of the Amazon Connect instance. You can find the
|
186
|
+
# instanceId in the ARN of the instance.
|
146
187
|
# @return [String]
|
147
188
|
#
|
148
189
|
# @!attribute [rw] lex_bot
|
149
|
-
# The Amazon Lex
|
190
|
+
# The Amazon Lex bot to associate with the instance.
|
150
191
|
# @return [Types::LexBot]
|
151
192
|
#
|
152
193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AssociateLexBotRequest AWS API Documentation
|
@@ -168,7 +209,8 @@ module Aws::Connect
|
|
168
209
|
# }
|
169
210
|
#
|
170
211
|
# @!attribute [rw] instance_id
|
171
|
-
# The identifier of the Amazon Connect instance.
|
212
|
+
# The identifier of the Amazon Connect instance. You can find the
|
213
|
+
# instanceId in the ARN of the instance.
|
172
214
|
# @return [String]
|
173
215
|
#
|
174
216
|
# @!attribute [rw] queue_id
|
@@ -208,7 +250,8 @@ module Aws::Connect
|
|
208
250
|
# }
|
209
251
|
#
|
210
252
|
# @!attribute [rw] instance_id
|
211
|
-
# The identifier of the Amazon Connect instance.
|
253
|
+
# The identifier of the Amazon Connect instance. You can find the
|
254
|
+
# instanceId in the ARN of the instance.
|
212
255
|
# @return [String]
|
213
256
|
#
|
214
257
|
# @!attribute [rw] routing_profile_id
|
@@ -238,7 +281,8 @@ module Aws::Connect
|
|
238
281
|
# }
|
239
282
|
#
|
240
283
|
# @!attribute [rw] instance_id
|
241
|
-
# The identifier of the Amazon Connect instance.
|
284
|
+
# The identifier of the Amazon Connect instance. You can find the
|
285
|
+
# instanceId in the ARN of the instance.
|
242
286
|
# @return [String]
|
243
287
|
#
|
244
288
|
# @!attribute [rw] key
|
@@ -576,10 +620,14 @@ module Aws::Connect
|
|
576
620
|
# source_application_url: "URI", # required
|
577
621
|
# source_application_name: "SourceApplicationName", # required
|
578
622
|
# source_type: "SALESFORCE", # required, accepts SALESFORCE, ZENDESK
|
623
|
+
# tags: {
|
624
|
+
# "TagKey" => "TagValue",
|
625
|
+
# },
|
579
626
|
# }
|
580
627
|
#
|
581
628
|
# @!attribute [rw] instance_id
|
582
|
-
# The identifier of the Amazon Connect instance.
|
629
|
+
# The identifier of the Amazon Connect instance. You can find the
|
630
|
+
# instanceId in the ARN of the instance.
|
583
631
|
# @return [String]
|
584
632
|
#
|
585
633
|
# @!attribute [rw] integration_type
|
@@ -602,6 +650,10 @@ module Aws::Connect
|
|
602
650
|
# The type of the data source.
|
603
651
|
# @return [String]
|
604
652
|
#
|
653
|
+
# @!attribute [rw] tags
|
654
|
+
# One or more tags.
|
655
|
+
# @return [Hash<String,String>]
|
656
|
+
#
|
605
657
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateIntegrationAssociationRequest AWS API Documentation
|
606
658
|
#
|
607
659
|
class CreateIntegrationAssociationRequest < Struct.new(
|
@@ -610,7 +662,8 @@ module Aws::Connect
|
|
610
662
|
:integration_arn,
|
611
663
|
:source_application_url,
|
612
664
|
:source_application_name,
|
613
|
-
:source_type
|
665
|
+
:source_type,
|
666
|
+
:tags)
|
614
667
|
SENSITIVE = []
|
615
668
|
include Aws::Structure
|
616
669
|
end
|
@@ -653,7 +706,8 @@ module Aws::Connect
|
|
653
706
|
# }
|
654
707
|
#
|
655
708
|
# @!attribute [rw] instance_id
|
656
|
-
# The identifier of the Amazon Connect instance.
|
709
|
+
# The identifier of the Amazon Connect instance. You can find the
|
710
|
+
# instanceId in the ARN of the instance.
|
657
711
|
# @return [String]
|
658
712
|
#
|
659
713
|
# @!attribute [rw] name
|
@@ -744,7 +798,8 @@ module Aws::Connect
|
|
744
798
|
# }
|
745
799
|
#
|
746
800
|
# @!attribute [rw] instance_id
|
747
|
-
# The identifier of the Amazon Connect instance.
|
801
|
+
# The identifier of the Amazon Connect instance. You can find the
|
802
|
+
# instanceId in the ARN of the instance.
|
748
803
|
# @return [String]
|
749
804
|
#
|
750
805
|
# @!attribute [rw] name
|
@@ -822,7 +877,8 @@ module Aws::Connect
|
|
822
877
|
# }
|
823
878
|
#
|
824
879
|
# @!attribute [rw] instance_id
|
825
|
-
# The identifier of the Amazon Connect instance.
|
880
|
+
# The identifier of the Amazon Connect instance. You can find the
|
881
|
+
# instanceId in the ARN of the instance.
|
826
882
|
# @return [String]
|
827
883
|
#
|
828
884
|
# @!attribute [rw] name
|
@@ -891,10 +947,14 @@ module Aws::Connect
|
|
891
947
|
# instance_id: "InstanceId", # required
|
892
948
|
# integration_association_id: "IntegrationAssociationId", # required
|
893
949
|
# use_case_type: "RULES_EVALUATION", # required, accepts RULES_EVALUATION
|
950
|
+
# tags: {
|
951
|
+
# "TagKey" => "TagValue",
|
952
|
+
# },
|
894
953
|
# }
|
895
954
|
#
|
896
955
|
# @!attribute [rw] instance_id
|
897
|
-
# The identifier of the Amazon Connect instance.
|
956
|
+
# The identifier of the Amazon Connect instance. You can find the
|
957
|
+
# instanceId in the ARN of the instance.
|
898
958
|
# @return [String]
|
899
959
|
#
|
900
960
|
# @!attribute [rw] integration_association_id
|
@@ -907,12 +967,17 @@ module Aws::Connect
|
|
907
967
|
# type.
|
908
968
|
# @return [String]
|
909
969
|
#
|
970
|
+
# @!attribute [rw] tags
|
971
|
+
# One or more tags.
|
972
|
+
# @return [Hash<String,String>]
|
973
|
+
#
|
910
974
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUseCaseRequest AWS API Documentation
|
911
975
|
#
|
912
976
|
class CreateUseCaseRequest < Struct.new(
|
913
977
|
:instance_id,
|
914
978
|
:integration_association_id,
|
915
|
-
:use_case_type
|
979
|
+
:use_case_type,
|
980
|
+
:tags)
|
916
981
|
SENSITIVE = []
|
917
982
|
include Aws::Structure
|
918
983
|
end
|
@@ -954,7 +1019,8 @@ module Aws::Connect
|
|
954
1019
|
# @return [String]
|
955
1020
|
#
|
956
1021
|
# @!attribute [rw] instance_id
|
957
|
-
# The identifier of the Amazon Connect instance.
|
1022
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1023
|
+
# instanceId in the ARN of the instance.
|
958
1024
|
# @return [String]
|
959
1025
|
#
|
960
1026
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/CreateUserHierarchyGroupRequest AWS API Documentation
|
@@ -1060,7 +1126,8 @@ module Aws::Connect
|
|
1060
1126
|
# @return [String]
|
1061
1127
|
#
|
1062
1128
|
# @!attribute [rw] instance_id
|
1063
|
-
# The identifier of the Amazon Connect instance.
|
1129
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1130
|
+
# instanceId in the ARN of the instance.
|
1064
1131
|
# @return [String]
|
1065
1132
|
#
|
1066
1133
|
# @!attribute [rw] tags
|
@@ -1212,7 +1279,8 @@ module Aws::Connect
|
|
1212
1279
|
# }
|
1213
1280
|
#
|
1214
1281
|
# @!attribute [rw] instance_id
|
1215
|
-
# The identifier of the Amazon Connect instance.
|
1282
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1283
|
+
# instanceId in the ARN of the instance.
|
1216
1284
|
# @return [String]
|
1217
1285
|
#
|
1218
1286
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteInstanceRequest AWS API Documentation
|
@@ -1232,7 +1300,8 @@ module Aws::Connect
|
|
1232
1300
|
# }
|
1233
1301
|
#
|
1234
1302
|
# @!attribute [rw] instance_id
|
1235
|
-
# The identifier of the Amazon Connect instance.
|
1303
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1304
|
+
# instanceId in the ARN of the instance.
|
1236
1305
|
# @return [String]
|
1237
1306
|
#
|
1238
1307
|
# @!attribute [rw] integration_association_id
|
@@ -1257,7 +1326,8 @@ module Aws::Connect
|
|
1257
1326
|
# }
|
1258
1327
|
#
|
1259
1328
|
# @!attribute [rw] instance_id
|
1260
|
-
# The identifier of the Amazon Connect instance.
|
1329
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1330
|
+
# instanceId in the ARN of the instance.
|
1261
1331
|
# @return [String]
|
1262
1332
|
#
|
1263
1333
|
# @!attribute [rw] quick_connect_id
|
@@ -1283,7 +1353,8 @@ module Aws::Connect
|
|
1283
1353
|
# }
|
1284
1354
|
#
|
1285
1355
|
# @!attribute [rw] instance_id
|
1286
|
-
# The identifier of the Amazon Connect instance.
|
1356
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1357
|
+
# instanceId in the ARN of the instance.
|
1287
1358
|
# @return [String]
|
1288
1359
|
#
|
1289
1360
|
# @!attribute [rw] integration_association_id
|
@@ -1317,7 +1388,8 @@ module Aws::Connect
|
|
1317
1388
|
# @return [String]
|
1318
1389
|
#
|
1319
1390
|
# @!attribute [rw] instance_id
|
1320
|
-
# The identifier of the Amazon Connect instance.
|
1391
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1392
|
+
# instanceId in the ARN of the instance.
|
1321
1393
|
# @return [String]
|
1322
1394
|
#
|
1323
1395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DeleteUserHierarchyGroupRequest AWS API Documentation
|
@@ -1338,7 +1410,8 @@ module Aws::Connect
|
|
1338
1410
|
# }
|
1339
1411
|
#
|
1340
1412
|
# @!attribute [rw] instance_id
|
1341
|
-
# The identifier of the Amazon Connect instance.
|
1413
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1414
|
+
# instanceId in the ARN of the instance.
|
1342
1415
|
# @return [String]
|
1343
1416
|
#
|
1344
1417
|
# @!attribute [rw] user_id
|
@@ -1400,7 +1473,8 @@ module Aws::Connect
|
|
1400
1473
|
# }
|
1401
1474
|
#
|
1402
1475
|
# @!attribute [rw] instance_id
|
1403
|
-
# The identifier of the Amazon Connect instance.
|
1476
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1477
|
+
# instanceId in the ARN of the instance.
|
1404
1478
|
# @return [String]
|
1405
1479
|
#
|
1406
1480
|
# @!attribute [rw] hours_of_operation_id
|
@@ -1437,7 +1511,8 @@ module Aws::Connect
|
|
1437
1511
|
# }
|
1438
1512
|
#
|
1439
1513
|
# @!attribute [rw] instance_id
|
1440
|
-
# The identifier of the Amazon Connect instance.
|
1514
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1515
|
+
# instanceId in the ARN of the instance.
|
1441
1516
|
# @return [String]
|
1442
1517
|
#
|
1443
1518
|
# @!attribute [rw] attribute_type
|
@@ -1473,7 +1548,8 @@ module Aws::Connect
|
|
1473
1548
|
# }
|
1474
1549
|
#
|
1475
1550
|
# @!attribute [rw] instance_id
|
1476
|
-
# The identifier of the Amazon Connect instance.
|
1551
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1552
|
+
# instanceId in the ARN of the instance.
|
1477
1553
|
# @return [String]
|
1478
1554
|
#
|
1479
1555
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeInstanceRequest AWS API Documentation
|
@@ -1506,7 +1582,8 @@ module Aws::Connect
|
|
1506
1582
|
# }
|
1507
1583
|
#
|
1508
1584
|
# @!attribute [rw] instance_id
|
1509
|
-
# The identifier of the Amazon Connect instance.
|
1585
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1586
|
+
# instanceId in the ARN of the instance.
|
1510
1587
|
# @return [String]
|
1511
1588
|
#
|
1512
1589
|
# @!attribute [rw] association_id
|
@@ -1549,7 +1626,8 @@ module Aws::Connect
|
|
1549
1626
|
# }
|
1550
1627
|
#
|
1551
1628
|
# @!attribute [rw] instance_id
|
1552
|
-
# The identifier of the Amazon Connect instance.
|
1629
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1630
|
+
# instanceId in the ARN of the instance.
|
1553
1631
|
# @return [String]
|
1554
1632
|
#
|
1555
1633
|
# @!attribute [rw] queue_id
|
@@ -1586,7 +1664,8 @@ module Aws::Connect
|
|
1586
1664
|
# }
|
1587
1665
|
#
|
1588
1666
|
# @!attribute [rw] instance_id
|
1589
|
-
# The identifier of the Amazon Connect instance.
|
1667
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1668
|
+
# instanceId in the ARN of the instance.
|
1590
1669
|
# @return [String]
|
1591
1670
|
#
|
1592
1671
|
# @!attribute [rw] quick_connect_id
|
@@ -1623,7 +1702,8 @@ module Aws::Connect
|
|
1623
1702
|
# }
|
1624
1703
|
#
|
1625
1704
|
# @!attribute [rw] instance_id
|
1626
|
-
# The identifier of the Amazon Connect instance.
|
1705
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1706
|
+
# instanceId in the ARN of the instance.
|
1627
1707
|
# @return [String]
|
1628
1708
|
#
|
1629
1709
|
# @!attribute [rw] routing_profile_id
|
@@ -1664,7 +1744,8 @@ module Aws::Connect
|
|
1664
1744
|
# @return [String]
|
1665
1745
|
#
|
1666
1746
|
# @!attribute [rw] instance_id
|
1667
|
-
# The identifier of the Amazon Connect instance.
|
1747
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1748
|
+
# instanceId in the ARN of the instance.
|
1668
1749
|
# @return [String]
|
1669
1750
|
#
|
1670
1751
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyGroupRequest AWS API Documentation
|
@@ -1696,7 +1777,8 @@ module Aws::Connect
|
|
1696
1777
|
# }
|
1697
1778
|
#
|
1698
1779
|
# @!attribute [rw] instance_id
|
1699
|
-
# The identifier of the Amazon Connect instance.
|
1780
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1781
|
+
# instanceId in the ARN of the instance.
|
1700
1782
|
# @return [String]
|
1701
1783
|
#
|
1702
1784
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserHierarchyStructureRequest AWS API Documentation
|
@@ -1732,7 +1814,8 @@ module Aws::Connect
|
|
1732
1814
|
# @return [String]
|
1733
1815
|
#
|
1734
1816
|
# @!attribute [rw] instance_id
|
1735
|
-
# The identifier of the Amazon Connect instance.
|
1817
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1818
|
+
# instanceId in the ARN of the instance.
|
1736
1819
|
# @return [String]
|
1737
1820
|
#
|
1738
1821
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeUserRequest AWS API Documentation
|
@@ -1798,7 +1881,8 @@ module Aws::Connect
|
|
1798
1881
|
# }
|
1799
1882
|
#
|
1800
1883
|
# @!attribute [rw] instance_id
|
1801
|
-
# The identifier of the Amazon Connect instance.
|
1884
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1885
|
+
# instanceId in the ARN of the instance.
|
1802
1886
|
# @return [String]
|
1803
1887
|
#
|
1804
1888
|
# @!attribute [rw] origin
|
@@ -1814,6 +1898,43 @@ module Aws::Connect
|
|
1814
1898
|
include Aws::Structure
|
1815
1899
|
end
|
1816
1900
|
|
1901
|
+
# @note When making an API call, you may pass DisassociateBotRequest
|
1902
|
+
# data as a hash:
|
1903
|
+
#
|
1904
|
+
# {
|
1905
|
+
# instance_id: "InstanceId", # required
|
1906
|
+
# lex_bot: {
|
1907
|
+
# name: "BotName",
|
1908
|
+
# lex_region: "LexRegion",
|
1909
|
+
# },
|
1910
|
+
# lex_v2_bot: {
|
1911
|
+
# alias_arn: "AliasArn",
|
1912
|
+
# },
|
1913
|
+
# }
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] instance_id
|
1916
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1917
|
+
# instanceId in the ARN of the instance.
|
1918
|
+
# @return [String]
|
1919
|
+
#
|
1920
|
+
# @!attribute [rw] lex_bot
|
1921
|
+
# Configuration information of an Amazon Lex bot.
|
1922
|
+
# @return [Types::LexBot]
|
1923
|
+
#
|
1924
|
+
# @!attribute [rw] lex_v2_bot
|
1925
|
+
# The Amazon Lex V2 bot to disassociate from the instance.
|
1926
|
+
# @return [Types::LexV2Bot]
|
1927
|
+
#
|
1928
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DisassociateBotRequest AWS API Documentation
|
1929
|
+
#
|
1930
|
+
class DisassociateBotRequest < Struct.new(
|
1931
|
+
:instance_id,
|
1932
|
+
:lex_bot,
|
1933
|
+
:lex_v2_bot)
|
1934
|
+
SENSITIVE = []
|
1935
|
+
include Aws::Structure
|
1936
|
+
end
|
1937
|
+
|
1817
1938
|
# @note When making an API call, you may pass DisassociateInstanceStorageConfigRequest
|
1818
1939
|
# data as a hash:
|
1819
1940
|
#
|
@@ -1824,7 +1945,8 @@ module Aws::Connect
|
|
1824
1945
|
# }
|
1825
1946
|
#
|
1826
1947
|
# @!attribute [rw] instance_id
|
1827
|
-
# The identifier of the Amazon Connect instance.
|
1948
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1949
|
+
# instanceId in the ARN of the instance.
|
1828
1950
|
# @return [String]
|
1829
1951
|
#
|
1830
1952
|
# @!attribute [rw] association_id
|
@@ -1855,7 +1977,8 @@ module Aws::Connect
|
|
1855
1977
|
# }
|
1856
1978
|
#
|
1857
1979
|
# @!attribute [rw] instance_id
|
1858
|
-
# The identifier of the Amazon Connect instance
|
1980
|
+
# The identifier of the Amazon Connect instance. You can find the
|
1981
|
+
# instanceId in the ARN of the instance..
|
1859
1982
|
# @return [String]
|
1860
1983
|
#
|
1861
1984
|
# @!attribute [rw] function_arn
|
@@ -1882,7 +2005,8 @@ module Aws::Connect
|
|
1882
2005
|
# }
|
1883
2006
|
#
|
1884
2007
|
# @!attribute [rw] instance_id
|
1885
|
-
# The identifier of the Amazon Connect instance.
|
2008
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2009
|
+
# instanceId in the ARN of the instance.
|
1886
2010
|
# @return [String]
|
1887
2011
|
#
|
1888
2012
|
# @!attribute [rw] bot_name
|
@@ -1913,7 +2037,8 @@ module Aws::Connect
|
|
1913
2037
|
# }
|
1914
2038
|
#
|
1915
2039
|
# @!attribute [rw] instance_id
|
1916
|
-
# The identifier of the Amazon Connect instance.
|
2040
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2041
|
+
# instanceId in the ARN of the instance.
|
1917
2042
|
# @return [String]
|
1918
2043
|
#
|
1919
2044
|
# @!attribute [rw] queue_id
|
@@ -1949,7 +2074,8 @@ module Aws::Connect
|
|
1949
2074
|
# }
|
1950
2075
|
#
|
1951
2076
|
# @!attribute [rw] instance_id
|
1952
|
-
# The identifier of the Amazon Connect instance.
|
2077
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2078
|
+
# instanceId in the ARN of the instance.
|
1953
2079
|
# @return [String]
|
1954
2080
|
#
|
1955
2081
|
# @!attribute [rw] routing_profile_id
|
@@ -1979,7 +2105,8 @@ module Aws::Connect
|
|
1979
2105
|
# }
|
1980
2106
|
#
|
1981
2107
|
# @!attribute [rw] instance_id
|
1982
|
-
# The identifier of the Amazon Connect instance.
|
2108
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2109
|
+
# instanceId in the ARN of the instance.
|
1983
2110
|
# @return [String]
|
1984
2111
|
#
|
1985
2112
|
# @!attribute [rw] association_id
|
@@ -2122,7 +2249,8 @@ module Aws::Connect
|
|
2122
2249
|
# }
|
2123
2250
|
#
|
2124
2251
|
# @!attribute [rw] instance_id
|
2125
|
-
# The identifier of the Amazon Connect instance.
|
2252
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2253
|
+
# instanceId in the ARN of the instance.
|
2126
2254
|
# @return [String]
|
2127
2255
|
#
|
2128
2256
|
# @!attribute [rw] filters
|
@@ -2317,7 +2445,8 @@ module Aws::Connect
|
|
2317
2445
|
# }
|
2318
2446
|
#
|
2319
2447
|
# @!attribute [rw] instance_id
|
2320
|
-
# The identifier of the Amazon Connect instance.
|
2448
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2449
|
+
# instanceId in the ARN of the instance.
|
2321
2450
|
# @return [String]
|
2322
2451
|
#
|
2323
2452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/GetFederationTokenRequest AWS API Documentation
|
@@ -2368,7 +2497,8 @@ module Aws::Connect
|
|
2368
2497
|
# }
|
2369
2498
|
#
|
2370
2499
|
# @!attribute [rw] instance_id
|
2371
|
-
# The identifier of the Amazon Connect instance.
|
2500
|
+
# The identifier of the Amazon Connect instance. You can find the
|
2501
|
+
# instanceId in the ARN of the instance.
|
2372
2502
|
# @return [String]
|
2373
2503
|
#
|
2374
2504
|
# @!attribute [rw] start_time
|
@@ -2398,6 +2528,11 @@ module Aws::Connect
|
|
2398
2528
|
# with the queues or channels included in the filter. You can include
|
2399
2529
|
# both queue IDs and queue ARNs in the same request. VOICE, CHAT, and
|
2400
2530
|
# TASK channels are supported.
|
2531
|
+
#
|
2532
|
+
# <note markdown="1"> To filter by `Queues`, enter the queue ID/ARN, not the name of the
|
2533
|
+
# queue.
|
2534
|
+
#
|
2535
|
+
# </note>
|
2401
2536
|
# @return [Types::Filters]
|
2402
2537
|
#
|
2403
2538
|
# @!attribute [rw] groupings
|
@@ -2406,8 +2541,6 @@ module Aws::Connect
|
|
2406
2541
|
# queue. The values returned apply to the metrics for each queue
|
2407
2542
|
# rather than aggregated for all queues.
|
2408
2543
|
#
|
2409
|
-
# The only supported grouping is `QUEUE`.
|
2410
|
-
#
|
2411
2544
|
# If no grouping is specified, a summary of metrics for all queues is
|
2412
2545
|
# returned.
|
2413
2546
|
# @return [Array<String>]
|
@@ -2418,6 +2551,11 @@ module Aws::Connect
|
|
2418
2551
|
# description of each metric, see [Historical Metrics Definitions][1]
|
2419
2552
|
# in the *Amazon Connect Administrator Guide*.
|
2420
2553
|
#
|
2554
|
+
# <note markdown="1"> This API does not support a contacts incoming metric (there's no
|
2555
|
+
# CONTACTS\_INCOMING metric missing from the documented list).
|
2556
|
+
#
|
2557
|
+
# </note>
|
2558
|
+
#
|
2421
2559
|
# ABANDON\_TIME
|
2422
2560
|
#
|
2423
2561
|
# : Unit: SECONDS
|
@@ -2564,13 +2702,15 @@ module Aws::Connect
|
|
2564
2702
|
#
|
2565
2703
|
# SERVICE\_LEVEL
|
2566
2704
|
#
|
2567
|
-
# :
|
2705
|
+
# : You can include up to 20 SERVICE\_LEVEL metrics in a request.
|
2706
|
+
#
|
2707
|
+
# Unit: PERCENT
|
2568
2708
|
#
|
2569
2709
|
# Statistic: AVG
|
2570
2710
|
#
|
2571
|
-
# Threshold:
|
2572
|
-
#
|
2573
|
-
#
|
2711
|
+
# Threshold: For `ThresholdValue`, enter any whole number from 1 to
|
2712
|
+
# 604800 (inclusive), in seconds. For `Comparison`, you must enter
|
2713
|
+
# `LT` (for "Less than").
|
2574
2714
|
#
|
2575
2715
|
#
|
2576
2716
|
#
|
@@ -3054,7 +3194,8 @@ module Aws::Connect
|
|
3054
3194
|
# The Amazon Connect instance.
|
3055
3195
|
#
|
3056
3196
|
# @!attribute [rw] id
|
3057
|
-
# The identifier of the Amazon Connect instance.
|
3197
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3198
|
+
# instanceId in the ARN of the instance.
|
3058
3199
|
# @return [String]
|
3059
3200
|
#
|
3060
3201
|
# @!attribute [rw] arn
|
@@ -3259,7 +3400,8 @@ module Aws::Connect
|
|
3259
3400
|
# @return [String]
|
3260
3401
|
#
|
3261
3402
|
# @!attribute [rw] instance_id
|
3262
|
-
# The identifier of the Amazon Connect instance.
|
3403
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3404
|
+
# instanceId in the ARN of the instance.
|
3263
3405
|
# @return [String]
|
3264
3406
|
#
|
3265
3407
|
# @!attribute [rw] integration_type
|
@@ -3464,6 +3606,46 @@ module Aws::Connect
|
|
3464
3606
|
include Aws::Structure
|
3465
3607
|
end
|
3466
3608
|
|
3609
|
+
# Configuration information of an Amazon Lex or Amazon Lex V2 bot.
|
3610
|
+
#
|
3611
|
+
# @!attribute [rw] lex_bot
|
3612
|
+
# Configuration information of an Amazon Lex bot.
|
3613
|
+
# @return [Types::LexBot]
|
3614
|
+
#
|
3615
|
+
# @!attribute [rw] lex_v2_bot
|
3616
|
+
# Configuration information of an Amazon Lex V2 bot.
|
3617
|
+
# @return [Types::LexV2Bot]
|
3618
|
+
#
|
3619
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/LexBotConfig AWS API Documentation
|
3620
|
+
#
|
3621
|
+
class LexBotConfig < Struct.new(
|
3622
|
+
:lex_bot,
|
3623
|
+
:lex_v2_bot)
|
3624
|
+
SENSITIVE = []
|
3625
|
+
include Aws::Structure
|
3626
|
+
end
|
3627
|
+
|
3628
|
+
# Configuration information of an Amazon Lex V2 bot.
|
3629
|
+
#
|
3630
|
+
# @note When making an API call, you may pass LexV2Bot
|
3631
|
+
# data as a hash:
|
3632
|
+
#
|
3633
|
+
# {
|
3634
|
+
# alias_arn: "AliasArn",
|
3635
|
+
# }
|
3636
|
+
#
|
3637
|
+
# @!attribute [rw] alias_arn
|
3638
|
+
# The Amazon Resource Name (ARN) of the Amazon Lex V2 bot.
|
3639
|
+
# @return [String]
|
3640
|
+
#
|
3641
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/LexV2Bot AWS API Documentation
|
3642
|
+
#
|
3643
|
+
class LexV2Bot < Struct.new(
|
3644
|
+
:alias_arn)
|
3645
|
+
SENSITIVE = []
|
3646
|
+
include Aws::Structure
|
3647
|
+
end
|
3648
|
+
|
3467
3649
|
# The allowed limit for the resource has been exceeded.
|
3468
3650
|
#
|
3469
3651
|
# @!attribute [rw] message
|
@@ -3488,7 +3670,8 @@ module Aws::Connect
|
|
3488
3670
|
# }
|
3489
3671
|
#
|
3490
3672
|
# @!attribute [rw] instance_id
|
3491
|
-
# The identifier of the Amazon Connect instance.
|
3673
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3674
|
+
# instanceId in the ARN of the instance.
|
3492
3675
|
# @return [String]
|
3493
3676
|
#
|
3494
3677
|
# @!attribute [rw] next_token
|
@@ -3529,6 +3712,65 @@ module Aws::Connect
|
|
3529
3712
|
include Aws::Structure
|
3530
3713
|
end
|
3531
3714
|
|
3715
|
+
# @note When making an API call, you may pass ListBotsRequest
|
3716
|
+
# data as a hash:
|
3717
|
+
#
|
3718
|
+
# {
|
3719
|
+
# instance_id: "InstanceId", # required
|
3720
|
+
# next_token: "NextToken",
|
3721
|
+
# max_results: 1,
|
3722
|
+
# lex_version: "V1", # required, accepts V1, V2
|
3723
|
+
# }
|
3724
|
+
#
|
3725
|
+
# @!attribute [rw] instance_id
|
3726
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3727
|
+
# instanceId in the ARN of the instance.
|
3728
|
+
# @return [String]
|
3729
|
+
#
|
3730
|
+
# @!attribute [rw] next_token
|
3731
|
+
# The token for the next set of results. Use the value returned in the
|
3732
|
+
# previous response in the next request to retrieve the next set of
|
3733
|
+
# results.
|
3734
|
+
# @return [String]
|
3735
|
+
#
|
3736
|
+
# @!attribute [rw] max_results
|
3737
|
+
# The maximum number of results to return per page.
|
3738
|
+
# @return [Integer]
|
3739
|
+
#
|
3740
|
+
# @!attribute [rw] lex_version
|
3741
|
+
# The version of Amazon Lex or Amazon Lex V2.
|
3742
|
+
# @return [String]
|
3743
|
+
#
|
3744
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListBotsRequest AWS API Documentation
|
3745
|
+
#
|
3746
|
+
class ListBotsRequest < Struct.new(
|
3747
|
+
:instance_id,
|
3748
|
+
:next_token,
|
3749
|
+
:max_results,
|
3750
|
+
:lex_version)
|
3751
|
+
SENSITIVE = []
|
3752
|
+
include Aws::Structure
|
3753
|
+
end
|
3754
|
+
|
3755
|
+
# @!attribute [rw] lex_bots
|
3756
|
+
# The names and Regions of the Amazon Lex or Amazon Lex V2 bots
|
3757
|
+
# associated with the specified instance.
|
3758
|
+
# @return [Array<Types::LexBotConfig>]
|
3759
|
+
#
|
3760
|
+
# @!attribute [rw] next_token
|
3761
|
+
# If there are additional results, this is the token for the next set
|
3762
|
+
# of results.
|
3763
|
+
# @return [String]
|
3764
|
+
#
|
3765
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListBotsResponse AWS API Documentation
|
3766
|
+
#
|
3767
|
+
class ListBotsResponse < Struct.new(
|
3768
|
+
:lex_bots,
|
3769
|
+
:next_token)
|
3770
|
+
SENSITIVE = []
|
3771
|
+
include Aws::Structure
|
3772
|
+
end
|
3773
|
+
|
3532
3774
|
# @note When making an API call, you may pass ListContactFlowsRequest
|
3533
3775
|
# data as a hash:
|
3534
3776
|
#
|
@@ -3540,7 +3782,8 @@ module Aws::Connect
|
|
3540
3782
|
# }
|
3541
3783
|
#
|
3542
3784
|
# @!attribute [rw] instance_id
|
3543
|
-
# The identifier of the Amazon Connect instance.
|
3785
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3786
|
+
# instanceId in the ARN of the instance.
|
3544
3787
|
# @return [String]
|
3545
3788
|
#
|
3546
3789
|
# @!attribute [rw] contact_flow_types
|
@@ -3596,7 +3839,8 @@ module Aws::Connect
|
|
3596
3839
|
# }
|
3597
3840
|
#
|
3598
3841
|
# @!attribute [rw] instance_id
|
3599
|
-
# The identifier of the Amazon Connect instance.
|
3842
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3843
|
+
# instanceId in the ARN of the instance.
|
3600
3844
|
# @return [String]
|
3601
3845
|
#
|
3602
3846
|
# @!attribute [rw] next_token
|
@@ -3647,7 +3891,8 @@ module Aws::Connect
|
|
3647
3891
|
# }
|
3648
3892
|
#
|
3649
3893
|
# @!attribute [rw] instance_id
|
3650
|
-
# The identifier of the Amazon Connect instance.
|
3894
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3895
|
+
# instanceId in the ARN of the instance.
|
3651
3896
|
# @return [String]
|
3652
3897
|
#
|
3653
3898
|
# @!attribute [rw] next_token
|
@@ -3699,7 +3944,8 @@ module Aws::Connect
|
|
3699
3944
|
# }
|
3700
3945
|
#
|
3701
3946
|
# @!attribute [rw] instance_id
|
3702
|
-
# The identifier of the Amazon Connect instance.
|
3947
|
+
# The identifier of the Amazon Connect instance. You can find the
|
3948
|
+
# instanceId in the ARN of the instance.
|
3703
3949
|
# @return [String]
|
3704
3950
|
#
|
3705
3951
|
# @!attribute [rw] resource_type
|
@@ -3800,7 +4046,8 @@ module Aws::Connect
|
|
3800
4046
|
# }
|
3801
4047
|
#
|
3802
4048
|
# @!attribute [rw] instance_id
|
3803
|
-
# The identifier of the Amazon Connect instance.
|
4049
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4050
|
+
# instanceId in the ARN of the instance.
|
3804
4051
|
# @return [String]
|
3805
4052
|
#
|
3806
4053
|
# @!attribute [rw] next_token
|
@@ -3851,7 +4098,8 @@ module Aws::Connect
|
|
3851
4098
|
# }
|
3852
4099
|
#
|
3853
4100
|
# @!attribute [rw] instance_id
|
3854
|
-
# The identifier of the Amazon Connect instance.
|
4101
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4102
|
+
# instanceId in the ARN of the instance.
|
3855
4103
|
# @return [String]
|
3856
4104
|
#
|
3857
4105
|
# @!attribute [rw] next_token
|
@@ -3902,7 +4150,8 @@ module Aws::Connect
|
|
3902
4150
|
# }
|
3903
4151
|
#
|
3904
4152
|
# @!attribute [rw] instance_id
|
3905
|
-
# The identifier of the Amazon Connect instance.
|
4153
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4154
|
+
# instanceId in the ARN of the instance.
|
3906
4155
|
# @return [String]
|
3907
4156
|
#
|
3908
4157
|
# @!attribute [rw] next_token
|
@@ -3956,7 +4205,8 @@ module Aws::Connect
|
|
3956
4205
|
# }
|
3957
4206
|
#
|
3958
4207
|
# @!attribute [rw] instance_id
|
3959
|
-
# The identifier of the Amazon Connect instance.
|
4208
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4209
|
+
# instanceId in the ARN of the instance.
|
3960
4210
|
# @return [String]
|
3961
4211
|
#
|
3962
4212
|
# @!attribute [rw] phone_number_types
|
@@ -4069,7 +4319,8 @@ module Aws::Connect
|
|
4069
4319
|
# }
|
4070
4320
|
#
|
4071
4321
|
# @!attribute [rw] instance_id
|
4072
|
-
# The identifier of the Amazon Connect instance.
|
4322
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4323
|
+
# instanceId in the ARN of the instance.
|
4073
4324
|
# @return [String]
|
4074
4325
|
#
|
4075
4326
|
# @!attribute [rw] queue_id
|
@@ -4126,7 +4377,8 @@ module Aws::Connect
|
|
4126
4377
|
# }
|
4127
4378
|
#
|
4128
4379
|
# @!attribute [rw] instance_id
|
4129
|
-
# The identifier of the Amazon Connect instance.
|
4380
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4381
|
+
# instanceId in the ARN of the instance.
|
4130
4382
|
# @return [String]
|
4131
4383
|
#
|
4132
4384
|
# @!attribute [rw] queue_types
|
@@ -4183,7 +4435,8 @@ module Aws::Connect
|
|
4183
4435
|
# }
|
4184
4436
|
#
|
4185
4437
|
# @!attribute [rw] instance_id
|
4186
|
-
# The identifier of the Amazon Connect instance.
|
4438
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4439
|
+
# instanceId in the ARN of the instance.
|
4187
4440
|
# @return [String]
|
4188
4441
|
#
|
4189
4442
|
# @!attribute [rw] next_token
|
@@ -4243,7 +4496,8 @@ module Aws::Connect
|
|
4243
4496
|
# }
|
4244
4497
|
#
|
4245
4498
|
# @!attribute [rw] instance_id
|
4246
|
-
# The identifier of the Amazon Connect instance.
|
4499
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4500
|
+
# instanceId in the ARN of the instance.
|
4247
4501
|
# @return [String]
|
4248
4502
|
#
|
4249
4503
|
# @!attribute [rw] routing_profile_id
|
@@ -4299,7 +4553,8 @@ module Aws::Connect
|
|
4299
4553
|
# }
|
4300
4554
|
#
|
4301
4555
|
# @!attribute [rw] instance_id
|
4302
|
-
# The identifier of the Amazon Connect instance.
|
4556
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4557
|
+
# instanceId in the ARN of the instance.
|
4303
4558
|
# @return [String]
|
4304
4559
|
#
|
4305
4560
|
# @!attribute [rw] next_token
|
@@ -4350,7 +4605,8 @@ module Aws::Connect
|
|
4350
4605
|
# }
|
4351
4606
|
#
|
4352
4607
|
# @!attribute [rw] instance_id
|
4353
|
-
# The identifier of the Amazon Connect instance.
|
4608
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4609
|
+
# instanceId in the ARN of the instance.
|
4354
4610
|
# @return [String]
|
4355
4611
|
#
|
4356
4612
|
# @!attribute [rw] next_token
|
@@ -4401,7 +4657,8 @@ module Aws::Connect
|
|
4401
4657
|
# }
|
4402
4658
|
#
|
4403
4659
|
# @!attribute [rw] instance_id
|
4404
|
-
# The identifier of the Amazon Connect instance.
|
4660
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4661
|
+
# instanceId in the ARN of the instance.
|
4405
4662
|
# @return [String]
|
4406
4663
|
#
|
4407
4664
|
# @!attribute [rw] next_token
|
@@ -4487,7 +4744,8 @@ module Aws::Connect
|
|
4487
4744
|
# }
|
4488
4745
|
#
|
4489
4746
|
# @!attribute [rw] instance_id
|
4490
|
-
# The identifier of the Amazon Connect instance.
|
4747
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4748
|
+
# instanceId in the ARN of the instance.
|
4491
4749
|
# @return [String]
|
4492
4750
|
#
|
4493
4751
|
# @!attribute [rw] integration_association_id
|
@@ -4543,7 +4801,8 @@ module Aws::Connect
|
|
4543
4801
|
# }
|
4544
4802
|
#
|
4545
4803
|
# @!attribute [rw] instance_id
|
4546
|
-
# The identifier of the Amazon Connect instance.
|
4804
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4805
|
+
# instanceId in the ARN of the instance.
|
4547
4806
|
# @return [String]
|
4548
4807
|
#
|
4549
4808
|
# @!attribute [rw] next_token
|
@@ -4594,7 +4853,8 @@ module Aws::Connect
|
|
4594
4853
|
# }
|
4595
4854
|
#
|
4596
4855
|
# @!attribute [rw] instance_id
|
4597
|
-
# The identifier of the Amazon Connect instance.
|
4856
|
+
# The identifier of the Amazon Connect instance. You can find the
|
4857
|
+
# instanceId in the ARN of the instance.
|
4598
4858
|
# @return [String]
|
4599
4859
|
#
|
4600
4860
|
# @!attribute [rw] next_token
|
@@ -4654,6 +4914,12 @@ module Aws::Connect
|
|
4654
4914
|
# @!attribute [rw] concurrency
|
4655
4915
|
# The number of contacts an agent can have on a channel
|
4656
4916
|
# simultaneously.
|
4917
|
+
#
|
4918
|
+
# Valid Range for `VOICE`\: Minimum value of 1. Maximum value of 1.
|
4919
|
+
#
|
4920
|
+
# Valid Range for `CHAT`\: Minimum value of 1. Maximum value of 10.
|
4921
|
+
#
|
4922
|
+
# Valid Range for `TASK`\: Minimum value of 1. Maximum value of 10.
|
4657
4923
|
# @return [Integer]
|
4658
4924
|
#
|
4659
4925
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/MediaConcurrency AWS API Documentation
|
@@ -5172,7 +5438,8 @@ module Aws::Connect
|
|
5172
5438
|
# }
|
5173
5439
|
#
|
5174
5440
|
# @!attribute [rw] instance_id
|
5175
|
-
# The identifier of the Amazon Connect instance.
|
5441
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5442
|
+
# instanceId in the ARN of the instance.
|
5176
5443
|
# @return [String]
|
5177
5444
|
#
|
5178
5445
|
# @!attribute [rw] contact_id
|
@@ -5201,7 +5468,8 @@ module Aws::Connect
|
|
5201
5468
|
# Contains information about a routing profile.
|
5202
5469
|
#
|
5203
5470
|
# @!attribute [rw] instance_id
|
5204
|
-
# The identifier of the Amazon Connect instance.
|
5471
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5472
|
+
# instanceId in the ARN of the instance.
|
5205
5473
|
# @return [String]
|
5206
5474
|
#
|
5207
5475
|
# @!attribute [rw] name
|
@@ -5519,7 +5787,8 @@ module Aws::Connect
|
|
5519
5787
|
# }
|
5520
5788
|
#
|
5521
5789
|
# @!attribute [rw] instance_id
|
5522
|
-
# The identifier of the Amazon Connect instance.
|
5790
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5791
|
+
# instanceId in the ARN of the instance.
|
5523
5792
|
# @return [String]
|
5524
5793
|
#
|
5525
5794
|
# @!attribute [rw] contact_flow_id
|
@@ -5614,7 +5883,8 @@ module Aws::Connect
|
|
5614
5883
|
# }
|
5615
5884
|
#
|
5616
5885
|
# @!attribute [rw] instance_id
|
5617
|
-
# The identifier of the Amazon Connect instance.
|
5886
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5887
|
+
# instanceId in the ARN of the instance.
|
5618
5888
|
# @return [String]
|
5619
5889
|
#
|
5620
5890
|
# @!attribute [rw] contact_id
|
@@ -5676,14 +5946,15 @@ module Aws::Connect
|
|
5676
5946
|
# @return [String]
|
5677
5947
|
#
|
5678
5948
|
# @!attribute [rw] instance_id
|
5679
|
-
# The identifier of the Amazon Connect instance.
|
5949
|
+
# The identifier of the Amazon Connect instance. You can find the
|
5950
|
+
# instanceId in the ARN of the instance.
|
5680
5951
|
# @return [String]
|
5681
5952
|
#
|
5682
5953
|
# @!attribute [rw] client_token
|
5683
5954
|
# A unique, case-sensitive identifier that you provide to ensure the
|
5684
5955
|
# idempotency of the request. The token is valid for 7 days after
|
5685
5956
|
# creation. If a contact is already started, the contact ID is
|
5686
|
-
# returned.
|
5957
|
+
# returned.
|
5687
5958
|
#
|
5688
5959
|
# **A suitable default value is auto-generated.** You should normally
|
5689
5960
|
# not need to pass this option.
|
@@ -5761,7 +6032,8 @@ module Aws::Connect
|
|
5761
6032
|
# }
|
5762
6033
|
#
|
5763
6034
|
# @!attribute [rw] instance_id
|
5764
|
-
# The identifier of the Amazon Connect instance.
|
6035
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6036
|
+
# instanceId in the ARN of the instance.
|
5765
6037
|
# @return [String]
|
5766
6038
|
#
|
5767
6039
|
# @!attribute [rw] previous_contact_id
|
@@ -5849,7 +6121,8 @@ module Aws::Connect
|
|
5849
6121
|
# }
|
5850
6122
|
#
|
5851
6123
|
# @!attribute [rw] instance_id
|
5852
|
-
# The identifier of the Amazon Connect instance.
|
6124
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6125
|
+
# instanceId in the ARN of the instance.
|
5853
6126
|
# @return [String]
|
5854
6127
|
#
|
5855
6128
|
# @!attribute [rw] contact_id
|
@@ -5888,7 +6161,8 @@ module Aws::Connect
|
|
5888
6161
|
# @return [String]
|
5889
6162
|
#
|
5890
6163
|
# @!attribute [rw] instance_id
|
5891
|
-
# The identifier of the Amazon Connect instance.
|
6164
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6165
|
+
# instanceId in the ARN of the instance.
|
5892
6166
|
# @return [String]
|
5893
6167
|
#
|
5894
6168
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/StopContactRequest AWS API Documentation
|
@@ -5914,7 +6188,8 @@ module Aws::Connect
|
|
5914
6188
|
# }
|
5915
6189
|
#
|
5916
6190
|
# @!attribute [rw] instance_id
|
5917
|
-
# The identifier of the Amazon Connect instance.
|
6191
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6192
|
+
# instanceId in the ARN of the instance.
|
5918
6193
|
# @return [String]
|
5919
6194
|
#
|
5920
6195
|
# @!attribute [rw] contact_id
|
@@ -6051,7 +6326,8 @@ module Aws::Connect
|
|
6051
6326
|
# @return [String]
|
6052
6327
|
#
|
6053
6328
|
# @!attribute [rw] instance_id
|
6054
|
-
# The identifier of the Amazon Connect instance.
|
6329
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6330
|
+
# instanceId in the ARN of the instance.
|
6055
6331
|
# @return [String]
|
6056
6332
|
#
|
6057
6333
|
# @!attribute [rw] attributes
|
@@ -6161,7 +6437,8 @@ module Aws::Connect
|
|
6161
6437
|
# }
|
6162
6438
|
#
|
6163
6439
|
# @!attribute [rw] instance_id
|
6164
|
-
# The identifier of the Amazon Connect instance.
|
6440
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6441
|
+
# instanceId in the ARN of the instance.
|
6165
6442
|
# @return [String]
|
6166
6443
|
#
|
6167
6444
|
# @!attribute [rw] attribute_type
|
@@ -6218,7 +6495,8 @@ module Aws::Connect
|
|
6218
6495
|
# }
|
6219
6496
|
#
|
6220
6497
|
# @!attribute [rw] instance_id
|
6221
|
-
# The identifier of the Amazon Connect instance.
|
6498
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6499
|
+
# instanceId in the ARN of the instance.
|
6222
6500
|
# @return [String]
|
6223
6501
|
#
|
6224
6502
|
# @!attribute [rw] association_id
|
@@ -6255,7 +6533,8 @@ module Aws::Connect
|
|
6255
6533
|
# }
|
6256
6534
|
#
|
6257
6535
|
# @!attribute [rw] instance_id
|
6258
|
-
# The identifier of the Amazon Connect instance.
|
6536
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6537
|
+
# instanceId in the ARN of the instance.
|
6259
6538
|
# @return [String]
|
6260
6539
|
#
|
6261
6540
|
# @!attribute [rw] queue_id
|
@@ -6286,7 +6565,8 @@ module Aws::Connect
|
|
6286
6565
|
# }
|
6287
6566
|
#
|
6288
6567
|
# @!attribute [rw] instance_id
|
6289
|
-
# The identifier of the Amazon Connect instance.
|
6568
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6569
|
+
# instanceId in the ARN of the instance.
|
6290
6570
|
# @return [String]
|
6291
6571
|
#
|
6292
6572
|
# @!attribute [rw] queue_id
|
@@ -6319,7 +6599,8 @@ module Aws::Connect
|
|
6319
6599
|
# }
|
6320
6600
|
#
|
6321
6601
|
# @!attribute [rw] instance_id
|
6322
|
-
# The identifier of the Amazon Connect instance.
|
6602
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6603
|
+
# instanceId in the ARN of the instance.
|
6323
6604
|
# @return [String]
|
6324
6605
|
#
|
6325
6606
|
# @!attribute [rw] queue_id
|
@@ -6359,7 +6640,8 @@ module Aws::Connect
|
|
6359
6640
|
# }
|
6360
6641
|
#
|
6361
6642
|
# @!attribute [rw] instance_id
|
6362
|
-
# The identifier of the Amazon Connect instance.
|
6643
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6644
|
+
# instanceId in the ARN of the instance.
|
6363
6645
|
# @return [String]
|
6364
6646
|
#
|
6365
6647
|
# @!attribute [rw] queue_id
|
@@ -6390,7 +6672,8 @@ module Aws::Connect
|
|
6390
6672
|
# }
|
6391
6673
|
#
|
6392
6674
|
# @!attribute [rw] instance_id
|
6393
|
-
# The identifier of the Amazon Connect instance.
|
6675
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6676
|
+
# instanceId in the ARN of the instance.
|
6394
6677
|
# @return [String]
|
6395
6678
|
#
|
6396
6679
|
# @!attribute [rw] queue_id
|
@@ -6434,7 +6717,8 @@ module Aws::Connect
|
|
6434
6717
|
# }
|
6435
6718
|
#
|
6436
6719
|
# @!attribute [rw] instance_id
|
6437
|
-
# The identifier of the Amazon Connect instance.
|
6720
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6721
|
+
# instanceId in the ARN of the instance.
|
6438
6722
|
# @return [String]
|
6439
6723
|
#
|
6440
6724
|
# @!attribute [rw] quick_connect_id
|
@@ -6462,11 +6746,12 @@ module Aws::Connect
|
|
6462
6746
|
# instance_id: "InstanceId", # required
|
6463
6747
|
# quick_connect_id: "QuickConnectId", # required
|
6464
6748
|
# name: "QuickConnectName",
|
6465
|
-
# description: "
|
6749
|
+
# description: "UpdateQuickConnectDescription",
|
6466
6750
|
# }
|
6467
6751
|
#
|
6468
6752
|
# @!attribute [rw] instance_id
|
6469
|
-
# The identifier of the Amazon Connect instance.
|
6753
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6754
|
+
# instanceId in the ARN of the instance.
|
6470
6755
|
# @return [String]
|
6471
6756
|
#
|
6472
6757
|
# @!attribute [rw] quick_connect_id
|
@@ -6507,7 +6792,8 @@ module Aws::Connect
|
|
6507
6792
|
# }
|
6508
6793
|
#
|
6509
6794
|
# @!attribute [rw] instance_id
|
6510
|
-
# The identifier of the Amazon Connect instance.
|
6795
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6796
|
+
# instanceId in the ARN of the instance.
|
6511
6797
|
# @return [String]
|
6512
6798
|
#
|
6513
6799
|
# @!attribute [rw] routing_profile_id
|
@@ -6539,7 +6825,8 @@ module Aws::Connect
|
|
6539
6825
|
# }
|
6540
6826
|
#
|
6541
6827
|
# @!attribute [rw] instance_id
|
6542
|
-
# The identifier of the Amazon Connect instance.
|
6828
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6829
|
+
# instanceId in the ARN of the instance.
|
6543
6830
|
# @return [String]
|
6544
6831
|
#
|
6545
6832
|
# @!attribute [rw] routing_profile_id
|
@@ -6571,7 +6858,8 @@ module Aws::Connect
|
|
6571
6858
|
# }
|
6572
6859
|
#
|
6573
6860
|
# @!attribute [rw] instance_id
|
6574
|
-
# The identifier of the Amazon Connect instance.
|
6861
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6862
|
+
# instanceId in the ARN of the instance.
|
6575
6863
|
# @return [String]
|
6576
6864
|
#
|
6577
6865
|
# @!attribute [rw] routing_profile_id
|
@@ -6618,7 +6906,8 @@ module Aws::Connect
|
|
6618
6906
|
# }
|
6619
6907
|
#
|
6620
6908
|
# @!attribute [rw] instance_id
|
6621
|
-
# The identifier of the Amazon Connect instance.
|
6909
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6910
|
+
# instanceId in the ARN of the instance.
|
6622
6911
|
# @return [String]
|
6623
6912
|
#
|
6624
6913
|
# @!attribute [rw] routing_profile_id
|
@@ -6660,7 +6949,8 @@ module Aws::Connect
|
|
6660
6949
|
# @return [String]
|
6661
6950
|
#
|
6662
6951
|
# @!attribute [rw] instance_id
|
6663
|
-
# The identifier of the Amazon Connect instance.
|
6952
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6953
|
+
# instanceId in the ARN of the instance.
|
6664
6954
|
# @return [String]
|
6665
6955
|
#
|
6666
6956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserHierarchyGroupNameRequest AWS API Documentation
|
@@ -6691,7 +6981,8 @@ module Aws::Connect
|
|
6691
6981
|
# @return [String]
|
6692
6982
|
#
|
6693
6983
|
# @!attribute [rw] instance_id
|
6694
|
-
# The identifier of the Amazon Connect instance.
|
6984
|
+
# The identifier of the Amazon Connect instance. You can find the
|
6985
|
+
# instanceId in the ARN of the instance.
|
6695
6986
|
# @return [String]
|
6696
6987
|
#
|
6697
6988
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserHierarchyRequest AWS API Documentation
|
@@ -6733,7 +7024,8 @@ module Aws::Connect
|
|
6733
7024
|
# @return [Types::HierarchyStructureUpdate]
|
6734
7025
|
#
|
6735
7026
|
# @!attribute [rw] instance_id
|
6736
|
-
# The identifier of the Amazon Connect instance.
|
7027
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7028
|
+
# instanceId in the ARN of the instance.
|
6737
7029
|
# @return [String]
|
6738
7030
|
#
|
6739
7031
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserHierarchyStructureRequest AWS API Documentation
|
@@ -6767,7 +7059,8 @@ module Aws::Connect
|
|
6767
7059
|
# @return [String]
|
6768
7060
|
#
|
6769
7061
|
# @!attribute [rw] instance_id
|
6770
|
-
# The identifier of the Amazon Connect instance.
|
7062
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7063
|
+
# instanceId in the ARN of the instance.
|
6771
7064
|
# @return [String]
|
6772
7065
|
#
|
6773
7066
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserIdentityInfoRequest AWS API Documentation
|
@@ -6803,7 +7096,8 @@ module Aws::Connect
|
|
6803
7096
|
# @return [String]
|
6804
7097
|
#
|
6805
7098
|
# @!attribute [rw] instance_id
|
6806
|
-
# The identifier of the Amazon Connect instance.
|
7099
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7100
|
+
# instanceId in the ARN of the instance.
|
6807
7101
|
# @return [String]
|
6808
7102
|
#
|
6809
7103
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserPhoneConfigRequest AWS API Documentation
|
@@ -6834,7 +7128,8 @@ module Aws::Connect
|
|
6834
7128
|
# @return [String]
|
6835
7129
|
#
|
6836
7130
|
# @!attribute [rw] instance_id
|
6837
|
-
# The identifier of the Amazon Connect instance.
|
7131
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7132
|
+
# instanceId in the ARN of the instance.
|
6838
7133
|
# @return [String]
|
6839
7134
|
#
|
6840
7135
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserRoutingProfileRequest AWS API Documentation
|
@@ -6865,7 +7160,8 @@ module Aws::Connect
|
|
6865
7160
|
# @return [String]
|
6866
7161
|
#
|
6867
7162
|
# @!attribute [rw] instance_id
|
6868
|
-
# The identifier of the Amazon Connect instance.
|
7163
|
+
# The identifier of the Amazon Connect instance. You can find the
|
7164
|
+
# instanceId in the ARN of the instance.
|
6869
7165
|
# @return [String]
|
6870
7166
|
#
|
6871
7167
|
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateUserSecurityProfilesRequest AWS API Documentation
|