Module Values.InventoryS3BucketDestinationSource

Contains the bucket name, file format, bucket owner (optional), and prefix (optional) where S3 Inventory results are published.

Sourcetype nonrec t = {
  1. accountId : AccountId.t option;
    (*

    The account ID that owns the destination S3 bucket. If no account ID is provided, the owner is not validated before exporting data. Although this value is optional, we strongly recommend that you set it to help prevent problems if the destination bucket ownership changes.

    *)
  2. bucket : BucketName.t;
    (*

    The Amazon Resource Name (ARN) of the bucket where inventory results will be published.

    *)
  3. format : InventoryFormat.t;
    (*

    Specifies the output format of the inventory results.

    *)
  4. prefix : Prefix.t option;
    (*

    The prefix that is prepended to all inventory results.

    *)
  5. encryption : InventoryEncryption.t option;
    (*

    Contains the type of server-side encryption used to encrypt the inventory results.

    *)
}
Sourceval context_ : string
Sourceval make : ?accountId:??? -> ?prefix:??? -> ?encryption:??? -> bucket:BucketName.t -> format:InventoryFormat.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of AccountId.t | `Structure of (string * [> `Structure of (string * [> `String of SSEKMSKeyId.t ]) list ]) 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