Module Values.S3BucketSource

Contains information about the Amazon S3 bucket policies and encryption.

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

    The owner ID of the associated S3Amazon S3bucket.

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

    The timestamp at which the Amazon S3 bucket was created.

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

    The type of encryption used for the Amazon S3 buckets and its objects. For more information, see Protecting data with server-side encryption in the Amazon S3 User Guide.

    *)
  4. encryptionKeyArn : String_.t option;
    (*

    The Amazon Resource Name (ARN) of the encryption key that is used to encrypt the Amazon S3 bucket and its objects.

    *)
  5. effectivePermission : String_.t option;
    (*

    Describes the effective permissions on this S3 bucket, after factoring all the attached policies.

    *)
  6. publicReadAccess : PublicAccessStatus.t option;
    (*

    Indicates whether or not the public read access is allowed for an Amazon S3 bucket.

    *)
  7. publicWriteAccess : PublicAccessStatus.t option;
    (*

    Indicates whether or not the public write access is allowed for an Amazon S3 bucket.

    *)
  8. accountPublicAccess : PublicAccessConfiguration.t option;
    (*

    Contains information about the public access policies that apply to the Amazon S3 bucket at the account level.

    *)
  9. bucketPublicAccess : PublicAccessConfiguration.t option;
    (*

    Contains information about public access policies that apply to the Amazon S3 bucket.

    *)
  10. s3ObjectUids : S3ObjectUids.t option;
    (*

    Represents a list of Amazon S3 object identifiers.

    *)
}
Sourceval make : ?ownerId:??? -> ?createdAt:??? -> ?encryptionType:??? -> ?encryptionKeyArn:??? -> ?effectivePermission:??? -> ?publicReadAccess:??? -> ?publicWriteAccess:??? -> ?accountPublicAccess:??? -> ?bucketPublicAccess:??? -> ?s3ObjectUids:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `String of String_.t ] list | `String of String_.t | `Structure of (string * [> `Enum of string ]) 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