Struct aws_sdk_databrew::types::Output
source · #[non_exhaustive]pub struct Output {
pub compression_format: Option<CompressionFormat>,
pub format: Option<OutputFormat>,
pub partition_columns: Option<Vec<String>>,
pub location: Option<S3Location>,
pub overwrite: bool,
pub format_options: Option<OutputFormatOptions>,
pub max_output_files: Option<i32>,
}
Expand description
Represents options that specify how and where in Amazon S3 DataBrew writes the output generated by recipe jobs or profile jobs.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.compression_format: Option<CompressionFormat>
The compression algorithm used to compress the output text of the job.
format: Option<OutputFormat>
The data format of the output of the job.
partition_columns: Option<Vec<String>>
The names of one or more partition columns for the output of the job.
location: Option<S3Location>
The location in Amazon S3 where the job writes its output.
overwrite: bool
A value that, if true, means that any data in the location specified for output is overwritten with new output.
format_options: Option<OutputFormatOptions>
Represents options that define how DataBrew formats job output files.
max_output_files: 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.
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) -> &[String]
pub fn partition_columns(&self) -> &[String]
The names of one or more partition columns for the output of the job.
If no value was sent for this field, a default will be set. If you want to determine if no value was sent, use .partition_columns.is_none()
.
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.