Module Values.EncryptionConfigurationDetailsSource

The encryption configuration of your IAM Identity Center instance, including the key type, KMS key ARN, and current encryption status.

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

    The type of KMS key used for encryption.

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

    The ARN of the KMS key currently used to encrypt data in your IAM Identity Center instance.

    *)
  3. encryptionStatus : KmsKeyStatus.t option;
    (*

    The current status of encryption configuration.

    *)
  4. encryptionStatusReason : Reason.t option;
    (*

    Provides additional context about the current encryption status. This field is particularly useful when the encryption status is UPDATE_FAILED. When encryption configuration update fails, this field contains information about the cause, which may include KMS key access issues, key not found errors, invalid key configuration, key in an invalid state, or a disabled key.

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