Module Values.S3EncryptionConfigSource

A structure that contains the configuration of encryption-at-rest settings for canary artifacts that the canary uploads to Amazon S3. For more information, see Encrypting canary artifacts

Sourcetype nonrec t = {
  1. encryptionMode : EncryptionMode.t option;
    (*

    The encryption method to use for artifacts created by this canary. Specify SSE_S3 to use server-side encryption (SSE) with an Amazon S3-managed key. Specify SSE-KMS to use server-side encryption with a customer-managed KMS key. If you omit this parameter, an Amazon Web Services-managed KMS key is used.

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

    The ARN of the customer-managed KMS key to use, if you specify SSE-KMS for EncryptionMode

    *)
}
Sourceval make : ?encryptionMode:??? -> ?kmsKeyArn:??? -> 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