aws-sdk-connect 1.253.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: be812616ea511f85efb066439ad4eab1fe4c037235474fb9c25c21a144871de1
4
- data.tar.gz: ed8a4b9eb66081a23b7857b762ff68b95e5344c4e779f88a38ac10e8594fa28e
3
+ metadata.gz: d1b31b3d041c85340711c76b88f629fd5aa18bef3080ea72fc1311893925e2d9
4
+ data.tar.gz: d70ed16f01fe9a08180ce0ba98db4ecda6f5c21db69e9f06a96478ed5fc5b6e1
5
5
  SHA512:
6
- metadata.gz: 3d9610b83ac97d5066d46f49f43967aa23c0687d04bc46bdc1c74b8684ccba67ec20cdbd7b947203db3c04feb2d27c32ec06fac1b5f9490e6b3c1a50c2e76fd0
7
- data.tar.gz: 783ed184b08077dcfdcfc25f8a2b0c88a21537770da1a9b92c5e9ed14e9f1737610bcf071d14df2921addebc9a94f49c53e1f5cbb266dc37db45a566ba5c4fd9
6
+ metadata.gz: 7c83434f3e83aba4a76135959c9becf66219131e91d6bbd81525ea66c15e3dd1702fc1c75521ded545e24ccb1a90e4095582a3f0b56708b831936fa60d0ec9b5
7
+ data.tar.gz: f55abe3c9ca81c361467b359091f54fb4dcf9c6631fc04e81c6f08aaa7b6c07c3c548c0cb85d51174051fa88a18620fa89bfeabf247f32d7eea7467f757c4ca5
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.253.0 (2026-04-17)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.253.0
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.
@@ -24822,6 +24929,73 @@ module Aws::Connect
24822
24929
  req.send_request(options)
24823
24930
  end
24824
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
+
24825
24999
  # This API is in preview release for Amazon Connect and is subject to
24826
25000
  # change. To request access to this API, contact Amazon Web Services
24827
25001
  # Support.
@@ -28902,7 +29076,7 @@ module Aws::Connect
28902
29076
  tracer: tracer
28903
29077
  )
28904
29078
  context[:gem_name] = 'aws-sdk-connect'
28905
- context[:gem_version] = '1.253.0'
29079
+ context[:gem_version] = '1.254.0'
28906
29080
  Seahorse::Client::Request.new(handlers, context)
28907
29081
  end
28908
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')
@@ -844,6 +852,7 @@ module Aws::Connect
844
852
  ExportLocation = Shapes::StringShape.new(name: 'ExportLocation')
845
853
  Expression = Shapes::StructureShape.new(name: 'Expression')
846
854
  Expressions = Shapes::ListShape.new(name: 'Expressions')
855
+ ExtensionConfiguration = Shapes::StructureShape.new(name: 'ExtensionConfiguration')
847
856
  ExternalInvocationConfiguration = Shapes::StructureShape.new(name: 'ExternalInvocationConfiguration')
848
857
  FailedBatchAssociationSummary = Shapes::StructureShape.new(name: 'FailedBatchAssociationSummary')
849
858
  FailedBatchAssociationSummaryList = Shapes::ListShape.new(name: 'FailedBatchAssociationSummaryList')
@@ -855,6 +864,7 @@ module Aws::Connect
855
864
  FieldValueId = Shapes::StringShape.new(name: 'FieldValueId')
856
865
  FieldValueUnion = Shapes::StructureShape.new(name: 'FieldValueUnion')
857
866
  FieldValues = Shapes::ListShape.new(name: 'FieldValues')
867
+ FileExtension = Shapes::StringShape.new(name: 'FileExtension')
858
868
  FileId = Shapes::StringShape.new(name: 'FileId')
859
869
  FileIdList = Shapes::ListShape.new(name: 'FileIdList')
860
870
  FileName = Shapes::StringShape.new(name: 'FileName')
@@ -1053,6 +1063,8 @@ module Aws::Connect
1053
1063
  ListAssociatedContactsRequest = Shapes::StructureShape.new(name: 'ListAssociatedContactsRequest')
1054
1064
  ListAssociatedContactsRequestMaxResults = Shapes::IntegerShape.new(name: 'ListAssociatedContactsRequestMaxResults')
