Update Attached Files Configuration
| connect_update_attached_files_configuration | R Documentation |
Updates the attached files configuration for the specified Connect Customer instance and attachment scope¶
Description¶
Updates the attached files configuration for the specified Connect Customer instance and attachment scope.
If no instance-specific configuration exists, this operation creates one. Partial updates are supported—only specified fields are updated, while unspecified fields retain their current values.
Usage¶
connect_update_attached_files_configuration(InstanceId, AttachmentScope,
MaximumSizeLimitInBytes, ExtensionConfiguration)
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
|
MaximumSizeLimitInBytes |
The maximum size limit for attached files in bytes. The minimum value is 1 and the maximum value is 104857600 (100 MB). |
ExtensionConfiguration |
The configuration for allowed file extensions. |
Value¶
A list with the following syntax:
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$update_attached_files_configuration(
InstanceId = "string",
AttachmentScope = "EMAIL"|"CHAT"|"CASE"|"TASK",
MaximumSizeLimitInBytes = 123,
ExtensionConfiguration = list(
AllowedExtensions = list(
list(
Extension = "string"
)
)
)
)