Module Values.LogsEncryptionConfigurationSource

Configuration for encrypting centralized log groups. This configuration is only applied to destination log groups for which the corresponding source log groups are encrypted using Customer Managed KMS Keys.

Sourcetype nonrec t = {
  1. encryptionStrategy : EncryptionStrategy.t;
    (*

    Configuration that determines the encryption strategy of the destination log groups. CUSTOMER_MANAGED uses the configured KmsKeyArn to encrypt newly created destination log groups.

    *)
  2. kmsKeyArn : ResourceArn.t option;
    (*

    KMS Key ARN belonging to the primary destination account and region, to encrypt newly created central log groups in the primary destination.

    *)
  3. encryptionConflictResolutionStrategy : EncryptionConflictResolutionStrategy.t option;
    (*

    Conflict resolution strategy for centralization if the encryption strategy is set to CUSTOMER_MANAGED and the destination log group is encrypted with an AWS_OWNED KMS Key. ALLOW lets centralization go through while SKIP prevents centralization into the destination log group.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyArn:??? -> ?encryptionConflictResolutionStrategy:??? -> encryptionStrategy:EncryptionStrategy.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of ResourceArn.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