Class: AWSCDK::QuickSight::CfnTemplate::TemplateSourceTemplateProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
quick_sight/cfn_template.rb

Overview

The source template of the template.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(arn:) ⇒ TemplateSourceTemplateProperty

Returns a new instance of TemplateSourceTemplateProperty.

Parameters:

  • arn (String)

    The Amazon Resource Name (ARN) of the resource.



27030
27031
27032
27033
# File 'quick_sight/cfn_template.rb', line 27030

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

Instance Attribute Details

#arnString (readonly)

The Amazon Resource Name (ARN) of the resource.



27039
27040
27041
# File 'quick_sight/cfn_template.rb', line 27039

def arn
  @arn
end

Class Method Details

.jsii_propertiesObject



27041
27042
27043
27044
27045
# File 'quick_sight/cfn_template.rb', line 27041

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

Instance Method Details

#to_jsiiObject



27047
27048
27049
27050
27051
27052
27053
# File 'quick_sight/cfn_template.rb', line 27047

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