Connect / Paginator / ListAttachedFilesConfigurations
ListAttachedFilesConfigurations¶
- class Connect.Paginator.ListAttachedFilesConfigurations¶
paginator = client.get_paginator('list_attached_files_configurations')
- paginate(**kwargs)¶
Creates an iterator that will paginate through responses from
Connect.Client.list_attached_files_configurations().See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate( InstanceId='string', PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } )
- Parameters:
InstanceId (string) –
[REQUIRED]
The identifier of the Amazon Connect instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance.
PaginationConfig (dict) –
A dictionary that provides parameters to control pagination.
MaxItems (integer) –
The total number of items to return. If the total number of items available is more than the value specified in max-items then a
NextTokenwill be provided in the output that you can use to resume pagination.PageSize (integer) –
The size of each page.
StartingToken (string) –
A token to specify where to start paginating. This is the
NextTokenfrom a previous response.
- Return type:
dict
- Returns:
Response Syntax
{ 'AttachedFilesConfigurations': [ { 'InstanceId': 'string', 'AttachmentScope': 'EMAIL'|'CHAT'|'CASE'|'TASK', 'MaximumSizeLimitInBytes': 123, 'ExtensionConfiguration': { 'AllowedExtensions': [ { 'Extension': 'string' }, ] } }, ], }
Response Structure
(dict) –
AttachedFilesConfigurations (list) –
Information about the attached files configurations.
(dict) –
A summary of the attached files configuration.
InstanceId (string) –
The identifier of the Amazon Connect instance.
AttachmentScope (string) –
The scope of the attachment. Valid values are
EMAIL,CHAT,CASE, andTASK.MaximumSizeLimitInBytes (integer) –
The maximum size limit for attached files in bytes. The minimum value is 1 and the maximum value is 104857600 (100 MB).
ExtensionConfiguration (dict) –
The configuration for allowed file extensions.
AllowedExtensions (list) –
The list of allowed file extensions.
(dict) –
Information about an allowed file extension.
Extension (string) –
The file extension. The extension must be between 1 and 10 characters and can contain only alphanumeric characters, hyphens, and underscores.