Struct aws_sdk_datazone::types::GlueRunConfigurationInput
source · #[non_exhaustive]pub struct GlueRunConfigurationInput {
pub data_access_role: Option<String>,
pub relational_filter_configurations: Option<Vec<RelationalFilterConfiguration>>,
}
Expand description
The configuration details of the Amazon Web Services Glue data source.
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.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: Option<Vec<RelationalFilterConfiguration>>
The relational filter configurations included in the configuration details of the Amazon Web Services Glue data source.
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
) -> Option<&[RelationalFilterConfiguration]>
pub fn relational_filter_configurations( &self ) -> Option<&[RelationalFilterConfiguration]>
The relational filter configurations included in the configuration details of the Amazon Web Services Glue data source.
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
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for GlueRunConfigurationInput
impl Debug for GlueRunConfigurationInput
source§impl PartialEq for GlueRunConfigurationInput
impl PartialEq for GlueRunConfigurationInput
source§fn eq(&self, other: &GlueRunConfigurationInput) -> bool
fn eq(&self, other: &GlueRunConfigurationInput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for GlueRunConfigurationInput
Auto Trait Implementations§
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
Mutably borrows from an owned value. Read more