Class: Aws::SSOAdmin::Types::EncryptionConfigurationDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::EncryptionConfigurationDetails
- Defined in:
- gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb
Overview
The encryption configuration of your IAM Identity Center instance, including the key type, KMS key ARN, and current encryption status.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#encryption_status ⇒ String
The current status of encryption configuration.
-
#encryption_status_reason ⇒ String
Provides additional context about the current encryption status.
-
#key_type ⇒ String
The type of KMS key used for encryption.
-
#kms_key_arn ⇒ String
The ARN of the KMS key currently used to encrypt data in your IAM Identity Center instance.
Instance Attribute Details
#encryption_status ⇒ String
The current status of encryption configuration.
1892 1893 1894 1895 1896 1897 1898 1899 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 1892 class EncryptionConfigurationDetails < Struct.new( :key_type, :kms_key_arn, :encryption_status, :encryption_status_reason) SENSITIVE = [] include Aws::Structure end |
#encryption_status_reason ⇒ String
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.
1892 1893 1894 1895 1896 1897 1898 1899 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 1892 class EncryptionConfigurationDetails < Struct.new( :key_type, :kms_key_arn, :encryption_status, :encryption_status_reason) SENSITIVE = [] include Aws::Structure end |
#key_type ⇒ String
The type of KMS key used for encryption.
1892 1893 1894 1895 1896 1897 1898 1899 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 1892 class EncryptionConfigurationDetails < Struct.new( :key_type, :kms_key_arn, :encryption_status, :encryption_status_reason) SENSITIVE = [] include Aws::Structure end |
#kms_key_arn ⇒ String
The ARN of the KMS key currently used to encrypt data in your IAM Identity Center instance.
1892 1893 1894 1895 1896 1897 1898 1899 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 1892 class EncryptionConfigurationDetails < Struct.new( :key_type, :kms_key_arn, :encryption_status, :encryption_status_reason) SENSITIVE = [] include Aws::Structure end |