Module Values.AwsAmazonMqBrokerEncryptionOptionsDetailsSource

Provides details about broker encryption options.

Sourcetype nonrec t = {
  1. kmsKeyId : NonEmptyString.t option;
    (*

    The KMS key that’s used to encrypt your data at rest. If not provided, Amazon MQ will use a default KMS key to encrypt your data.

    *)
  2. useAwsOwnedKey : Boolean.t option;
    (*

    Specifies that an KMS key should be used for at-rest encryption. Set to true by default if no value is provided (for example, for RabbitMQ brokers).

    *)
}
Sourceval make : ?kmsKeyId:??? -> ?useAwsOwnedKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of NonEmptyString.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