Module Values_0.AttachedFileSource

Information about the attached file.

Sourcetype nonrec t = {
  1. creationTime : ISO8601Datetime.t option;
    (*

    The time of Creation of the file resource as an ISO timestamp. It's specified in ISO 8601 format: yyyy-MM-ddThh:mm:ss.SSSZ. For example, 2024-05-03T02:41:28.172Z.

    *)
  2. fileArn : ARN.t option;
    (*

    The unique identifier of the attached file resource (ARN).

    *)
  3. fileId : FileId.t option;
    (*

    The unique identifier of the attached file resource.

    *)
  4. fileName : FileName.t option;
    (*

    A case-sensitive name of the attached file being uploaded.

    *)
  5. fileSizeInBytes : FileSizeInBytes.t option;
    (*

    The size of the attached file in bytes.

    *)
  6. fileStatus : FileStatusType.t option;
    (*

    The current status of the attached file.

    *)
  7. createdBy : CreatedByInfo.t option;
    (*

    Represents the identity that created the file.

    *)
  8. fileUseCaseType : FileUseCaseType.t option;
    (*

    The use case for the file.

    *)
  9. associatedResourceArn : ARN.t option;
    (*

    The resource to which the attached file is (being) uploaded to. Cases are the only current supported resource. This value must be a valid ARN.

    *)
  10. tags : TagMap.t option;
    (*

    The tags used to organize, track, or control access for this resource. For example, { "Tags": {"key1":"value1", "key2":"value2"} }.

    *)
}
Sourceval make : ?creationTime:??? -> ?fileArn:??? -> ?fileId:??? -> ?fileName:??? -> ?fileSizeInBytes:??? -> ?fileStatus:??? -> ?createdBy:??? -> ?fileUseCaseType:??? -> ?associatedResourceArn:??? -> ?tags:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Long of FileSizeInBytes.t | `Map of ([> `String of TagKey.t ] * [> `String of TagValue.t ]) list | `String of ISO8601Datetime.t | `Structure of (string * [> `String of ARN.t ]) list ]) 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