Class: AWSCDK::Omics::CfnAnnotationStore::ReferenceItemProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
omics/cfn_annotation_store.rb

Overview

A genome reference.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(reference_arn:) ⇒ ReferenceItemProperty

Returns a new instance of ReferenceItemProperty.

Parameters:

  • reference_arn (String)

    The reference's ARN.



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_arnString (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_propertiesObject



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_jsiiObject



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