Class: AWSCDK::CleanRooms::CfnAnalysisTemplate::AnalysisTemplateArtifactProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::CleanRooms::CfnAnalysisTemplate::AnalysisTemplateArtifactProperty
- Defined in:
- clean_rooms/cfn_analysis_template.rb
Overview
The analysis template artifact.
Instance Attribute Summary collapse
-
#location ⇒ AWSCDK::IResolvable, AWSCDK::CleanRooms::CfnAnalysisTemplate::S3LocationProperty
readonly
The artifact location.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(location:) ⇒ AnalysisTemplateArtifactProperty
constructor
A new instance of AnalysisTemplateArtifactProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(location:) ⇒ AnalysisTemplateArtifactProperty
Returns a new instance of AnalysisTemplateArtifactProperty.
917 918 919 920 |
# File 'clean_rooms/cfn_analysis_template.rb', line 917 def initialize(location:) @location = location.is_a?(Hash) ? ::AWSCDK::CleanRooms::CfnAnalysisTemplate::S3LocationProperty.new(**location.transform_keys(&:to_sym)) : location Jsii::Type.check_type(@location, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19jbGVhbnJvb21zLkNmbkFuYWx5c2lzVGVtcGxhdGUuUzNMb2NhdGlvblByb3BlcnR5In1dfX0=")), "location") end |
Instance Attribute Details
#location ⇒ AWSCDK::IResolvable, AWSCDK::CleanRooms::CfnAnalysisTemplate::S3LocationProperty (readonly)
The artifact location.
926 927 928 |
# File 'clean_rooms/cfn_analysis_template.rb', line 926 def location @location end |
Class Method Details
.jsii_properties ⇒ Object
928 929 930 931 932 |
# File 'clean_rooms/cfn_analysis_template.rb', line 928 def self.jsii_properties { :location => "location", } end |
Instance Method Details
#to_jsii ⇒ Object
934 935 936 937 938 939 940 |
# File 'clean_rooms/cfn_analysis_template.rb', line 934 def to_jsii result = {} result.merge!({ "location" => @location, }) result.compact end |