Module Values.AwsS3ObjectDetailsSource

Details about an Amazon S3 object.

Sourcetype nonrec t = {
  1. lastModified : NonEmptyString.t option;
    (*

    Indicates when the object was last modified. For more information about the validation and formatting of timestamp fields in Security Hub CSPM, see Timestamps.

    *)
  2. eTag : NonEmptyString.t option;
    (*

    The opaque identifier assigned by a web server to a specific version of a resource found at a URL.

    *)
  3. versionId : NonEmptyString.t option;
    (*

    The version of the object.

    *)
  4. contentType : NonEmptyString.t option;
    (*

    A standard MIME type describing the format of the object data.

    *)
  5. serverSideEncryption : NonEmptyString.t option;
    (*

    If the object is stored using server-side encryption, the value of the server-side encryption algorithm used when storing this object in Amazon S3.

    *)
  6. sSEKMSKeyId : NonEmptyString.t option;
    (*

    The identifier of the KMS symmetric customer managed key that was used for the object.

    *)
}
Sourceval make : ?lastModified:??? -> ?eTag:??? -> ?versionId:??? -> ?contentType:??? -> ?serverSideEncryption:??? -> ?sSEKMSKeyId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of NonEmptyString.t ]) 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