Module Values.EncryptionConfigurationSource

[Event-based policies only] Specifies the encryption settings for cross-Region snapshot copies created by event-based policies.

Sourcetype nonrec t = {
  1. encrypted : Encrypted.t;
    (*

    To encrypt a copy of an unencrypted snapshot when encryption by default is not enabled, enable encryption using this parameter. Copies of encrypted snapshots are encrypted, even if this parameter is false or when encryption by default is not enabled.

    *)
  2. cmkArn : CmkArn.t option;
    (*

    The Amazon Resource Name (ARN) of the KMS key to use for EBS encryption. If this parameter is not specified, the default KMS key for the account is used.

    *)
}
Sourceval context_ : string
Sourceval make : ?cmkArn:??? -> encrypted:Encrypted.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Encrypted.t | `String of CmkArn.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