Module Values_2.RegisteredCustomerManagedKeySource

A customer managed key structure that contains the information listed below: KeyArn - The ARN of a KMS key that is registered to a Quick Sight account for encryption and decryption use. DefaultKey - Indicates whether the current key is set as the default key for encryption and decryption use.

Sourcetype nonrec t = {
  1. keyArn : Values_0.String_.t option;
    (*

    The ARN of the KMS key that is registered to a Quick Sight account for encryption and decryption use.

    *)
  2. defaultKey : Values_0.Boolean.t option;
    (*

    Indicates whether a RegisteredCustomerManagedKey is set as the default key for encryption and decryption use.

    *)
}
Sourceval make : ?keyArn:??? -> ?defaultKey:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Values_0.Boolean.t | `String of Values_0.String_.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