aws-sdk-connect 1.252.0 → 1.254.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 +185 -5
- data/lib/aws-sdk-connect/client_api.rb +117 -4
- data/lib/aws-sdk-connect/types.rb +255 -3
- data/lib/aws-sdk-connect.rb +1 -1
- data/sig/client.rbs +49 -2
- data/sig/types.rbs +70 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: d1b31b3d041c85340711c76b88f629fd5aa18bef3080ea72fc1311893925e2d9
|
|
4
|
+
data.tar.gz: d70ed16f01fe9a08180ce0ba98db4ecda6f5c21db69e9f06a96478ed5fc5b6e1
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7c83434f3e83aba4a76135959c9becf66219131e91d6bbd81525ea66c15e3dd1702fc1c75521ded545e24ccb1a90e4095582a3f0b56708b831936fa60d0ec9b5
|
|
7
|
+
data.tar.gz: f55abe3c9ca81c361467b359091f54fb4dcf9c6631fc04e81c6f08aaa7b6c07c3c548c0cb85d51174051fa88a18620fa89bfeabf247f32d7eea7467f757c4ca5
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.254.0 (2026-04-24)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Amazon Connect is expanding attachment capabilities to give customers greater flexibility and control. Currently limited to predefined file types, the new feature will allow contact center administrators to customize which file extensions and sizes are supported across chat, email, tasks, and cases.
|
|
8
|
+
|
|
9
|
+
1.253.0 (2026-04-17)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - Fixes in SDK for customers using TestCase APIs
|
|
13
|
+
|
|
4
14
|
1.252.0 (2026-04-16)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.254.0
|
|
@@ -7369,6 +7369,55 @@ module Aws::Connect
|
|
|
7369
7369
|
req.send_request(options)
|
|
7370
7370
|
end
|
|
7371
7371
|
|
|
7372
|
+
# Describes the attached files configuration for the specified Amazon
|
|
7373
|
+
# Connect instance and attachment scope.
|
|
7374
|
+
#
|
|
7375
|
+
# If a custom configuration exists for the specified attachment scope,
|
|
7376
|
+
# the custom configuration is returned. If no custom configuration
|
|
7377
|
+
# exists, the default configuration values for that attachment scope are
|
|
7378
|
+
# returned.
|
|
7379
|
+
#
|
|
7380
|
+
# @option params [required, String] :instance_id
|
|
7381
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
7382
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
7383
|
+
#
|
|
7384
|
+
#
|
|
7385
|
+
#
|
|
7386
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
7387
|
+
#
|
|
7388
|
+
# @option params [required, String] :attachment_scope
|
|
7389
|
+
# The scope of the attachment. Valid values are `EMAIL`, `CHAT`, `CASE`,
|
|
7390
|
+
# and `TASK`.
|
|
7391
|
+
#
|
|
7392
|
+
# @return [Types::DescribeAttachedFilesConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
7393
|
+
#
|
|
7394
|
+
# * {Types::DescribeAttachedFilesConfigurationResponse#attached_files_configuration #attached_files_configuration} => Types::AttachedFilesConfiguration
|
|
7395
|
+
#
|
|
7396
|
+
# @example Request syntax with placeholder values
|
|
7397
|
+
#
|
|
7398
|
+
# resp = client.describe_attached_files_configuration({
|
|
7399
|
+
# instance_id: "InstanceId", # required
|
|
7400
|
+
# attachment_scope: "EMAIL", # required, accepts EMAIL, CHAT, CASE, TASK
|
|
7401
|
+
# })
|
|
7402
|
+
#
|
|
7403
|
+
# @example Response structure
|
|
7404
|
+
#
|
|
7405
|
+
# resp.attached_files_configuration.instance_id #=> String
|
|
7406
|
+
# resp.attached_files_configuration.attachment_scope #=> String, one of "EMAIL", "CHAT", "CASE", "TASK"
|
|
7407
|
+
# resp.attached_files_configuration.maximum_size_limit_in_bytes #=> Integer
|
|
7408
|
+
# resp.attached_files_configuration.extension_configuration.allowed_extensions #=> Array
|
|
7409
|
+
# resp.attached_files_configuration.extension_configuration.allowed_extensions[0].extension #=> String
|
|
7410
|
+
# resp.attached_files_configuration.last_modified_time #=> Time
|
|
7411
|
+
#
|
|
7412
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAttachedFilesConfiguration AWS API Documentation
|
|
7413
|
+
#
|
|
7414
|
+
# @overload describe_attached_files_configuration(params = {})
|
|
7415
|
+
# @param [Hash] params ({})
|
|
7416
|
+
def describe_attached_files_configuration(params = {}, options = {})
|
|
7417
|
+
req = build_request(:describe_attached_files_configuration, params)
|
|
7418
|
+
req.send_request(options)
|
|
7419
|
+
end
|
|
7420
|
+
|
|
7372
7421
|
# This API is in preview release for Amazon Connect and is subject to
|
|
7373
7422
|
# change. To request access to this API, contact Amazon Web Services
|
|
7374
7423
|
# Support.
|
|
@@ -14753,6 +14802,64 @@ module Aws::Connect
|
|
|
14753
14802
|
req.send_request(options)
|
|
14754
14803
|
end
|
|
14755
14804
|
|
|
14805
|
+
# Provides summary information about the attached files configurations
|
|
14806
|
+
# for the specified Amazon Connect instance.
|
|
14807
|
+
#
|
|
14808
|
+
# This API returns effective configurations (custom overrides or
|
|
14809
|
+
# defaults) for each attachment scope. If no custom configuration exists
|
|
14810
|
+
# for a scope, the default configuration values are returned.
|
|
14811
|
+
#
|
|
14812
|
+
# @option params [required, String] :instance_id
|
|
14813
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
14814
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
14815
|
+
#
|
|
14816
|
+
#
|
|
14817
|
+
#
|
|
14818
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
14819
|
+
#
|
|
14820
|
+
# @option params [Integer] :max_results
|
|
14821
|
+
# The maximum number of results to return per page. The default
|
|
14822
|
+
# MaxResult size is 100.
|
|
14823
|
+
#
|
|
14824
|
+
# @option params [String] :next_token
|
|
14825
|
+
# The token for the next set of results. Use the value returned in the
|
|
14826
|
+
# previous response in the next request to retrieve the next set of
|
|
14827
|
+
# results.
|
|
14828
|
+
#
|
|
14829
|
+
# @return [Types::ListAttachedFilesConfigurationsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
14830
|
+
#
|
|
14831
|
+
# * {Types::ListAttachedFilesConfigurationsResponse#attached_files_configurations #attached_files_configurations} => Array<Types::AttachedFilesConfigurationSummary>
|
|
14832
|
+
# * {Types::ListAttachedFilesConfigurationsResponse#next_token #next_token} => String
|
|
14833
|
+
#
|
|
14834
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
|
14835
|
+
#
|
|
14836
|
+
# @example Request syntax with placeholder values
|
|
14837
|
+
#
|
|
14838
|
+
# resp = client.list_attached_files_configurations({
|
|
14839
|
+
# instance_id: "InstanceId", # required
|
|
14840
|
+
# max_results: 1,
|
|
14841
|
+
# next_token: "NextToken",
|
|
14842
|
+
# })
|
|
14843
|
+
#
|
|
14844
|
+
# @example Response structure
|
|
14845
|
+
#
|
|
14846
|
+
# resp.attached_files_configurations #=> Array
|
|
14847
|
+
# resp.attached_files_configurations[0].instance_id #=> String
|
|
14848
|
+
# resp.attached_files_configurations[0].attachment_scope #=> String, one of "EMAIL", "CHAT", "CASE", "TASK"
|
|
14849
|
+
# resp.attached_files_configurations[0].maximum_size_limit_in_bytes #=> Integer
|
|
14850
|
+
# resp.attached_files_configurations[0].extension_configuration.allowed_extensions #=> Array
|
|
14851
|
+
# resp.attached_files_configurations[0].extension_configuration.allowed_extensions[0].extension #=> String
|
|
14852
|
+
# resp.next_token #=> String
|
|
14853
|
+
#
|
|
14854
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAttachedFilesConfigurations AWS API Documentation
|
|
14855
|
+
#
|
|
14856
|
+
# @overload list_attached_files_configurations(params = {})
|
|
14857
|
+
# @param [Hash] params ({})
|
|
14858
|
+
def list_attached_files_configurations(params = {}, options = {})
|
|
14859
|
+
req = build_request(:list_attached_files_configurations, params)
|
|
14860
|
+
req.send_request(options)
|
|
14861
|
+
end
|
|
14862
|
+
|
|
14756
14863
|
# This API is in preview release for Amazon Connect and is subject to
|
|
14757
14864
|
# change. To request access to this API, contact Amazon Web Services
|
|
14758
14865
|
# Support.
|
|
@@ -17952,10 +18059,10 @@ module Aws::Connect
|
|
|
17952
18059
|
# @option params [String] :test_case_name
|
|
17953
18060
|
# Filter executions by test case name.
|
|
17954
18061
|
#
|
|
17955
|
-
# @option params [
|
|
18062
|
+
# @option params [Integer] :start_time
|
|
17956
18063
|
# Filter executions that started after this time.
|
|
17957
18064
|
#
|
|
17958
|
-
# @option params [
|
|
18065
|
+
# @option params [Integer] :end_time
|
|
17959
18066
|
# Filter executions that started before this time.
|
|
17960
18067
|
#
|
|
17961
18068
|
# @option params [String] :status
|
|
@@ -17980,8 +18087,8 @@ module Aws::Connect
|
|
|
17980
18087
|
# instance_id: "InstanceId", # required
|
|
17981
18088
|
# test_case_id: "TestCaseId",
|
|
17982
18089
|
# test_case_name: "TestCaseName",
|
|
17983
|
-
# start_time:
|
|
17984
|
-
# end_time:
|
|
18090
|
+
# start_time: 1,
|
|
18091
|
+
# end_time: 1,
|
|
17985
18092
|
# status: "INITIATED", # accepts INITIATED, PASSED, FAILED, IN_PROGRESS, STOPPED
|
|
17986
18093
|
# next_token: "NextToken",
|
|
17987
18094
|
# max_results: 1,
|
|
@@ -24003,6 +24110,9 @@ module Aws::Connect
|
|
|
24003
24110
|
# SDK populates this field. For more information about idempotency, see
|
|
24004
24111
|
# [Making retries safe with idempotent APIs][1].
|
|
24005
24112
|
#
|
|
24113
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
24114
|
+
# not need to pass this option.**
|
|
24115
|
+
#
|
|
24006
24116
|
#
|
|
24007
24117
|
#
|
|
24008
24118
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
@@ -24368,6 +24478,9 @@ module Aws::Connect
|
|
|
24368
24478
|
# SDK populates this field. For more information about idempotency, see
|
|
24369
24479
|
# [Making retries safe with idempotent APIs][1].
|
|
24370
24480
|
#
|
|
24481
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
24482
|
+
# not need to pass this option.**
|
|
24483
|
+
#
|
|
24371
24484
|
#
|
|
24372
24485
|
#
|
|
24373
24486
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
@@ -24816,6 +24929,73 @@ module Aws::Connect
|
|
|
24816
24929
|
req.send_request(options)
|
|
24817
24930
|
end
|
|
24818
24931
|
|
|
24932
|
+
# Updates the attached files configuration for the specified Amazon
|
|
24933
|
+
# Connect instance and attachment scope.
|
|
24934
|
+
#
|
|
24935
|
+
# If no instance-specific configuration exists, this operation creates
|
|
24936
|
+
# one. Partial updates are supported—only specified fields are updated,
|
|
24937
|
+
# while unspecified fields retain their current values.
|
|
24938
|
+
#
|
|
24939
|
+
# @option params [required, String] :instance_id
|
|
24940
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
24941
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
24942
|
+
#
|
|
24943
|
+
#
|
|
24944
|
+
#
|
|
24945
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
24946
|
+
#
|
|
24947
|
+
# @option params [required, String] :attachment_scope
|
|
24948
|
+
# The scope of the attachment. Valid values are `EMAIL`, `CHAT`, `CASE`,
|
|
24949
|
+
# and `TASK`.
|
|
24950
|
+
#
|
|
24951
|
+
# @option params [Integer] :maximum_size_limit_in_bytes
|
|
24952
|
+
# The maximum size limit for attached files in bytes. The minimum value
|
|
24953
|
+
# is 1 and the maximum value is 104857600 (100 MB).
|
|
24954
|
+
#
|
|
24955
|
+
# @option params [Types::ExtensionConfiguration] :extension_configuration
|
|
24956
|
+
# The configuration for allowed file extensions.
|
|
24957
|
+
#
|
|
24958
|
+
# @return [Types::UpdateAttachedFilesConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
24959
|
+
#
|
|
24960
|
+
# * {Types::UpdateAttachedFilesConfigurationResponse#instance_id #instance_id} => String
|
|
24961
|
+
# * {Types::UpdateAttachedFilesConfigurationResponse#attachment_scope #attachment_scope} => String
|
|
24962
|
+
# * {Types::UpdateAttachedFilesConfigurationResponse#maximum_size_limit_in_bytes #maximum_size_limit_in_bytes} => Integer
|
|
24963
|
+
# * {Types::UpdateAttachedFilesConfigurationResponse#extension_configuration #extension_configuration} => Types::ExtensionConfiguration
|
|
24964
|
+
# * {Types::UpdateAttachedFilesConfigurationResponse#last_modified_time #last_modified_time} => Time
|
|
24965
|
+
#
|
|
24966
|
+
# @example Request syntax with placeholder values
|
|
24967
|
+
#
|
|
24968
|
+
# resp = client.update_attached_files_configuration({
|
|
24969
|
+
# instance_id: "InstanceId", # required
|
|
24970
|
+
# attachment_scope: "EMAIL", # required, accepts EMAIL, CHAT, CASE, TASK
|
|
24971
|
+
# maximum_size_limit_in_bytes: 1,
|
|
24972
|
+
# extension_configuration: {
|
|
24973
|
+
# allowed_extensions: [ # required
|
|
24974
|
+
# {
|
|
24975
|
+
# extension: "FileExtension", # required
|
|
24976
|
+
# },
|
|
24977
|
+
# ],
|
|
24978
|
+
# },
|
|
24979
|
+
# })
|
|
24980
|
+
#
|
|
24981
|
+
# @example Response structure
|
|
24982
|
+
#
|
|
24983
|
+
# resp.instance_id #=> String
|
|
24984
|
+
# resp.attachment_scope #=> String, one of "EMAIL", "CHAT", "CASE", "TASK"
|
|
24985
|
+
# resp.maximum_size_limit_in_bytes #=> Integer
|
|
24986
|
+
# resp.extension_configuration.allowed_extensions #=> Array
|
|
24987
|
+
# resp.extension_configuration.allowed_extensions[0].extension #=> String
|
|
24988
|
+
# resp.last_modified_time #=> Time
|
|
24989
|
+
#
|
|
24990
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAttachedFilesConfiguration AWS API Documentation
|
|
24991
|
+
#
|
|
24992
|
+
# @overload update_attached_files_configuration(params = {})
|
|
24993
|
+
# @param [Hash] params ({})
|
|
24994
|
+
def update_attached_files_configuration(params = {}, options = {})
|
|
24995
|
+
req = build_request(:update_attached_files_configuration, params)
|
|
24996
|
+
req.send_request(options)
|
|
24997
|
+
end
|
|
24998
|
+
|
|
24819
24999
|
# This API is in preview release for Amazon Connect and is subject to
|
|
24820
25000
|
# change. To request access to this API, contact Amazon Web Services
|
|
24821
25001
|
# Support.
|
|
@@ -28896,7 +29076,7 @@ module Aws::Connect
|
|
|
28896
29076
|
tracer: tracer
|
|
28897
29077
|
)
|
|
28898
29078
|
context[:gem_name] = 'aws-sdk-connect'
|
|
28899
|
-
context[:gem_version] = '1.
|
|
29079
|
+
context[:gem_version] = '1.254.0'
|
|
28900
29080
|
Seahorse::Client::Request.new(handlers, context)
|
|
28901
29081
|
end
|
|
28902
29082
|
|
|
@@ -77,6 +77,8 @@ module Aws::Connect
|
|
|
77
77
|
AliasConfigurationList = Shapes::ListShape.new(name: 'AliasConfigurationList')
|
|
78
78
|
AllowedAccessControlTags = Shapes::MapShape.new(name: 'AllowedAccessControlTags')
|
|
79
79
|
AllowedCapabilities = Shapes::StructureShape.new(name: 'AllowedCapabilities')
|
|
80
|
+
AllowedExtension = Shapes::StructureShape.new(name: 'AllowedExtension')
|
|
81
|
+
AllowedExtensionsList = Shapes::ListShape.new(name: 'AllowedExtensionsList')
|
|
80
82
|
AllowedFlowModules = Shapes::ListShape.new(name: 'AllowedFlowModules')
|
|
81
83
|
AllowedMonitorCapabilities = Shapes::ListShape.new(name: 'AllowedMonitorCapabilities')
|
|
82
84
|
AllowedUserAction = Shapes::StringShape.new(name: 'AllowedUserAction')
|
|
@@ -134,9 +136,13 @@ module Aws::Connect
|
|
|
134
136
|
AttachedFileErrorsList = Shapes::ListShape.new(name: 'AttachedFileErrorsList')
|
|
135
137
|
AttachedFileInvalidRequestExceptionReason = Shapes::StringShape.new(name: 'AttachedFileInvalidRequestExceptionReason')
|
|
136
138
|
AttachedFileServiceQuotaExceededExceptionReason = Shapes::StringShape.new(name: 'AttachedFileServiceQuotaExceededExceptionReason')
|
|
139
|
+
AttachedFilesConfiguration = Shapes::StructureShape.new(name: 'AttachedFilesConfiguration')
|
|
140
|
+
AttachedFilesConfigurationSummary = Shapes::StructureShape.new(name: 'AttachedFilesConfigurationSummary')
|
|
141
|
+
AttachedFilesConfigurationSummaryList = Shapes::ListShape.new(name: 'AttachedFilesConfigurationSummaryList')
|
|
137
142
|
AttachedFilesList = Shapes::ListShape.new(name: 'AttachedFilesList')
|
|
138
143
|
AttachmentName = Shapes::StringShape.new(name: 'AttachmentName')
|
|
139
144
|
AttachmentReference = Shapes::StructureShape.new(name: 'AttachmentReference')
|
|
145
|
+
AttachmentScope = Shapes::StringShape.new(name: 'AttachmentScope')
|
|
140
146
|
Attendee = Shapes::StructureShape.new(name: 'Attendee')
|
|
141
147
|
AttendeeId = Shapes::StringShape.new(name: 'AttendeeId')
|
|
142
148
|
Attribute = Shapes::StructureShape.new(name: 'Attribute')
|
|
@@ -535,6 +541,8 @@ module Aws::Connect
|
|
|
535
541
|
DeleteWorkspaceResponse = Shapes::StructureShape.new(name: 'DeleteWorkspaceResponse')
|
|
536
542
|
DescribeAgentStatusRequest = Shapes::StructureShape.new(name: 'DescribeAgentStatusRequest')
|
|
537
543
|
DescribeAgentStatusResponse = Shapes::StructureShape.new(name: 'DescribeAgentStatusResponse')
|
|
544
|
+
DescribeAttachedFilesConfigurationRequest = Shapes::StructureShape.new(name: 'DescribeAttachedFilesConfigurationRequest')
|
|
545
|
+
DescribeAttachedFilesConfigurationResponse = Shapes::StructureShape.new(name: 'DescribeAttachedFilesConfigurationResponse')
|
|
538
546
|
DescribeAuthenticationProfileRequest = Shapes::StructureShape.new(name: 'DescribeAuthenticationProfileRequest')
|
|
539
547
|
DescribeAuthenticationProfileResponse = Shapes::StructureShape.new(name: 'DescribeAuthenticationProfileResponse')
|
|
540
548
|
DescribeContactEvaluationRequest = Shapes::StructureShape.new(name: 'DescribeContactEvaluationRequest')
|
|
@@ -695,6 +703,7 @@ module Aws::Connect
|
|
|
695
703
|
EndpointType = Shapes::StringShape.new(name: 'EndpointType')
|
|
696
704
|
EntityArn = Shapes::StringShape.new(name: 'EntityArn')
|
|
697
705
|
EntityType = Shapes::StringShape.new(name: 'EntityType')
|
|
706
|
+
EpochMilliseconds = Shapes::IntegerShape.new(name: 'EpochMilliseconds')
|
|
698
707
|
ErrorCode = Shapes::StringShape.new(name: 'ErrorCode')
|
|
699
708
|
ErrorMessage = Shapes::StringShape.new(name: 'ErrorMessage')
|
|
700
709
|
ErrorResult = Shapes::StructureShape.new(name: 'ErrorResult')
|
|
@@ -843,6 +852,7 @@ module Aws::Connect
|
|
|
843
852
|
ExportLocation = Shapes::StringShape.new(name: 'ExportLocation')
|
|
844
853
|
Expression = Shapes::StructureShape.new(name: 'Expression')
|
|
845
854
|
Expressions = Shapes::ListShape.new(name: 'Expressions')
|
|
855
|
+
ExtensionConfiguration = Shapes::StructureShape.new(name: 'ExtensionConfiguration')
|
|
846
856
|
ExternalInvocationConfiguration = Shapes::StructureShape.new(name: 'ExternalInvocationConfiguration')
|
|
847
857
|
FailedBatchAssociationSummary = Shapes::StructureShape.new(name: 'FailedBatchAssociationSummary')
|
|
848
858
|
FailedBatchAssociationSummaryList = Shapes::ListShape.new(name: 'FailedBatchAssociationSummaryList')
|
|
@@ -854,6 +864,7 @@ module Aws::Connect
|
|
|
854
864
|
FieldValueId = Shapes::StringShape.new(name: 'FieldValueId')
|
|
855
865
|
FieldValueUnion = Shapes::StructureShape.new(name: 'FieldValueUnion')
|
|
856
866
|
FieldValues = Shapes::ListShape.new(name: 'FieldValues')
|
|
867
|
+
FileExtension = Shapes::StringShape.new(name: 'FileExtension')
|
|
857
868
|
FileId = Shapes::StringShape.new(name: 'FileId')
|
|
858
869
|
FileIdList = Shapes::ListShape.new(name: 'FileIdList')
|
|
859
870
|
FileName = Shapes::StringShape.new(name: 'FileName')
|
|
@@ -1052,6 +1063,8 @@ module Aws::Connect
|
|
|
1052
1063
|
ListAssociatedContactsRequest = Shapes::StructureShape.new(name: 'ListAssociatedContactsRequest')
|
|
1053
1064
|
ListAssociatedContactsRequestMaxResults = Shapes::IntegerShape.new(name: 'ListAssociatedContactsRequestMaxResults')
|
|
1054
1065
|
ListAssociatedContactsResponse = Shapes::StructureShape.new(name: 'ListAssociatedContactsResponse')
|
|
1066
|
+
ListAttachedFilesConfigurationsRequest = Shapes::StructureShape.new(name: 'ListAttachedFilesConfigurationsRequest')
|
|
1067
|
+
ListAttachedFilesConfigurationsResponse = Shapes::StructureShape.new(name: 'ListAttachedFilesConfigurationsResponse')
|
|
1055
1068
|
ListAuthenticationProfilesRequest = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesRequest')
|
|
1056
1069
|
ListAuthenticationProfilesResponse = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesResponse')
|
|
1057
1070
|
ListBotsRequest = Shapes::StructureShape.new(name: 'ListBotsRequest')
|
|
@@ -1196,6 +1209,7 @@ module Aws::Connect
|
|
|
1196
1209
|
MaxResult7 = Shapes::IntegerShape.new(name: 'MaxResult7')
|
|
1197
1210
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
|
1198
1211
|
MaximumResultReturnedException = Shapes::StructureShape.new(name: 'MaximumResultReturnedException')
|
|
1212
|
+
MaximumSizeLimitInBytes = Shapes::IntegerShape.new(name: 'MaximumSizeLimitInBytes')
|
|
1199
1213
|
MediaConcurrencies = Shapes::ListShape.new(name: 'MediaConcurrencies')
|
|
1200
1214
|
MediaConcurrency = Shapes::StructureShape.new(name: 'MediaConcurrency')
|
|
1201
1215
|
MediaItem = Shapes::StructureShape.new(name: 'MediaItem')
|
|
@@ -1900,6 +1914,8 @@ module Aws::Connect
|
|
|
1900
1914
|
UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
|
|
1901
1915
|
UpdateAgentStatusDescription = Shapes::StringShape.new(name: 'UpdateAgentStatusDescription')
|
|
1902
1916
|
UpdateAgentStatusRequest = Shapes::StructureShape.new(name: 'UpdateAgentStatusRequest')
|
|
1917
|
+
UpdateAttachedFilesConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateAttachedFilesConfigurationRequest')
|
|
1918
|
+
UpdateAttachedFilesConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateAttachedFilesConfigurationResponse')
|
|
1903
1919
|
UpdateAuthenticationProfileRequest = Shapes::StructureShape.new(name: 'UpdateAuthenticationProfileRequest')
|
|
1904
1920
|
UpdateCaseActionDefinition = Shapes::StructureShape.new(name: 'UpdateCaseActionDefinition')
|
|
1905
1921
|
UpdateContactAttributesRequest = Shapes::StructureShape.new(name: 'UpdateContactAttributesRequest')
|
|
@@ -2284,6 +2300,11 @@ module Aws::Connect
|
|
|
2284
2300
|
AllowedCapabilities.add_member(:agent, Shapes::ShapeRef.new(shape: ParticipantCapabilities, location_name: "Agent"))
|
|
2285
2301
|
AllowedCapabilities.struct_class = Types::AllowedCapabilities
|
|
2286
2302
|
|
|
2303
|
+
AllowedExtension.add_member(:extension, Shapes::ShapeRef.new(shape: FileExtension, required: true, location_name: "Extension"))
|
|
2304
|
+
AllowedExtension.struct_class = Types::AllowedExtension
|
|
2305
|
+
|
|
2306
|
+
AllowedExtensionsList.member = Shapes::ShapeRef.new(shape: AllowedExtension)
|
|
2307
|
+
|
|
2287
2308
|
AllowedFlowModules.member = Shapes::ShapeRef.new(shape: FlowModule)
|
|
2288
2309
|
|
|
2289
2310
|
AllowedMonitorCapabilities.member = Shapes::ShapeRef.new(shape: MonitorCapability)
|
|
@@ -2491,6 +2512,21 @@ module Aws::Connect
|
|
|
2491
2512
|
|
|
2492
2513
|
AttachedFileErrorsList.member = Shapes::ShapeRef.new(shape: AttachedFileError)
|
|
2493
2514
|
|
|
2515
|
+
AttachedFilesConfiguration.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
2516
|
+
AttachedFilesConfiguration.add_member(:attachment_scope, Shapes::ShapeRef.new(shape: AttachmentScope, required: true, location_name: "AttachmentScope"))
|
|
2517
|
+
AttachedFilesConfiguration.add_member(:maximum_size_limit_in_bytes, Shapes::ShapeRef.new(shape: MaximumSizeLimitInBytes, location_name: "MaximumSizeLimitInBytes"))
|
|
2518
|
+
AttachedFilesConfiguration.add_member(:extension_configuration, Shapes::ShapeRef.new(shape: ExtensionConfiguration, location_name: "ExtensionConfiguration"))
|
|
2519
|
+
AttachedFilesConfiguration.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastModifiedTime"))
|
|
2520
|
+
AttachedFilesConfiguration.struct_class = Types::AttachedFilesConfiguration
|
|
2521
|
+
|
|
2522
|
+
AttachedFilesConfigurationSummary.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
2523
|
+
AttachedFilesConfigurationSummary.add_member(:attachment_scope, Shapes::ShapeRef.new(shape: AttachmentScope, required: true, location_name: "AttachmentScope"))
|
|
2524
|
+
AttachedFilesConfigurationSummary.add_member(:maximum_size_limit_in_bytes, Shapes::ShapeRef.new(shape: MaximumSizeLimitInBytes, location_name: "MaximumSizeLimitInBytes"))
|
|
2525
|
+
AttachedFilesConfigurationSummary.add_member(:extension_configuration, Shapes::ShapeRef.new(shape: ExtensionConfiguration, location_name: "ExtensionConfiguration"))
|
|
2526
|
+
AttachedFilesConfigurationSummary.struct_class = Types::AttachedFilesConfigurationSummary
|
|
2527
|
+
|
|
2528
|
+
AttachedFilesConfigurationSummaryList.member = Shapes::ShapeRef.new(shape: AttachedFilesConfigurationSummary)
|
|
2529
|
+
|
|
2494
2530
|
AttachedFilesList.member = Shapes::ShapeRef.new(shape: AttachedFile)
|
|
2495
2531
|
|
|
2496
2532
|
AttachmentReference.add_member(:name, Shapes::ShapeRef.new(shape: ReferenceKey, location_name: "Name"))
|
|
@@ -4041,6 +4077,13 @@ module Aws::Connect
|
|
|
4041
4077
|
DescribeAgentStatusResponse.add_member(:agent_status, Shapes::ShapeRef.new(shape: AgentStatus, location_name: "AgentStatus"))
|
|
4042
4078
|
DescribeAgentStatusResponse.struct_class = Types::DescribeAgentStatusResponse
|
|
4043
4079
|
|
|
4080
|
+
DescribeAttachedFilesConfigurationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
4081
|
+
DescribeAttachedFilesConfigurationRequest.add_member(:attachment_scope, Shapes::ShapeRef.new(shape: AttachmentScope, required: true, location: "uri", location_name: "AttachmentScope"))
|
|
4082
|
+
DescribeAttachedFilesConfigurationRequest.struct_class = Types::DescribeAttachedFilesConfigurationRequest
|
|
4083
|
+
|
|
4084
|
+
DescribeAttachedFilesConfigurationResponse.add_member(:attached_files_configuration, Shapes::ShapeRef.new(shape: AttachedFilesConfiguration, required: true, location_name: "AttachedFilesConfiguration"))
|
|
4085
|
+
DescribeAttachedFilesConfigurationResponse.struct_class = Types::DescribeAttachedFilesConfigurationResponse
|
|
4086
|
+
|
|
4044
4087
|
DescribeAuthenticationProfileRequest.add_member(:authentication_profile_id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, required: true, location: "uri", location_name: "AuthenticationProfileId"))
|
|
4045
4088
|
DescribeAuthenticationProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
4046
4089
|
DescribeAuthenticationProfileRequest.struct_class = Types::DescribeAuthenticationProfileRequest
|
|
@@ -5055,6 +5098,9 @@ module Aws::Connect
|
|
|
5055
5098
|
|
|
5056
5099
|
Expressions.member = Shapes::ShapeRef.new(shape: Expression)
|
|
5057
5100
|
|
|
5101
|
+
ExtensionConfiguration.add_member(:allowed_extensions, Shapes::ShapeRef.new(shape: AllowedExtensionsList, required: true, location_name: "AllowedExtensions"))
|
|
5102
|
+
ExtensionConfiguration.struct_class = Types::ExtensionConfiguration
|
|
5103
|
+
|
|
5058
5104
|
ExternalInvocationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
|
|
5059
5105
|
ExternalInvocationConfiguration.struct_class = Types::ExternalInvocationConfiguration
|
|
5060
5106
|
|
|
@@ -5698,6 +5744,15 @@ module Aws::Connect
|
|
|
5698
5744
|
ListAssociatedContactsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5699
5745
|
ListAssociatedContactsResponse.struct_class = Types::ListAssociatedContactsResponse
|
|
5700
5746
|
|
|
5747
|
+
ListAttachedFilesConfigurationsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
5748
|
+
ListAttachedFilesConfigurationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults"))
|
|
5749
|
+
ListAttachedFilesConfigurationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
5750
|
+
ListAttachedFilesConfigurationsRequest.struct_class = Types::ListAttachedFilesConfigurationsRequest
|
|
5751
|
+
|
|
5752
|
+
ListAttachedFilesConfigurationsResponse.add_member(:attached_files_configurations, Shapes::ShapeRef.new(shape: AttachedFilesConfigurationSummaryList, location_name: "AttachedFilesConfigurations"))
|
|
5753
|
+
ListAttachedFilesConfigurationsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
|
|
5754
|
+
ListAttachedFilesConfigurationsResponse.struct_class = Types::ListAttachedFilesConfigurationsResponse
|
|
5755
|
+
|
|
5701
5756
|
ListAuthenticationProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
5702
5757
|
ListAuthenticationProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
|
|
5703
5758
|
ListAuthenticationProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
@@ -6225,8 +6280,8 @@ module Aws::Connect
|
|
|
6225
6280
|
ListTestCaseExecutionsRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
6226
6281
|
ListTestCaseExecutionsRequest.add_member(:test_case_id, Shapes::ShapeRef.new(shape: TestCaseId, location: "querystring", location_name: "testCaseId"))
|
|
6227
6282
|
ListTestCaseExecutionsRequest.add_member(:test_case_name, Shapes::ShapeRef.new(shape: TestCaseName, location: "querystring", location_name: "testCaseName"))
|
|
6228
|
-
ListTestCaseExecutionsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape:
|
|
6229
|
-
ListTestCaseExecutionsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape:
|
|
6283
|
+
ListTestCaseExecutionsRequest.add_member(:start_time, Shapes::ShapeRef.new(shape: EpochMilliseconds, location: "querystring", location_name: "startTime"))
|
|
6284
|
+
ListTestCaseExecutionsRequest.add_member(:end_time, Shapes::ShapeRef.new(shape: EpochMilliseconds, location: "querystring", location_name: "endTime"))
|
|
6230
6285
|
ListTestCaseExecutionsRequest.add_member(:status, Shapes::ShapeRef.new(shape: TestCaseExecutionStatus, location: "querystring", location_name: "status"))
|
|
6231
6286
|
ListTestCaseExecutionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
|
|
6232
6287
|
ListTestCaseExecutionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult100, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
|
|
@@ -8066,7 +8121,7 @@ module Aws::Connect
|
|
|
8066
8121
|
|
|
8067
8122
|
StartTestCaseExecutionRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
8068
8123
|
StartTestCaseExecutionRequest.add_member(:test_case_id, Shapes::ShapeRef.new(shape: TestCaseId, required: true, location: "uri", location_name: "TestCaseId"))
|
|
8069
|
-
StartTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
|
|
8124
|
+
StartTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
8070
8125
|
StartTestCaseExecutionRequest.struct_class = Types::StartTestCaseExecutionRequest
|
|
8071
8126
|
|
|
8072
8127
|
StartTestCaseExecutionResponse.add_member(:test_case_execution_id, Shapes::ShapeRef.new(shape: TestCaseExecutionId, location_name: "TestCaseExecutionId"))
|
|
@@ -8136,7 +8191,7 @@ module Aws::Connect
|
|
|
8136
8191
|
StopTestCaseExecutionRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
8137
8192
|
StopTestCaseExecutionRequest.add_member(:test_case_execution_id, Shapes::ShapeRef.new(shape: TestCaseExecutionId, required: true, location: "uri", location_name: "TestCaseExecutionId"))
|
|
8138
8193
|
StopTestCaseExecutionRequest.add_member(:test_case_id, Shapes::ShapeRef.new(shape: TestCaseId, required: true, location: "uri", location_name: "TestCaseId"))
|
|
8139
|
-
StopTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken"))
|
|
8194
|
+
StopTestCaseExecutionRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
|
8140
8195
|
StopTestCaseExecutionRequest.struct_class = Types::StopTestCaseExecutionRequest
|
|
8141
8196
|
|
|
8142
8197
|
StopTestCaseExecutionResponse.struct_class = Types::StopTestCaseExecutionResponse
|
|
@@ -8425,6 +8480,19 @@ module Aws::Connect
|
|
|
8425
8480
|
UpdateAgentStatusRequest.add_member(:reset_order_number, Shapes::ShapeRef.new(shape: Boolean, location_name: "ResetOrderNumber"))
|
|
8426
8481
|
UpdateAgentStatusRequest.struct_class = Types::UpdateAgentStatusRequest
|
|
8427
8482
|
|
|
8483
|
+
UpdateAttachedFilesConfigurationRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
8484
|
+
UpdateAttachedFilesConfigurationRequest.add_member(:attachment_scope, Shapes::ShapeRef.new(shape: AttachmentScope, required: true, location: "uri", location_name: "AttachmentScope"))
|
|
8485
|
+
UpdateAttachedFilesConfigurationRequest.add_member(:maximum_size_limit_in_bytes, Shapes::ShapeRef.new(shape: MaximumSizeLimitInBytes, location_name: "MaximumSizeLimitInBytes"))
|
|
8486
|
+
UpdateAttachedFilesConfigurationRequest.add_member(:extension_configuration, Shapes::ShapeRef.new(shape: ExtensionConfiguration, location_name: "ExtensionConfiguration"))
|
|
8487
|
+
UpdateAttachedFilesConfigurationRequest.struct_class = Types::UpdateAttachedFilesConfigurationRequest
|
|
8488
|
+
|
|
8489
|
+
UpdateAttachedFilesConfigurationResponse.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location_name: "InstanceId"))
|
|
8490
|
+
UpdateAttachedFilesConfigurationResponse.add_member(:attachment_scope, Shapes::ShapeRef.new(shape: AttachmentScope, required: true, location_name: "AttachmentScope"))
|
|
8491
|
+
UpdateAttachedFilesConfigurationResponse.add_member(:maximum_size_limit_in_bytes, Shapes::ShapeRef.new(shape: MaximumSizeLimitInBytes, location_name: "MaximumSizeLimitInBytes"))
|
|
8492
|
+
UpdateAttachedFilesConfigurationResponse.add_member(:extension_configuration, Shapes::ShapeRef.new(shape: ExtensionConfiguration, location_name: "ExtensionConfiguration"))
|
|
8493
|
+
UpdateAttachedFilesConfigurationResponse.add_member(:last_modified_time, Shapes::ShapeRef.new(shape: timestamp, location_name: "LastModifiedTime"))
|
|
8494
|
+
UpdateAttachedFilesConfigurationResponse.struct_class = Types::UpdateAttachedFilesConfigurationResponse
|
|
8495
|
+
|
|
8428
8496
|
UpdateAuthenticationProfileRequest.add_member(:authentication_profile_id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, required: true, location: "uri", location_name: "AuthenticationProfileId"))
|
|
8429
8497
|
UpdateAuthenticationProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
|
|
8430
8498
|
UpdateAuthenticationProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: AuthenticationProfileName, location_name: "Name"))
|
|
@@ -10909,6 +10977,19 @@ module Aws::Connect
|
|
|
10909
10977
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10910
10978
|
end)
|
|
10911
10979
|
|
|
10980
|
+
api.add_operation(:describe_attached_files_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
10981
|
+
o.name = "DescribeAttachedFilesConfiguration"
|
|
10982
|
+
o.http_method = "GET"
|
|
10983
|
+
o.http_request_uri = "/attached-files-configurations/{InstanceId}/{AttachmentScope}"
|
|
10984
|
+
o.input = Shapes::ShapeRef.new(shape: DescribeAttachedFilesConfigurationRequest)
|
|
10985
|
+
o.output = Shapes::ShapeRef.new(shape: DescribeAttachedFilesConfigurationResponse)
|
|
10986
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
10987
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
10988
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
10989
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
10990
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
10991
|
+
end)
|
|
10992
|
+
|
|
10912
10993
|
api.add_operation(:describe_authentication_profile, Seahorse::Model::Operation.new.tap do |o|
|
|
10913
10994
|
o.name = "DescribeAuthenticationProfile"
|
|
10914
10995
|
o.http_method = "GET"
|
|
@@ -11919,6 +12000,25 @@ module Aws::Connect
|
|
|
11919
12000
|
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
11920
12001
|
end)
|
|
11921
12002
|
|
|
12003
|
+
api.add_operation(:list_attached_files_configurations, Seahorse::Model::Operation.new.tap do |o|
|
|
12004
|
+
o.name = "ListAttachedFilesConfigurations"
|
|
12005
|
+
o.http_method = "GET"
|
|
12006
|
+
o.http_request_uri = "/attached-files-configurations/{InstanceId}"
|
|
12007
|
+
o.input = Shapes::ShapeRef.new(shape: ListAttachedFilesConfigurationsRequest)
|
|
12008
|
+
o.output = Shapes::ShapeRef.new(shape: ListAttachedFilesConfigurationsResponse)
|
|
12009
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
12010
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
12011
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
12012
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
12013
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
12014
|
+
o[:pager] = Aws::Pager.new(
|
|
12015
|
+
limit_key: "max_results",
|
|
12016
|
+
tokens: {
|
|
12017
|
+
"next_token" => "next_token"
|
|
12018
|
+
}
|
|
12019
|
+
)
|
|
12020
|
+
end)
|
|
12021
|
+
|
|
11922
12022
|
api.add_operation(:list_authentication_profiles, Seahorse::Model::Operation.new.tap do |o|
|
|
11923
12023
|
o.name = "ListAuthenticationProfiles"
|
|
11924
12024
|
o.http_method = "GET"
|
|
@@ -14061,6 +14161,19 @@ module Aws::Connect
|
|
|
14061
14161
|
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
14062
14162
|
end)
|
|
14063
14163
|
|
|
14164
|
+
api.add_operation(:update_attached_files_configuration, Seahorse::Model::Operation.new.tap do |o|
|
|
14165
|
+
o.name = "UpdateAttachedFilesConfiguration"
|
|
14166
|
+
o.http_method = "POST"
|
|
14167
|
+
o.http_request_uri = "/attached-files-configurations/{InstanceId}/{AttachmentScope}"
|
|
14168
|
+
o.input = Shapes::ShapeRef.new(shape: UpdateAttachedFilesConfigurationRequest)
|
|
14169
|
+
o.output = Shapes::ShapeRef.new(shape: UpdateAttachedFilesConfigurationResponse)
|
|
14170
|
+
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
14171
|
+
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
14172
|
+
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
14173
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
|
|
14174
|
+
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
14175
|
+
end)
|
|
14176
|
+
|
|
14064
14177
|
api.add_operation(:update_authentication_profile, Seahorse::Model::Operation.new.tap do |o|
|
|
14065
14178
|
o.name = "UpdateAuthenticationProfile"
|
|
14066
14179
|
o.http_method = "POST"
|
|
@@ -683,6 +683,22 @@ module Aws::Connect
|
|
|
683
683
|
include Aws::Structure
|
|
684
684
|
end
|
|
685
685
|
|
|
686
|
+
# Information about an allowed file extension.
|
|
687
|
+
#
|
|
688
|
+
# @!attribute [rw] extension
|
|
689
|
+
# The file extension. The extension must be between 1 and 10
|
|
690
|
+
# characters and can contain only alphanumeric characters, hyphens,
|
|
691
|
+
# and underscores.
|
|
692
|
+
# @return [String]
|
|
693
|
+
#
|
|
694
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AllowedExtension AWS API Documentation
|
|
695
|
+
#
|
|
696
|
+
class AllowedExtension < Struct.new(
|
|
697
|
+
:extension)
|
|
698
|
+
SENSITIVE = []
|
|
699
|
+
include Aws::Structure
|
|
700
|
+
end
|
|
701
|
+
|
|
686
702
|
# This API is in preview release for Amazon Connect and is subject to
|
|
687
703
|
# change.
|
|
688
704
|
#
|
|
@@ -1773,6 +1789,72 @@ module Aws::Connect
|
|
|
1773
1789
|
include Aws::Structure
|
|
1774
1790
|
end
|
|
1775
1791
|
|
|
1792
|
+
# The configuration for attached files for a specific attachment scope.
|
|
1793
|
+
#
|
|
1794
|
+
# @!attribute [rw] instance_id
|
|
1795
|
+
# The identifier of the Amazon Connect instance.
|
|
1796
|
+
# @return [String]
|
|
1797
|
+
#
|
|
1798
|
+
# @!attribute [rw] attachment_scope
|
|
1799
|
+
# The scope of the attachment. Valid values are `EMAIL`, `CHAT`,
|
|
1800
|
+
# `CASE`, and `TASK`.
|
|
1801
|
+
# @return [String]
|
|
1802
|
+
#
|
|
1803
|
+
# @!attribute [rw] maximum_size_limit_in_bytes
|
|
1804
|
+
# The maximum size limit for attached files in bytes.
|
|
1805
|
+
# @return [Integer]
|
|
1806
|
+
#
|
|
1807
|
+
# @!attribute [rw] extension_configuration
|
|
1808
|
+
# The configuration for allowed file extensions.
|
|
1809
|
+
# @return [Types::ExtensionConfiguration]
|
|
1810
|
+
#
|
|
1811
|
+
# @!attribute [rw] last_modified_time
|
|
1812
|
+
# The timestamp when the configuration was last modified.
|
|
1813
|
+
# @return [Time]
|
|
1814
|
+
#
|
|
1815
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachedFilesConfiguration AWS API Documentation
|
|
1816
|
+
#
|
|
1817
|
+
class AttachedFilesConfiguration < Struct.new(
|
|
1818
|
+
:instance_id,
|
|
1819
|
+
:attachment_scope,
|
|
1820
|
+
:maximum_size_limit_in_bytes,
|
|
1821
|
+
:extension_configuration,
|
|
1822
|
+
:last_modified_time)
|
|
1823
|
+
SENSITIVE = []
|
|
1824
|
+
include Aws::Structure
|
|
1825
|
+
end
|
|
1826
|
+
|
|
1827
|
+
# A summary of the attached files configuration.
|
|
1828
|
+
#
|
|
1829
|
+
# @!attribute [rw] instance_id
|
|
1830
|
+
# The identifier of the Amazon Connect instance.
|
|
1831
|
+
# @return [String]
|
|
1832
|
+
#
|
|
1833
|
+
# @!attribute [rw] attachment_scope
|
|
1834
|
+
# The scope of the attachment. Valid values are `EMAIL`, `CHAT`,
|
|
1835
|
+
# `CASE`, and `TASK`.
|
|
1836
|
+
# @return [String]
|
|
1837
|
+
#
|
|
1838
|
+
# @!attribute [rw] maximum_size_limit_in_bytes
|
|
1839
|
+
# The maximum size limit for attached files in bytes. The minimum
|
|
1840
|
+
# value is 1 and the maximum value is 104857600 (100 MB).
|
|
1841
|
+
# @return [Integer]
|
|
1842
|
+
#
|
|
1843
|
+
# @!attribute [rw] extension_configuration
|
|
1844
|
+
# The configuration for allowed file extensions.
|
|
1845
|
+
# @return [Types::ExtensionConfiguration]
|
|
1846
|
+
#
|
|
1847
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/AttachedFilesConfigurationSummary AWS API Documentation
|
|
1848
|
+
#
|
|
1849
|
+
class AttachedFilesConfigurationSummary < Struct.new(
|
|
1850
|
+
:instance_id,
|
|
1851
|
+
:attachment_scope,
|
|
1852
|
+
:maximum_size_limit_in_bytes,
|
|
1853
|
+
:extension_configuration)
|
|
1854
|
+
SENSITIVE = []
|
|
1855
|
+
include Aws::Structure
|
|
1856
|
+
end
|
|
1857
|
+
|
|
1776
1858
|
# Information about a reference when the `referenceType` is
|
|
1777
1859
|
# `ATTACHMENT`. Otherwise, null.
|
|
1778
1860
|
#
|
|
@@ -9697,6 +9779,41 @@ module Aws::Connect
|
|
|
9697
9779
|
include Aws::Structure
|
|
9698
9780
|
end
|
|
9699
9781
|
|
|
9782
|
+
# @!attribute [rw] instance_id
|
|
9783
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
9784
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
9785
|
+
#
|
|
9786
|
+
#
|
|
9787
|
+
#
|
|
9788
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
9789
|
+
# @return [String]
|
|
9790
|
+
#
|
|
9791
|
+
# @!attribute [rw] attachment_scope
|
|
9792
|
+
# The scope of the attachment. Valid values are `EMAIL`, `CHAT`,
|
|
9793
|
+
# `CASE`, and `TASK`.
|
|
9794
|
+
# @return [String]
|
|
9795
|
+
#
|
|
9796
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAttachedFilesConfigurationRequest AWS API Documentation
|
|
9797
|
+
#
|
|
9798
|
+
class DescribeAttachedFilesConfigurationRequest < Struct.new(
|
|
9799
|
+
:instance_id,
|
|
9800
|
+
:attachment_scope)
|
|
9801
|
+
SENSITIVE = []
|
|
9802
|
+
include Aws::Structure
|
|
9803
|
+
end
|
|
9804
|
+
|
|
9805
|
+
# @!attribute [rw] attached_files_configuration
|
|
9806
|
+
# Information about the attached files configuration.
|
|
9807
|
+
# @return [Types::AttachedFilesConfiguration]
|
|
9808
|
+
#
|
|
9809
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/DescribeAttachedFilesConfigurationResponse AWS API Documentation
|
|
9810
|
+
#
|
|
9811
|
+
class DescribeAttachedFilesConfigurationResponse < Struct.new(
|
|
9812
|
+
:attached_files_configuration)
|
|
9813
|
+
SENSITIVE = []
|
|
9814
|
+
include Aws::Structure
|
|
9815
|
+
end
|
|
9816
|
+
|
|
9700
9817
|
# @!attribute [rw] authentication_profile_id
|
|
9701
9818
|
# A unique identifier for the authentication profile.
|
|
9702
9819
|
# @return [String]
|
|
@@ -14340,6 +14457,20 @@ module Aws::Connect
|
|
|
14340
14457
|
include Aws::Structure
|
|
14341
14458
|
end
|
|
14342
14459
|
|
|
14460
|
+
# The configuration for allowed file extensions.
|
|
14461
|
+
#
|
|
14462
|
+
# @!attribute [rw] allowed_extensions
|
|
14463
|
+
# The list of allowed file extensions.
|
|
14464
|
+
# @return [Array<Types::AllowedExtension>]
|
|
14465
|
+
#
|
|
14466
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ExtensionConfiguration AWS API Documentation
|
|
14467
|
+
#
|
|
14468
|
+
class ExtensionConfiguration < Struct.new(
|
|
14469
|
+
:allowed_extensions)
|
|
14470
|
+
SENSITIVE = []
|
|
14471
|
+
include Aws::Structure
|
|
14472
|
+
end
|
|
14473
|
+
|
|
14343
14474
|
# The external invocation configuration for the flow module
|
|
14344
14475
|
#
|
|
14345
14476
|
# @!attribute [rw] enabled
|
|
@@ -20212,6 +20343,54 @@ module Aws::Connect
|
|
|
20212
20343
|
include Aws::Structure
|
|
20213
20344
|
end
|
|
20214
20345
|
|
|
20346
|
+
# @!attribute [rw] instance_id
|
|
20347
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
20348
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
20349
|
+
#
|
|
20350
|
+
#
|
|
20351
|
+
#
|
|
20352
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
20353
|
+
# @return [String]
|
|
20354
|
+
#
|
|
20355
|
+
# @!attribute [rw] max_results
|
|
20356
|
+
# The maximum number of results to return per page. The default
|
|
20357
|
+
# MaxResult size is 100.
|
|
20358
|
+
# @return [Integer]
|
|
20359
|
+
#
|
|
20360
|
+
# @!attribute [rw] next_token
|
|
20361
|
+
# The token for the next set of results. Use the value returned in the
|
|
20362
|
+
# previous response in the next request to retrieve the next set of
|
|
20363
|
+
# results.
|
|
20364
|
+
# @return [String]
|
|
20365
|
+
#
|
|
20366
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAttachedFilesConfigurationsRequest AWS API Documentation
|
|
20367
|
+
#
|
|
20368
|
+
class ListAttachedFilesConfigurationsRequest < Struct.new(
|
|
20369
|
+
:instance_id,
|
|
20370
|
+
:max_results,
|
|
20371
|
+
:next_token)
|
|
20372
|
+
SENSITIVE = []
|
|
20373
|
+
include Aws::Structure
|
|
20374
|
+
end
|
|
20375
|
+
|
|
20376
|
+
# @!attribute [rw] attached_files_configurations
|
|
20377
|
+
# Information about the attached files configurations.
|
|
20378
|
+
# @return [Array<Types::AttachedFilesConfigurationSummary>]
|
|
20379
|
+
#
|
|
20380
|
+
# @!attribute [rw] next_token
|
|
20381
|
+
# If there are additional results, this is the token for the next set
|
|
20382
|
+
# of results.
|
|
20383
|
+
# @return [String]
|
|
20384
|
+
#
|
|
20385
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/ListAttachedFilesConfigurationsResponse AWS API Documentation
|
|
20386
|
+
#
|
|
20387
|
+
class ListAttachedFilesConfigurationsResponse < Struct.new(
|
|
20388
|
+
:attached_files_configurations,
|
|
20389
|
+
:next_token)
|
|
20390
|
+
SENSITIVE = []
|
|
20391
|
+
include Aws::Structure
|
|
20392
|
+
end
|
|
20393
|
+
|
|
20215
20394
|
# @!attribute [rw] instance_id
|
|
20216
20395
|
# The identifier of the Amazon Connect instance. You can [find the
|
|
20217
20396
|
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
@@ -23006,11 +23185,11 @@ module Aws::Connect
|
|
|
23006
23185
|
#
|
|
23007
23186
|
# @!attribute [rw] start_time
|
|
23008
23187
|
# Filter executions that started after this time.
|
|
23009
|
-
# @return [
|
|
23188
|
+
# @return [Integer]
|
|
23010
23189
|
#
|
|
23011
23190
|
# @!attribute [rw] end_time
|
|
23012
23191
|
# Filter executions that started before this time.
|
|
23013
|
-
# @return [
|
|
23192
|
+
# @return [Integer]
|
|
23014
23193
|
#
|
|
23015
23194
|
# @!attribute [rw] status
|
|
23016
23195
|
# Filter executions by status.
|
|
@@ -32088,6 +32267,9 @@ module Aws::Connect
|
|
|
32088
32267
|
# SDK populates this field. For more information about idempotency,
|
|
32089
32268
|
# see [Making retries safe with idempotent APIs][1].
|
|
32090
32269
|
#
|
|
32270
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
32271
|
+
# not need to pass this option.
|
|
32272
|
+
#
|
|
32091
32273
|
#
|
|
32092
32274
|
#
|
|
32093
32275
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
@@ -32451,6 +32633,9 @@ module Aws::Connect
|
|
|
32451
32633
|
# SDK populates this field. For more information about idempotency,
|
|
32452
32634
|
# see [Making retries safe with idempotent APIs][1].
|
|
32453
32635
|
#
|
|
32636
|
+
# **A suitable default value is auto-generated.** You should normally
|
|
32637
|
+
# not need to pass this option.
|
|
32638
|
+
#
|
|
32454
32639
|
#
|
|
32455
32640
|
#
|
|
32456
32641
|
# [1]: https://aws.amazon.com/builders-library/making-retries-safe-with-idempotent-APIs/
|
|
@@ -33100,7 +33285,8 @@ module Aws::Connect
|
|
|
33100
33285
|
# @return [Types::TestCaseEntryPoint]
|
|
33101
33286
|
#
|
|
33102
33287
|
# @!attribute [rw] initialization_data
|
|
33103
|
-
# Defines the test attributes for precise data representation.
|
|
33288
|
+
# Defines the test attributes for precise data representation. The
|
|
33289
|
+
# value must be a valid JSON string.
|
|
33104
33290
|
# @return [String]
|
|
33105
33291
|
#
|
|
33106
33292
|
# @!attribute [rw] description
|
|
@@ -33767,6 +33953,72 @@ module Aws::Connect
|
|
|
33767
33953
|
include Aws::Structure
|
|
33768
33954
|
end
|
|
33769
33955
|
|
|
33956
|
+
# @!attribute [rw] instance_id
|
|
33957
|
+
# The identifier of the Amazon Connect instance. You can [find the
|
|
33958
|
+
# instance ID][1] in the Amazon Resource Name (ARN) of the instance.
|
|
33959
|
+
#
|
|
33960
|
+
#
|
|
33961
|
+
#
|
|
33962
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/find-instance-arn.html
|
|
33963
|
+
# @return [String]
|
|
33964
|
+
#
|
|
33965
|
+
# @!attribute [rw] attachment_scope
|
|
33966
|
+
# The scope of the attachment. Valid values are `EMAIL`, `CHAT`,
|
|
33967
|
+
# `CASE`, and `TASK`.
|
|
33968
|
+
# @return [String]
|
|
33969
|
+
#
|
|
33970
|
+
# @!attribute [rw] maximum_size_limit_in_bytes
|
|
33971
|
+
# The maximum size limit for attached files in bytes. The minimum
|
|
33972
|
+
# value is 1 and the maximum value is 104857600 (100 MB).
|
|
33973
|
+
# @return [Integer]
|
|
33974
|
+
#
|
|
33975
|
+
# @!attribute [rw] extension_configuration
|
|
33976
|
+
# The configuration for allowed file extensions.
|
|
33977
|
+
# @return [Types::ExtensionConfiguration]
|
|
33978
|
+
#
|
|
33979
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAttachedFilesConfigurationRequest AWS API Documentation
|
|
33980
|
+
#
|
|
33981
|
+
class UpdateAttachedFilesConfigurationRequest < Struct.new(
|
|
33982
|
+
:instance_id,
|
|
33983
|
+
:attachment_scope,
|
|
33984
|
+
:maximum_size_limit_in_bytes,
|
|
33985
|
+
:extension_configuration)
|
|
33986
|
+
SENSITIVE = []
|
|
33987
|
+
include Aws::Structure
|
|
33988
|
+
end
|
|
33989
|
+
|
|
33990
|
+
# @!attribute [rw] instance_id
|
|
33991
|
+
# The identifier of the Amazon Connect instance.
|
|
33992
|
+
# @return [String]
|
|
33993
|
+
#
|
|
33994
|
+
# @!attribute [rw] attachment_scope
|
|
33995
|
+
# The scope of the attachment.
|
|
33996
|
+
# @return [String]
|
|
33997
|
+
#
|
|
33998
|
+
# @!attribute [rw] maximum_size_limit_in_bytes
|
|
33999
|
+
# The maximum size limit for attached files in bytes.
|
|
34000
|
+
# @return [Integer]
|
|
34001
|
+
#
|
|
34002
|
+
# @!attribute [rw] extension_configuration
|
|
34003
|
+
# The configuration for allowed file extensions.
|
|
34004
|
+
# @return [Types::ExtensionConfiguration]
|
|
34005
|
+
#
|
|
34006
|
+
# @!attribute [rw] last_modified_time
|
|
34007
|
+
# The timestamp when the configuration was last modified.
|
|
34008
|
+
# @return [Time]
|
|
34009
|
+
#
|
|
34010
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/connect-2017-08-08/UpdateAttachedFilesConfigurationResponse AWS API Documentation
|
|
34011
|
+
#
|
|
34012
|
+
class UpdateAttachedFilesConfigurationResponse < Struct.new(
|
|
34013
|
+
:instance_id,
|
|
34014
|
+
:attachment_scope,
|
|
34015
|
+
:maximum_size_limit_in_bytes,
|
|
34016
|
+
:extension_configuration,
|
|
34017
|
+
:last_modified_time)
|
|
34018
|
+
SENSITIVE = []
|
|
34019
|
+
include Aws::Structure
|
|
34020
|
+
end
|
|
34021
|
+
|
|
33770
34022
|
# @!attribute [rw] authentication_profile_id
|
|
33771
34023
|
# A unique identifier for the authentication profile.
|
|
33772
34024
|
# @return [String]
|
data/lib/aws-sdk-connect.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -2153,6 +2153,17 @@ module Aws
|
|
|
2153
2153
|
) -> _DescribeAgentStatusResponseSuccess
|
|
2154
2154
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAgentStatusResponseSuccess
|
|
2155
2155
|
|
|
2156
|
+
interface _DescribeAttachedFilesConfigurationResponseSuccess
|
|
2157
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAttachedFilesConfigurationResponse]
|
|
2158
|
+
def attached_files_configuration: () -> Types::AttachedFilesConfiguration
|
|
2159
|
+
end
|
|
2160
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#describe_attached_files_configuration-instance_method
|
|
2161
|
+
def describe_attached_files_configuration: (
|
|
2162
|
+
instance_id: ::String,
|
|
2163
|
+
attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
2164
|
+
) -> _DescribeAttachedFilesConfigurationResponseSuccess
|
|
2165
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeAttachedFilesConfigurationResponseSuccess
|
|
2166
|
+
|
|
2156
2167
|
interface _DescribeAuthenticationProfileResponseSuccess
|
|
2157
2168
|
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeAuthenticationProfileResponse]
|
|
2158
2169
|
def authentication_profile: () -> Types::AuthenticationProfile
|
|
@@ -3145,6 +3156,19 @@ module Aws
|
|
|
3145
3156
|
) -> _ListAssociatedContactsResponseSuccess
|
|
3146
3157
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAssociatedContactsResponseSuccess
|
|
3147
3158
|
|
|
3159
|
+
interface _ListAttachedFilesConfigurationsResponseSuccess
|
|
3160
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListAttachedFilesConfigurationsResponse]
|
|
3161
|
+
def attached_files_configurations: () -> ::Array[Types::AttachedFilesConfigurationSummary]
|
|
3162
|
+
def next_token: () -> ::String
|
|
3163
|
+
end
|
|
3164
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#list_attached_files_configurations-instance_method
|
|
3165
|
+
def list_attached_files_configurations: (
|
|
3166
|
+
instance_id: ::String,
|
|
3167
|
+
?max_results: ::Integer,
|
|
3168
|
+
?next_token: ::String
|
|
3169
|
+
) -> _ListAttachedFilesConfigurationsResponseSuccess
|
|
3170
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAttachedFilesConfigurationsResponseSuccess
|
|
3171
|
+
|
|
3148
3172
|
interface _ListAuthenticationProfilesResponseSuccess
|
|
3149
3173
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListAuthenticationProfilesResponse]
|
|
3150
3174
|
def authentication_profile_summary_list: () -> ::Array[Types::AuthenticationProfileSummary]
|
|
@@ -3868,8 +3892,8 @@ module Aws
|
|
|
3868
3892
|
instance_id: ::String,
|
|
3869
3893
|
?test_case_id: ::String,
|
|
3870
3894
|
?test_case_name: ::String,
|
|
3871
|
-
?start_time: ::
|
|
3872
|
-
?end_time: ::
|
|
3895
|
+
?start_time: ::Integer,
|
|
3896
|
+
?end_time: ::Integer,
|
|
3873
3897
|
?status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED"),
|
|
3874
3898
|
?next_token: ::String,
|
|
3875
3899
|
?max_results: ::Integer
|
|
@@ -6214,6 +6238,29 @@ module Aws
|
|
|
6214
6238
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
6215
6239
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
|
6216
6240
|
|
|
6241
|
+
interface _UpdateAttachedFilesConfigurationResponseSuccess
|
|
6242
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateAttachedFilesConfigurationResponse]
|
|
6243
|
+
def instance_id: () -> ::String
|
|
6244
|
+
def attachment_scope: () -> ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
6245
|
+
def maximum_size_limit_in_bytes: () -> ::Integer
|
|
6246
|
+
def extension_configuration: () -> Types::ExtensionConfiguration
|
|
6247
|
+
def last_modified_time: () -> ::Time
|
|
6248
|
+
end
|
|
6249
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_attached_files_configuration-instance_method
|
|
6250
|
+
def update_attached_files_configuration: (
|
|
6251
|
+
instance_id: ::String,
|
|
6252
|
+
attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK"),
|
|
6253
|
+
?maximum_size_limit_in_bytes: ::Integer,
|
|
6254
|
+
?extension_configuration: {
|
|
6255
|
+
allowed_extensions: Array[
|
|
6256
|
+
{
|
|
6257
|
+
extension: ::String
|
|
6258
|
+
},
|
|
6259
|
+
]
|
|
6260
|
+
}
|
|
6261
|
+
) -> _UpdateAttachedFilesConfigurationResponseSuccess
|
|
6262
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAttachedFilesConfigurationResponseSuccess
|
|
6263
|
+
|
|
6217
6264
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Connect/Client.html#update_authentication_profile-instance_method
|
|
6218
6265
|
def update_authentication_profile: (
|
|
6219
6266
|
authentication_profile_id: ::String,
|
data/sig/types.rbs
CHANGED
|
@@ -180,6 +180,11 @@ module Aws::Connect
|
|
|
180
180
|
SENSITIVE: []
|
|
181
181
|
end
|
|
182
182
|
|
|
183
|
+
class AllowedExtension
|
|
184
|
+
attr_accessor extension: ::String
|
|
185
|
+
SENSITIVE: []
|
|
186
|
+
end
|
|
187
|
+
|
|
183
188
|
class AnalyticsDataAssociationResult
|
|
184
189
|
attr_accessor data_set_id: ::String
|
|
185
190
|
attr_accessor target_account_id: ::String
|
|
@@ -437,6 +442,23 @@ module Aws::Connect
|
|
|
437
442
|
SENSITIVE: []
|
|
438
443
|
end
|
|
439
444
|
|
|
445
|
+
class AttachedFilesConfiguration
|
|
446
|
+
attr_accessor instance_id: ::String
|
|
447
|
+
attr_accessor attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
448
|
+
attr_accessor maximum_size_limit_in_bytes: ::Integer
|
|
449
|
+
attr_accessor extension_configuration: Types::ExtensionConfiguration
|
|
450
|
+
attr_accessor last_modified_time: ::Time
|
|
451
|
+
SENSITIVE: []
|
|
452
|
+
end
|
|
453
|
+
|
|
454
|
+
class AttachedFilesConfigurationSummary
|
|
455
|
+
attr_accessor instance_id: ::String
|
|
456
|
+
attr_accessor attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
457
|
+
attr_accessor maximum_size_limit_in_bytes: ::Integer
|
|
458
|
+
attr_accessor extension_configuration: Types::ExtensionConfiguration
|
|
459
|
+
SENSITIVE: []
|
|
460
|
+
end
|
|
461
|
+
|
|
440
462
|
class AttachmentReference
|
|
441
463
|
attr_accessor name: ::String
|
|
442
464
|
attr_accessor value: ::String
|
|
@@ -2360,6 +2382,17 @@ module Aws::Connect
|
|
|
2360
2382
|
SENSITIVE: []
|
|
2361
2383
|
end
|
|
2362
2384
|
|
|
2385
|
+
class DescribeAttachedFilesConfigurationRequest
|
|
2386
|
+
attr_accessor instance_id: ::String
|
|
2387
|
+
attr_accessor attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
2388
|
+
SENSITIVE: []
|
|
2389
|
+
end
|
|
2390
|
+
|
|
2391
|
+
class DescribeAttachedFilesConfigurationResponse
|
|
2392
|
+
attr_accessor attached_files_configuration: Types::AttachedFilesConfiguration
|
|
2393
|
+
SENSITIVE: []
|
|
2394
|
+
end
|
|
2395
|
+
|
|
2363
2396
|
class DescribeAuthenticationProfileRequest
|
|
2364
2397
|
attr_accessor authentication_profile_id: ::String
|
|
2365
2398
|
attr_accessor instance_id: ::String
|
|
@@ -3684,6 +3717,11 @@ module Aws::Connect
|
|
|
3684
3717
|
SENSITIVE: []
|
|
3685
3718
|
end
|
|
3686
3719
|
|
|
3720
|
+
class ExtensionConfiguration
|
|
3721
|
+
attr_accessor allowed_extensions: ::Array[Types::AllowedExtension]
|
|
3722
|
+
SENSITIVE: []
|
|
3723
|
+
end
|
|
3724
|
+
|
|
3687
3725
|
class ExternalInvocationConfiguration
|
|
3688
3726
|
attr_accessor enabled: bool
|
|
3689
3727
|
SENSITIVE: []
|
|
@@ -4483,6 +4521,19 @@ module Aws::Connect
|
|
|
4483
4521
|
SENSITIVE: []
|
|
4484
4522
|
end
|
|
4485
4523
|
|
|
4524
|
+
class ListAttachedFilesConfigurationsRequest
|
|
4525
|
+
attr_accessor instance_id: ::String
|
|
4526
|
+
attr_accessor max_results: ::Integer
|
|
4527
|
+
attr_accessor next_token: ::String
|
|
4528
|
+
SENSITIVE: []
|
|
4529
|
+
end
|
|
4530
|
+
|
|
4531
|
+
class ListAttachedFilesConfigurationsResponse
|
|
4532
|
+
attr_accessor attached_files_configurations: ::Array[Types::AttachedFilesConfigurationSummary]
|
|
4533
|
+
attr_accessor next_token: ::String
|
|
4534
|
+
SENSITIVE: []
|
|
4535
|
+
end
|
|
4536
|
+
|
|
4486
4537
|
class ListAuthenticationProfilesRequest
|
|
4487
4538
|
attr_accessor instance_id: ::String
|
|
4488
4539
|
attr_accessor max_results: ::Integer
|
|
@@ -5209,8 +5260,8 @@ module Aws::Connect
|
|
|
5209
5260
|
attr_accessor instance_id: ::String
|
|
5210
5261
|
attr_accessor test_case_id: ::String
|
|
5211
5262
|
attr_accessor test_case_name: ::String
|
|
5212
|
-
attr_accessor start_time: ::
|
|
5213
|
-
attr_accessor end_time: ::
|
|
5263
|
+
attr_accessor start_time: ::Integer
|
|
5264
|
+
attr_accessor end_time: ::Integer
|
|
5214
5265
|
attr_accessor status: ("INITIATED" | "PASSED" | "FAILED" | "IN_PROGRESS" | "STOPPED")
|
|
5215
5266
|
attr_accessor next_token: ::String
|
|
5216
5267
|
attr_accessor max_results: ::Integer
|
|
@@ -7871,6 +7922,23 @@ module Aws::Connect
|
|
|
7871
7922
|
SENSITIVE: []
|
|
7872
7923
|
end
|
|
7873
7924
|
|
|
7925
|
+
class UpdateAttachedFilesConfigurationRequest
|
|
7926
|
+
attr_accessor instance_id: ::String
|
|
7927
|
+
attr_accessor attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
7928
|
+
attr_accessor maximum_size_limit_in_bytes: ::Integer
|
|
7929
|
+
attr_accessor extension_configuration: Types::ExtensionConfiguration
|
|
7930
|
+
SENSITIVE: []
|
|
7931
|
+
end
|
|
7932
|
+
|
|
7933
|
+
class UpdateAttachedFilesConfigurationResponse
|
|
7934
|
+
attr_accessor instance_id: ::String
|
|
7935
|
+
attr_accessor attachment_scope: ("EMAIL" | "CHAT" | "CASE" | "TASK")
|
|
7936
|
+
attr_accessor maximum_size_limit_in_bytes: ::Integer
|
|
7937
|
+
attr_accessor extension_configuration: Types::ExtensionConfiguration
|
|
7938
|
+
attr_accessor last_modified_time: ::Time
|
|
7939
|
+
SENSITIVE: []
|
|
7940
|
+
end
|
|
7941
|
+
|
|
7874
7942
|
class UpdateAuthenticationProfileRequest
|
|
7875
7943
|
attr_accessor authentication_profile_id: ::String
|
|
7876
7944
|
attr_accessor instance_id: ::String
|