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