Class: AWSCDK::DataBrew::CfnJob::S3TableOutputOptionsProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::DataBrew::CfnJob::S3TableOutputOptionsProperty
- Defined in:
- data_brew/cfn_job.rb
Overview
Represents options that specify how and where DataBrew writes the Amazon S3 output generated by recipe jobs.
Instance Attribute Summary collapse
-
#location ⇒ AWSCDK::IResolvable, AWSCDK::DataBrew::CfnJob::S3LocationProperty
readonly
Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(location:) ⇒ S3TableOutputOptionsProperty
constructor
A new instance of S3TableOutputOptionsProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(location:) ⇒ S3TableOutputOptionsProperty
Returns a new instance of S3TableOutputOptionsProperty.
1567 1568 1569 1570 |
# File 'data_brew/cfn_job.rb', line 1567 def initialize(location:) @location = location.is_a?(Hash) ? ::AWSCDK::DataBrew::CfnJob::S3LocationProperty.new(**location.transform_keys(&:to_sym)) : location Jsii::Type.check_type(@location, JSON.parse(Base64.strict_decode64("eyJ1bmlvbiI6eyJ0eXBlcyI6W3siZnFuIjoiYXdzLWNkay1saWIuSVJlc29sdmFibGUifSx7ImZxbiI6ImF3cy1jZGstbGliLmF3c19kYXRhYnJldy5DZm5Kb2IuUzNMb2NhdGlvblByb3BlcnR5In1dfX0=")), "location") end |
Instance Attribute Details
#location ⇒ AWSCDK::IResolvable, AWSCDK::DataBrew::CfnJob::S3LocationProperty (readonly)
Represents an Amazon S3 location (bucket name and object key) where DataBrew can write output from a job.
1576 1577 1578 |
# File 'data_brew/cfn_job.rb', line 1576 def location @location end |
Class Method Details
.jsii_properties ⇒ Object
1578 1579 1580 1581 1582 |
# File 'data_brew/cfn_job.rb', line 1578 def self.jsii_properties { :location => "location", } end |
Instance Method Details
#to_jsii ⇒ Object
1584 1585 1586 1587 1588 1589 1590 |
# File 'data_brew/cfn_job.rb', line 1584 def to_jsii result = {} result.merge!({ "location" => @location, }) result.compact end |