#[non_exhaustive]
pub struct AthenaDatasetDefinition { pub catalog: Option<String>, pub database: Option<String>, pub query_string: Option<String>, pub work_group: Option<String>, pub output_s3_uri: Option<String>, pub kms_key_id: Option<String>, pub output_format: Option<AthenaResultFormat>, pub output_compression: Option<AthenaResultCompressionType>, }
Expand description

Configuration for Athena Dataset Definition input.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
catalog: Option<String>

The name of the data catalog used in Athena query execution.

database: Option<String>

The name of the database used in the Athena query execution.

query_string: Option<String>

The SQL query statements, to be executed.

work_group: Option<String>

The name of the workgroup in which the Athena query is being started.

output_s3_uri: Option<String>

The location in Amazon S3 where Athena query results are stored.

kms_key_id: Option<String>

The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt data generated from an Athena query execution.

output_format: Option<AthenaResultFormat>

The data storage format for Athena query results.

output_compression: Option<AthenaResultCompressionType>

The compression used for Athena query results.

Implementations

The name of the data catalog used in Athena query execution.

The name of the database used in the Athena query execution.

The SQL query statements, to be executed.

The name of the workgroup in which the Athena query is being started.

The location in Amazon S3 where Athena query results are stored.

The Amazon Web Services Key Management Service (Amazon Web Services KMS) key that Amazon SageMaker uses to encrypt data generated from an Athena query execution.

The data storage format for Athena query results.

The compression used for Athena query results.

Creates a new builder-style object to manufacture AthenaDatasetDefinition

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more

Instruments this type with the current Span, returning an Instrumented wrapper. Read more

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more