Class: AWSCDK::Interfaces::AWSOmics::RunGroupReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSOmics::RunGroupReference
- Defined in:
- interfaces/aws_omics/run_group_reference.rb
Overview
A reference to a RunGroup resource.
Instance Attribute Summary collapse
-
#run_group_arn ⇒ String
readonly
The ARN of the RunGroup resource.
-
#run_group_id ⇒ String
readonly
The Id of the RunGroup resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(run_group_arn:, run_group_id:) ⇒ RunGroupReference
constructor
A new instance of RunGroupReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(run_group_arn:, run_group_id:) ⇒ RunGroupReference
Returns a new instance of RunGroupReference.
9 10 11 12 13 14 |
# File 'interfaces/aws_omics/run_group_reference.rb', line 9 def initialize(run_group_arn:, run_group_id:) @run_group_arn = run_group_arn Jsii::Type.check_type(@run_group_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "runGroupArn") @run_group_id = run_group_id Jsii::Type.check_type(@run_group_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "runGroupId") end |
Instance Attribute Details
#run_group_arn ⇒ String (readonly)
The ARN of the RunGroup resource.
19 20 21 |
# File 'interfaces/aws_omics/run_group_reference.rb', line 19 def run_group_arn @run_group_arn end |
#run_group_id ⇒ String (readonly)
The Id of the RunGroup resource.
23 24 25 |
# File 'interfaces/aws_omics/run_group_reference.rb', line 23 def run_group_id @run_group_id end |
Class Method Details
.jsii_properties ⇒ Object
25 26 27 28 29 30 |
# File 'interfaces/aws_omics/run_group_reference.rb', line 25 def self.jsii_properties { :run_group_arn => "runGroupArn", :run_group_id => "runGroupId", } end |
Instance Method Details
#to_jsii ⇒ Object
32 33 34 35 36 37 38 39 |
# File 'interfaces/aws_omics/run_group_reference.rb', line 32 def to_jsii result = {} result.merge!({ "runGroupArn" => @run_group_arn, "runGroupId" => @run_group_id, }) result.compact end |