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