Struct aws_sdk_sagemaker::model::AthenaDatasetDefinition
source · [−]#[non_exhaustive]pub struct AthenaDatasetDefinition { /* private fields */ }
Expand description
Configuration for Athena Dataset Definition input.
Implementations
sourceimpl AthenaDatasetDefinition
impl AthenaDatasetDefinition
sourcepub fn catalog(&self) -> Option<&str>
pub fn catalog(&self) -> Option<&str>
The name of the data catalog used in Athena query execution.
sourcepub fn database(&self) -> Option<&str>
pub fn database(&self) -> Option<&str>
The name of the database used in the Athena query execution.
sourcepub fn query_string(&self) -> Option<&str>
pub fn query_string(&self) -> Option<&str>
The SQL query statements, to be executed.
sourcepub fn work_group(&self) -> Option<&str>
pub fn work_group(&self) -> Option<&str>
The name of the workgroup in which the Athena query is being started.
sourcepub fn output_s3_uri(&self) -> Option<&str>
pub fn output_s3_uri(&self) -> Option<&str>
The location in Amazon S3 where Athena query results are stored.
sourcepub fn kms_key_id(&self) -> Option<&str>
pub fn kms_key_id(&self) -> Option<&str>
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.
sourcepub fn output_format(&self) -> Option<&AthenaResultFormat>
pub fn output_format(&self) -> Option<&AthenaResultFormat>
The data storage format for Athena query results.
sourcepub fn output_compression(&self) -> Option<&AthenaResultCompressionType>
pub fn output_compression(&self) -> Option<&AthenaResultCompressionType>
The compression used for Athena query results.
sourceimpl AthenaDatasetDefinition
impl AthenaDatasetDefinition
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AthenaDatasetDefinition
.
Trait Implementations
sourceimpl Clone for AthenaDatasetDefinition
impl Clone for AthenaDatasetDefinition
sourcefn clone(&self) -> AthenaDatasetDefinition
fn clone(&self) -> AthenaDatasetDefinition
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for AthenaDatasetDefinition
impl Debug for AthenaDatasetDefinition
sourceimpl PartialEq<AthenaDatasetDefinition> for AthenaDatasetDefinition
impl PartialEq<AthenaDatasetDefinition> for AthenaDatasetDefinition
sourcefn eq(&self, other: &AthenaDatasetDefinition) -> bool
fn eq(&self, other: &AthenaDatasetDefinition) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
impl StructuralPartialEq for AthenaDatasetDefinition
Auto Trait Implementations
impl RefUnwindSafe for AthenaDatasetDefinition
impl Send for AthenaDatasetDefinition
impl Sync for AthenaDatasetDefinition
impl Unpin for AthenaDatasetDefinition
impl UnwindSafe for AthenaDatasetDefinition
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more