Module Values.S3BucketDetailSource

Contains information on the S3 bucket.

Sourcetype nonrec t = {
  1. arn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the S3 bucket.

    *)
  2. name : String_.t option;
    (*

    The name of the S3 bucket.

    *)
  3. type_ : String_.t option;
    (*

    Describes whether the bucket is a source or destination bucket.

    *)
  4. createdAt : Timestamp.t option;
    (*

    The date and time the bucket was created at.

    *)
  5. owner : Owner.t option;
    (*

    The owner of the S3 bucket.

    *)
  6. tags : Tags.t option;
    (*

    All tags attached to the S3 bucket

    *)
  7. defaultServerSideEncryption : DefaultServerSideEncryption.t option;
    (*

    Describes the server side encryption method used in the S3 bucket.

    *)
  8. publicAccess : PublicAccess.t option;
    (*

    Describes the public access policies that apply to the S3 bucket.

    *)
  9. s3ObjectDetails : S3ObjectDetails.t option;
    (*

    Information about the S3 object that was scanned.

    *)
}
Sourceval make : ?arn:??? -> ?name:??? -> ?type_:??? -> ?createdAt:??? -> ?owner:??? -> ?tags:??? -> ?defaultServerSideEncryption:??? -> ?publicAccess:??? -> ?s3ObjectDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `String of String_.t ]) list ] list | `String of String_.t | `Structure of (string * [> `String of String_.t | `Structure of (string * [> `Structure of (string * [> `Structure of (string * [> `Boolean of Boolean.t ]) list ]) list ]) list ]) list | `Timestamp of Timestamp.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