Values.EncryptionConfigurationSourceA structure that specifies the KMS key type and KMS key ARN used to encrypt data in your IAM Identity Center instance.
type nonrec t = {keyType : KmsKeyType.t;The type of KMS key used for encryption.
*)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.
*)}val to_value :
t ->
[> `Structure of
(string * [> `Enum of string | `String of KmsKeyArn.t ]) list ]