Module Values_1.VerifiedAccessLogsSource

Describes the options for Verified Access logs.

Sourcetype nonrec t = {
  1. s3 : Values_0.VerifiedAccessLogS3Destination.t option;
    (*

    Amazon S3 logging options.

    *)
  2. cloudWatchLogs : Values_0.VerifiedAccessLogCloudWatchLogsDestination.t option;
    (*

    CloudWatch Logs logging destination.

    *)
  3. kinesisDataFirehose : Values_0.VerifiedAccessLogKinesisDataFirehoseDestination.t option;
    (*

    Kinesis logging destination.

    *)
  4. logVersion : Values_0.String_.t option;
    (*

    The log version.

    *)
  5. includeTrustContext : Values_0.Boolean.t option;
    (*

    Indicates whether trust data is included in the logs.

    *)
}
Sourceval make : ?s3:??? -> ?cloudWatchLogs:??? -> ?kinesisDataFirehose:??? -> ?logVersion:??? -> ?includeTrustContext:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.String_.t | `Structure of (string * [> `Boolean of bool | `String of string | `Structure of (string * [> `Enum of string | `String of string ]) 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