Class: AWSCDK::QuickSight::CfnTemplate::TemplateSourceTemplateProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::QuickSight::CfnTemplate::TemplateSourceTemplateProperty
- Defined in:
- quick_sight/cfn_template.rb
Overview
The source template of the template.
Instance Attribute Summary collapse
-
#arn ⇒ String
readonly
The Amazon Resource Name (ARN) of the resource.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(arn:) ⇒ TemplateSourceTemplateProperty
constructor
A new instance of TemplateSourceTemplateProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(arn:) ⇒ TemplateSourceTemplateProperty
Returns a new instance of TemplateSourceTemplateProperty.
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
#arn ⇒ String (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_properties ⇒ Object
27041 27042 27043 27044 27045 |
# File 'quick_sight/cfn_template.rb', line 27041 def self.jsii_properties { :arn => "arn", } end |
Instance Method Details
#to_jsii ⇒ Object
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 |