Class: AWSCDK::HealthLake::CfnFHIRDatastore::SseConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::HealthLake::CfnFHIRDatastore::SseConfigurationProperty
- Defined in:
- health_lake/cfn_fhir_datastore.rb
Overview
The server-side encryption key configuration for a customer-provided encryption key.
Instance Attribute Summary collapse
-
#kms_encryption_config ⇒ AWSCDK::IResolvable, AWSCDK::HealthLake::CfnFHIRDatastore::KMSEncryptionConfigProperty
readonly
The server-side encryption key configuration for a customer provided encryption key.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(kms_encryption_config:) ⇒ SseConfigurationProperty
constructor
A new instance of SseConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(kms_encryption_config:) ⇒ SseConfigurationProperty
Returns a new instance of SseConfigurationProperty.
867 868 869 870 |
# File 'health_lake/cfn_fhir_datastore.rb', line 867 def initialize(kms_encryption_config:) @kms_encryption_config = kms_encryption_config.is_a?(Hash) ? ::AWSCDK::HealthLake::CfnFHIRDatastore::KMSEncryptionConfigProperty.new(**kms_encryption_config.transform_keys(&:to_sym)) : kms_encryption_config Jsii::Type.check_type(@kms_encryption_config, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19oZWFsdGhsYWtlLkNmbkZISVJEYXRhc3RvcmUuS21zRW5jcnlwdGlvbkNvbmZpZ1Byb3BlcnR5In1dfX0=")), "kmsEncryptionConfig") end |
Instance Attribute Details
#kms_encryption_config ⇒ AWSCDK::IResolvable, AWSCDK::HealthLake::CfnFHIRDatastore::KMSEncryptionConfigProperty (readonly)
The server-side encryption key configuration for a customer provided encryption key.
876 877 878 |
# File 'health_lake/cfn_fhir_datastore.rb', line 876 def kms_encryption_config @kms_encryption_config end |
Class Method Details
.jsii_properties ⇒ Object
878 879 880 881 882 |
# File 'health_lake/cfn_fhir_datastore.rb', line 878 def self.jsii_properties { :kms_encryption_config => "kmsEncryptionConfig", } end |
Instance Method Details
#to_jsii ⇒ Object
884 885 886 887 888 889 890 |
# File 'health_lake/cfn_fhir_datastore.rb', line 884 def to_jsii result = {} result.merge!({ "kmsEncryptionConfig" => @kms_encryption_config, }) result.compact end |