Module Values.S3BucketSource

Provides information about the S3 bucket that a finding applies to. If a quota prevented Amazon Macie from retrieving and processing all the bucket's information prior to generating the finding, the following values are UNKNOWN or null: allowsUnencryptedObjectUploads, defaultServerSideEncryption, publicAccess, and tags.

Sourcetype nonrec t = {
  1. allowsUnencryptedObjectUploads : AllowsUnencryptedObjectUploads.t option;
    (*

    Specifies whether the bucket policy for the bucket requires server-side encryption of objects when objects are added to the bucket. Possible values are: FALSE - The bucket policy requires server-side encryption of new objects. PutObject requests must include a valid server-side encryption header. TRUE - The bucket doesn't have a bucket policy or it has a bucket policy that doesn't require server-side encryption of new objects. If a bucket policy exists, it doesn't require PutObject requests to include a valid server-side encryption header. UNKNOWN - Amazon Macie can't determine whether the bucket policy requires server-side encryption of new objects. Valid server-side encryption headers are: x-amz-server-side-encryption with a value of AES256 or aws:kms, and x-amz-server-side-encryption-customer-algorithm with a value of AES256.

    *)
  2. arn : string option;
    (*

    The Amazon Resource Name (ARN) of the bucket.

    *)
  3. createdAt : string option;
    (*

    The date and time, in UTC and extended ISO 8601 format, when the bucket was created. This value can also indicate when changes such as edits to the bucket's policy were most recently made to the bucket, relative to when the finding was created or last updated.

    *)
  4. defaultServerSideEncryption : ServerSideEncryption.t option;
    (*

    The default server-side encryption settings for the bucket.

    *)
  5. name : string option;
    (*

    The name of the bucket.

    *)
  6. owner : S3BucketOwner.t option;
    (*

    The display name and canonical user ID for the Amazon Web Services account that owns the bucket.

    *)
  7. publicAccess : BucketPublicAccess.t option;
    (*

    The permissions settings that determine whether the bucket is publicly accessible.

    *)
  8. tags : KeyValuePairList.t option;
    (*

    The tags that are associated with the bucket.

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