Class: AWSCDK::Omics::CfnVariantStore::SseConfigProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Omics::CfnVariantStore::SseConfigProperty
- Defined in:
- omics/cfn_variant_store.rb
Overview
Server-side encryption (SSE) settings for a store.
Instance Attribute Summary collapse
-
#key_arn ⇒ String?
readonly
An encryption key ARN.
-
#type ⇒ String
readonly
The encryption type.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(type:, key_arn: nil) ⇒ SseConfigProperty
constructor
A new instance of SseConfigProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(type:, key_arn: nil) ⇒ SseConfigProperty
Returns a new instance of SseConfigProperty.
665 666 667 668 669 670 |
# File 'omics/cfn_variant_store.rb', line 665 def initialize(type:, key_arn: nil) @type = type Jsii::Type.check_type(@type, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "type") @key_arn = key_arn Jsii::Type.check_type(@key_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "keyArn") unless @key_arn.nil? end |
Instance Attribute Details
#key_arn ⇒ String? (readonly)
An encryption key ARN.
681 682 683 |
# File 'omics/cfn_variant_store.rb', line 681 def key_arn @key_arn end |
#type ⇒ String (readonly)
The encryption type.
676 677 678 |
# File 'omics/cfn_variant_store.rb', line 676 def type @type end |
Class Method Details
.jsii_properties ⇒ Object
683 684 685 686 687 688 |
# File 'omics/cfn_variant_store.rb', line 683 def self.jsii_properties { :type => "type", :key_arn => "keyArn", } end |
Instance Method Details
#to_jsii ⇒ Object
690 691 692 693 694 695 696 697 |
# File 'omics/cfn_variant_store.rb', line 690 def to_jsii result = {} result.merge!({ "type" => @type, "keyArn" => @key_arn, }) result.compact end |