#[non_exhaustive]pub struct GlueRunConfigurationOutput {
pub account_id: Option<String>,
pub region: Option<String>,
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
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.account_id: Option<String>
The Amazon Web Services account ID included in the configuration details of the Amazon Web Services Glue data source.
region: Option<String>
The Amazon Web Services region included in the configuration details of the Amazon Web Services Glue data source.
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 GlueRunConfigurationOutput
impl GlueRunConfigurationOutput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The Amazon Web Services account ID included in the configuration details of the Amazon Web Services Glue data source.
sourcepub fn region(&self) -> Option<&str>
pub fn region(&self) -> Option<&str>
The Amazon Web Services region included in the configuration details of the Amazon Web Services Glue data source.
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 GlueRunConfigurationOutput
impl GlueRunConfigurationOutput
sourcepub fn builder() -> GlueRunConfigurationOutputBuilder
pub fn builder() -> GlueRunConfigurationOutputBuilder
Creates a new builder-style object to manufacture GlueRunConfigurationOutput
.
Trait Implementations§
source§impl Clone for GlueRunConfigurationOutput
impl Clone for GlueRunConfigurationOutput
source§fn clone(&self) -> GlueRunConfigurationOutput
fn clone(&self) -> GlueRunConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for GlueRunConfigurationOutput
impl Debug for GlueRunConfigurationOutput
source§impl PartialEq for GlueRunConfigurationOutput
impl PartialEq for GlueRunConfigurationOutput
source§fn eq(&self, other: &GlueRunConfigurationOutput) -> bool
fn eq(&self, other: &GlueRunConfigurationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.