Class: AWSCDK::CleanRooms::CfnAnalysisTemplate::AnalysisTemplateArtifactProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
clean_rooms/cfn_analysis_template.rb

Overview

The analysis template artifact.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(location:) ⇒ AnalysisTemplateArtifactProperty

Returns a new instance of AnalysisTemplateArtifactProperty.

Parameters:



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

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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