Class: AWSCDK::Interfaces::AWSCloudformation::CustomResourceReference

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
interfaces/aws_cloudformation/custom_resource_reference.rb

Overview

A reference to a CustomResource resource.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(custom_resource_id:) ⇒ CustomResourceReference

Returns a new instance of CustomResourceReference.

Parameters:

  • custom_resource_id (String)

    The Id of the CustomResource resource.



8
9
10
11
# File 'interfaces/aws_cloudformation/custom_resource_reference.rb', line 8

def initialize(custom_resource_id:)
  @custom_resource_id = custom_resource_id
  Jsii::Type.check_type(@custom_resource_id, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "customResourceId")
end

Instance Attribute Details

#custom_resource_idString (readonly)

The Id of the CustomResource resource.

Returns:

  • (String)


16
17
18
# File 'interfaces/aws_cloudformation/custom_resource_reference.rb', line 16

def custom_resource_id
  @custom_resource_id
end

Class Method Details

.jsii_propertiesObject



18
19
20
21
22
# File 'interfaces/aws_cloudformation/custom_resource_reference.rb', line 18

def self.jsii_properties
  {
    :custom_resource_id => "customResourceId",
  }
end

Instance Method Details

#to_jsiiObject



24
25
26
27
28
29
30
# File 'interfaces/aws_cloudformation/custom_resource_reference.rb', line 24

def to_jsii
  result = {}
  result.merge!({
    "customResourceId" => @custom_resource_id,
  })
  result.compact
end