Module Values_0.AttachedFilesConfigurationSource

The configuration for attached files for a specific attachment scope.

Sourcetype nonrec t = {
  1. instanceId : InstanceId.t option;
    (*

    The identifier of the Amazon Connect instance.

    *)
  2. attachmentScope : AttachmentScope.t option;
    (*

    The scope of the attachment. Valid values are EMAIL, CHAT, CASE, and TASK.

    *)
  3. maximumSizeLimitInBytes : MaximumSizeLimitInBytes.t option;
    (*

    The maximum size limit for attached files in bytes.

    *)
  4. extensionConfiguration : ExtensionConfiguration.t option;
    (*

    The configuration for allowed file extensions.

    *)
  5. lastModifiedTime : string option;
    (*

    The timestamp when the configuration was last modified.

    *)
}
Sourceval make : ?instanceId:??? -> ?attachmentScope:??? -> ?maximumSizeLimitInBytes:??? -> ?extensionConfiguration:??? -> ?lastModifiedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of MaximumSizeLimitInBytes.t | `String of InstanceId.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of FileExtension.t ]) list ] list ]) list | `Timestamp of string ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t