Struct aws_sdk_databrew::model::Output
source · #[non_exhaustive]pub struct Output { /* private fields */ }
Expand description
Represents options that specify how and where in Amazon S3 DataBrew writes the output generated by recipe jobs or profile jobs.
Implementations§
source§impl Output
impl Output
sourcepub fn compression_format(&self) -> Option<&CompressionFormat>
pub fn compression_format(&self) -> Option<&CompressionFormat>
The compression algorithm used to compress the output text of the job.
sourcepub fn format(&self) -> Option<&OutputFormat>
pub fn format(&self) -> Option<&OutputFormat>
The data format of the output of the job.
sourcepub fn partition_columns(&self) -> Option<&[String]>
pub fn partition_columns(&self) -> Option<&[String]>
The names of one or more partition columns for the output of the job.
sourcepub fn location(&self) -> Option<&S3Location>
pub fn location(&self) -> Option<&S3Location>
The location in Amazon S3 where the job writes its output.
sourcepub fn overwrite(&self) -> bool
pub fn overwrite(&self) -> bool
A value that, if true, means that any data in the location specified for output is overwritten with new output.
sourcepub fn format_options(&self) -> Option<&OutputFormatOptions>
pub fn format_options(&self) -> Option<&OutputFormatOptions>
Represents options that define how DataBrew formats job output files.
sourcepub fn max_output_files(&self) -> Option<i32>
pub fn max_output_files(&self) -> Option<i32>
Maximum number of files to be generated by the job and written to the output folder. For output partitioned by column(s), the MaxOutputFiles value is the maximum number of files per partition.