Module Values.EncryptionConfigurationSource

A structure that specifies the KMS key type and KMS key ARN used to encrypt data in your IAM Identity Center instance.

Sourcetype nonrec t = {
  1. keyType : KmsKeyType.t;
    (*

    The type of KMS key used for encryption.

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

    The ARN of the KMS key used to encrypt data. Required when KeyType is CUSTOMER_MANAGED_KEY. Cannot be specified when KeyType is AWS_OWNED_KMS_KEY.

    *)
}
Sourceval context_ : string
Sourceval make : ?kmsKeyArn:??? -> keyType:KmsKeyType.t -> 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