Module Values.ManagedLogsSource

The entity that provides configuration control over managed logs.

Sourcetype nonrec t = {
  1. allowAWSToRetainLogs : AllowAWSToRetainLogs.t option;
    (*

    Determines whether Amazon Web Services can retain logs.

    *)
  2. encryptionKeyArn : KmsKeyArn.t option;
    (*

    The Amazon resource name (ARN) of the encryption key for logs.

    *)
}
Sourceval make : ?allowAWSToRetainLogs:??? -> ?encryptionKeyArn:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of KmsKeyArn.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