Class: AWSCDK::Interfaces::AWSEvidently::LaunchReference
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::Interfaces::AWSEvidently::LaunchReference
- Defined in:
- interfaces/aws_evidently/launch_reference.rb
Overview
A reference to a Launch resource.
Instance Attribute Summary collapse
-
#launch_arn ⇒ String
readonly
The Arn of the Launch resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(launch_arn:) ⇒ LaunchReference
constructor
A new instance of LaunchReference.
- #to_jsii ⇒ Object
Constructor Details
#initialize(launch_arn:) ⇒ LaunchReference
Returns a new instance of LaunchReference.
8 9 10 11 |
# File 'interfaces/aws_evidently/launch_reference.rb', line 8 def initialize(launch_arn:) @launch_arn = launch_arn Jsii::Type.check_type(@launch_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "launchArn") end |
Instance Attribute Details
#launch_arn ⇒ String (readonly)
The Arn of the Launch resource.
16 17 18 |
# File 'interfaces/aws_evidently/launch_reference.rb', line 16 def launch_arn @launch_arn end |
Class Method Details
.jsii_properties ⇒ Object
18 19 20 21 22 |
# File 'interfaces/aws_evidently/launch_reference.rb', line 18 def self.jsii_properties { :launch_arn => "launchArn", } end |
Instance Method Details
#to_jsii ⇒ Object
24 25 26 27 28 29 30 |
# File 'interfaces/aws_evidently/launch_reference.rb', line 24 def to_jsii result = {} result.merge!({ "launchArn" => @launch_arn, }) result.compact end |