Struct aws_sdk_datazone::types::GlueRunConfigurationInput
source · #[non_exhaustive]pub struct GlueRunConfigurationInput {
pub data_access_role: Option<String>,
pub relational_filter_configurations: Vec<RelationalFilterConfiguration>,
pub auto_import_data_quality_result: Option<bool>,
}
Expand description
The configuration details of the Amazon Web Services Glue data source.
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.data_access_role: Option<String>
The data access role included in the configuration details of the Amazon Web Services Glue data source.
relational_filter_configurations: Vec<RelationalFilterConfiguration>
The relational filter configurations included in the configuration details of the Amazon Web Services Glue data source.
auto_import_data_quality_result: Option<bool>
Specifies whether to automatically import data quality metrics as part of the data source run.
Implementations§
source§impl GlueRunConfigurationInput
impl GlueRunConfigurationInput
sourcepub fn data_access_role(&self) -> Option<&str>
pub fn data_access_role(&self) -> Option<&str>
The data access role included in the configuration details of the Amazon Web Services Glue data source.
sourcepub fn relational_filter_configurations(
&self,
) -> &[RelationalFilterConfiguration]
pub fn relational_filter_configurations( &self, ) -> &[RelationalFilterConfiguration]
The relational filter configurations included in the configuration details of the Amazon Web Services Glue data source.
sourcepub fn auto_import_data_quality_result(&self) -> Option<bool>
pub fn auto_import_data_quality_result(&self) -> Option<bool>
Specifies whether to automatically import data quality metrics as part of the data source run.
source§impl GlueRunConfigurationInput
impl GlueRunConfigurationInput
sourcepub fn builder() -> GlueRunConfigurationInputBuilder
pub fn builder() -> GlueRunConfigurationInputBuilder
Creates a new builder-style object to manufacture GlueRunConfigurationInput
.
Trait Implementations§
source§impl Clone for GlueRunConfigurationInput
impl Clone for GlueRunConfigurationInput
source§fn clone(&self) -> GlueRunConfigurationInput
fn clone(&self) -> GlueRunConfigurationInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GlueRunConfigurationInput
impl Debug for GlueRunConfigurationInput
impl StructuralPartialEq for GlueRunConfigurationInput
Auto Trait Implementations§
impl Freeze for GlueRunConfigurationInput
impl RefUnwindSafe for GlueRunConfigurationInput
impl Send for GlueRunConfigurationInput
impl Sync for GlueRunConfigurationInput
impl Unpin for GlueRunConfigurationInput
impl UnwindSafe for GlueRunConfigurationInput
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more