Module Values.DestinationLogsConfigurationSource

Configuration for centralization destination log groups, including encryption and backup settings.

Sourcetype nonrec t = {
  1. logsEncryptionConfiguration : LogsEncryptionConfiguration.t option;
    (*

    The encryption configuration for centralization destination log groups.

    *)
  2. backupConfiguration : LogsBackupConfiguration.t option;
    (*

    Configuration defining the backup region and an optional KMS key for the backup destination.

    *)
  3. logGroupNameConfiguration : LogGroupNameConfiguration.t option;
    (*

    Configuration that specifies a naming pattern for destination log groups created during centralization. The pattern supports static text and dynamic variables that are replaced with source attributes when log groups are created.

    *)
}
Sourceval make : ?logsEncryptionConfiguration:??? -> ?backupConfiguration:??? -> ?logGroupNameConfiguration:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `Enum of string | `String of ResourceArn.t ]) 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