1055
1065
  ListAssociatedContactsResponse = Shapes::StructureShape.new(name: 'ListAssociatedContactsResponse')
1066
+ ListAttachedFilesConfigurationsRequest = Shapes::StructureShape.new(name: 'ListAttachedFilesConfigurationsRequest')
1067
+ ListAttachedFilesConfigurationsResponse = Shapes::StructureShape.new(name: 'ListAttachedFilesConfigurationsResponse')
1056
1068
  ListAuthenticationProfilesRequest = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesRequest')
1057
1069
  ListAuthenticationProfilesResponse = Shapes::StructureShape.new(name: 'ListAuthenticationProfilesResponse')
1058
1070
  ListBotsRequest = Shapes::StructureShape.new(name: 'ListBotsRequest')
@@ -1197,6 +1209,7 @@ module Aws::Connect
1197
1209
  MaxResult7 = Shapes::IntegerShape.new(name: 'MaxResult7')
1198
1210
  MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
1199
1211
  MaximumResultReturnedException = Shapes::StructureShape.new(name: 'MaximumResultReturnedException')
1212
+ MaximumSizeLimitInBytes = Shapes::IntegerShape.new(name: 'MaximumSizeLimitInBytes')
1200
1213
  MediaConcurrencies = Shapes::ListShape.new(name: 'MediaConcurrencies')
1201
1214
  MediaConcurrency = Shapes::StructureShape.new(name: 'MediaConcurrency')
1202
1215
  MediaItem = Shapes::StructureShape.new(name: 'MediaItem')
@@ -1901,6 +1914,8 @@ module Aws::Connect
1901
1914
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
1902
1915
  UpdateAgentStatusDescription = Shapes::StringShape.new(name: 'UpdateAgentStatusDescription')
1903
1916
  UpdateAgentStatusRequest = Shapes::StructureShape.new(name: 'UpdateAgentStatusRequest')
1917
+ UpdateAttachedFilesConfigurationRequest = Shapes::StructureShape.new(name: 'UpdateAttachedFilesConfigurationRequest')
1918
+ UpdateAttachedFilesConfigurationResponse = Shapes::StructureShape.new(name: 'UpdateAttachedFilesConfigurationResponse')
1904
1919
  UpdateAuthenticationProfileRequest = Shapes::StructureShape.new(name: 'UpdateAuthenticationProfileRequest')
1905
1920
  UpdateCaseActionDefinition = Shapes::StructureShape.new(name: 'UpdateCaseActionDefinition')
1906
1921
  UpdateContactAttributesRequest = Shapes::StructureShape.new(name: 'UpdateContactAttributesRequest')
@@ -2285,6 +2300,11 @@ module Aws::Connect
2285
2300
  AllowedCapabilities.add_member(:agent, Shapes::ShapeRef.new(shape: ParticipantCapabilities, location_name: "Agent"))
2286
2301
  AllowedCapabilities.struct_class = Types::AllowedCapabilities
2287
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
+
2288
2308
  AllowedFlowModules.member = Shapes::ShapeRef.new(shape: FlowModule)
2289
2309
 
2290
2310
  AllowedMonitorCapabilities.member = Shapes::ShapeRef.new(shape: MonitorCapability)
@@ -2492,6 +2512,21 @@ module Aws::Connect
2492
2512
 
2493
2513
  AttachedFileErrorsList.member = Shapes::ShapeRef.new(shape: AttachedFileError)
2494
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
+
2495
2530
  AttachedFilesList.member = Shapes::ShapeRef.new(shape: AttachedFile)
2496
2531
 
2497
2532
  AttachmentReference.add_member(:name, Shapes::ShapeRef.new(shape: ReferenceKey, location_name: "Name"))
@@ -4042,6 +4077,13 @@ module Aws::Connect
4042
4077
  DescribeAgentStatusResponse.add_member(:agent_status, Shapes::ShapeRef.new(shape: AgentStatus, location_name: "AgentStatus"))
4043
4078
  DescribeAgentStatusResponse.struct_class = Types::DescribeAgentStatusResponse
4044
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
+
4045
4087
  DescribeAuthenticationProfileRequest.add_member(:authentication_profile_id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, required: true, location: "uri", location_name: "AuthenticationProfileId"))
4046
4088
  DescribeAuthenticationProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
