Describe Attached Files Configuration
| connect_describe_attached_files_configuration | R Documentation |
Describes the attached files configuration for the specified Connect Customer instance and attachment scope¶
Description¶
Describes the attached files configuration for the specified Connect Customer instance and attachment scope.
If a custom configuration exists for the specified attachment scope, the custom configuration is returned. If no custom configuration exists, the default configuration values for that attachment scope are returned.
Usage¶
connect_describe_attached_files_configuration(InstanceId,
AttachmentScope)
Arguments¶
InstanceId |
[required] The identifier of the Connect Customer instance. You can find the instance ID in the Amazon Resource Name (ARN) of the instance. |
AttachmentScope |
[required] The scope of the attachment. Valid values are
|
Value¶
A list with the following syntax:
list(
AttachedFilesConfiguration = list(
InstanceId = "string",
AttachmentScope = "EMAIL"|"CHAT"|"CASE"|"TASK",
MaximumSizeLimitInBytes = 123,
ExtensionConfiguration = list(
AllowedExtensions = list(
list(
Extension = "string"
)
)
),
LastModifiedTime = as.POSIXct(
"2015-01-01"
)
)
)
Request syntax¶
svc$describe_attached_files_configuration(
InstanceId = "string",
AttachmentScope = "EMAIL"|"CHAT"|"CASE"|"TASK"
)