Module Values.S3LoggingConfigurationSource

Configuration settings for delivering logs to Amazon S3 buckets.

Sourcetype nonrec t = {
  1. enabled : BoxedBoolean.t;
    (*

    Enables S3 log delivery.

    *)
  2. kmsKey : KmsKey.t option;
    (*

    The KMS key ARN to encrypt the logs published to the given Amazon S3 destination.

    *)
  3. logLocation : S3OutputLocation.t option;
    (*

    The Amazon S3 destination URI for log publishing.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKey:??? -> ?logLocation:??? -> enabled:BoxedBoolean.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of BoxedBoolean.t | `String of KmsKey.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