4047
4089
  DescribeAuthenticationProfileRequest.struct_class = Types::DescribeAuthenticationProfileRequest
@@ -5056,6 +5098,9 @@ module Aws::Connect
5056
5098
 
5057
5099
  Expressions.member = Shapes::ShapeRef.new(shape: Expression)
5058
5100
 
5101
+ ExtensionConfiguration.add_member(:allowed_extensions, Shapes::ShapeRef.new(shape: AllowedExtensionsList, required: true, location_name: "AllowedExtensions"))
5102
+ ExtensionConfiguration.struct_class = Types::ExtensionConfiguration
5103
+
5059
5104
  ExternalInvocationConfiguration.add_member(:enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "Enabled"))
5060
5105
  ExternalInvocationConfiguration.struct_class = Types::ExternalInvocationConfiguration
5061
5106
 
@@ -5699,6 +5744,15 @@ module Aws::Connect
5699
5744
  ListAssociatedContactsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location_name: "NextToken"))
5700
5745
  ListAssociatedContactsResponse.struct_class = Types::ListAssociatedContactsResponse
5701
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
+
5702
5756
  ListAuthenticationProfilesRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
5703
5757
  ListAuthenticationProfilesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResult1000, location: "querystring", location_name: "maxResults", metadata: {"box" => true}))
5704
5758
  ListAuthenticationProfilesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: NextToken, location: "querystring", location_name: "nextToken"))
@@ -8426,6 +8480,19 @@ module Aws::Connect
8426
8480
  UpdateAgentStatusRequest.add_member(:reset_order_number, Shapes::ShapeRef.new(shape: Boolean, location_name: "ResetOrderNumber"))
8427
8481
  UpdateAgentStatusRequest.struct_class = Types::UpdateAgentStatusRequest
8428
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
+
8429
8496
  UpdateAuthenticationProfileRequest.add_member(:authentication_profile_id, Shapes::ShapeRef.new(shape: AuthenticationProfileId, required: true, location: "uri", location_name: "AuthenticationProfileId"))
8430
8497
  UpdateAuthenticationProfileRequest.add_member(:instance_id, Shapes::ShapeRef.new(shape: InstanceId, required: true, location: "uri", location_name: "InstanceId"))
8431
8498
  UpdateAuthenticationProfileRequest.add_member(:name, Shapes::ShapeRef.new(shape: AuthenticationProfileName, location_name: "Name"))
@@ -10910,6 +10977,19 @@ module Aws::Connect
10910
10977
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
10911
10978
  end)
10912
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
+
10913
10993
  api.add_operation(:describe_authentication_profile, Seahorse::Model::Operation.new.tap do |o|
10914
10994
  o.name = "DescribeAuthenticationProfile"
10915
10995
  o.http_method = "GET"
@@ -11920,6 +12000,25 @@ module Aws::Connect
11920
12000
  o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
11921
12001
  end)
11922
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
+
11923
12022
  api.add_operation(:list_authentication_profiles, Seahorse::Model::Operation.new.tap do |o|
11924
12023
  o.name = "ListAuthenticationProfiles"
11925
12024
  o.http_method = "GET"
@@ -14062,6 +14161,19 @@ module Aws::Connect
14062
14161
  o.errors << Shapes::ShapeRef.new(shape: InternalServiceException)
14063
14162
  end)
14064
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
+
14065
14177
  api.add_operation(:update_authentication_profile, Seahorse::Model::Operation.new.tap do |o|
14066
14178
  o.name = "UpdateAuthenticationProfile"
14067
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.
@@ -33774,6 +33953,72 @@ module Aws::Connect
33774
33953
  include Aws::Structure
33775
33954
  end
33776
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
+
33777
34022
  # @!attribute [rw] authentication_profile_id
33778
34023
  # A unique identifier for the authentication profile.
33779
34024
  # @return [String]
@@ -54,7 +54,7 @@ module Aws::Connect
54
54
  autoload :EndpointProvider, 'aws-sdk-connect/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-connect/endpoints'
56
56
 
57
- GEM_VERSION = '1.253.0'
57
+ GEM_VERSION = '1.254.0'
58
58
 
59
59
  end
60
60
 
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]
@@ -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
@@ -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
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connect
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.253.0
4
+ version: 1.254.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services