Class: AWSCDK::Omics::CfnAnnotationStore::ReferenceItemProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Omics::CfnAnnotationStore::ReferenceItemProperty
- Defined in:
- omics/cfn_annotation_store.rb
Overview
A genome reference.
Instance Attribute Summary collapse
-
#reference_arn ⇒ String
readonly
The reference's ARN.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(reference_arn:) ⇒ ReferenceItemProperty
constructor
A new instance of ReferenceItemProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(reference_arn:) ⇒ ReferenceItemProperty
Returns a new instance of ReferenceItemProperty.
662 663 664 665 |
# File 'omics/cfn_annotation_store.rb', line 662 def initialize(reference_arn:) @reference_arn = reference_arn Jsii::Type.check_type(@reference_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "referenceArn") end |
Instance Attribute Details
#reference_arn ⇒ String (readonly)
The reference's ARN.
671 672 673 |
# File 'omics/cfn_annotation_store.rb', line 671 def reference_arn @reference_arn end |
Class Method Details
.jsii_properties ⇒ Object
673 674 675 676 677 |
# File 'omics/cfn_annotation_store.rb', line 673 def self.jsii_properties { :reference_arn => "referenceArn", } end |
Instance Method Details
#to_jsii ⇒ Object
679 680 681 682 683 684 685 |
# File 'omics/cfn_annotation_store.rb', line 679 def to_jsii result = {} result.merge!({ "referenceArn" => @reference_arn, }) result.compact end |