#[non_exhaustive]pub struct RedshiftRunConfigurationOutput {
pub account_id: Option<String>,
pub region: Option<String>,
pub data_access_role: Option<String>,
pub relational_filter_configurations: Option<Vec<RelationalFilterConfiguration>>,
pub redshift_credential_configuration: Option<RedshiftCredentialConfiguration>,
pub redshift_storage: Option<RedshiftStorage>,
}
Expand description
The configuration details of the Amazon Redshift 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 ID of the Amazon Web Services account included in the configuration details of the Amazon Redshift data source.
region: Option<String>
The Amazon Web Services region included in the configuration details of the Amazon Redshift data source.
data_access_role: Option<String>
The data access role included in the configuration details of the Amazon Redshift data source.
relational_filter_configurations: Option<Vec<RelationalFilterConfiguration>>
The relational filger configurations included in the configuration details of the Amazon Redshift data source.
redshift_credential_configuration: Option<RedshiftCredentialConfiguration>
The details of the credentials required to access an Amazon Redshift cluster.
redshift_storage: Option<RedshiftStorage>
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
Implementations§
source§impl RedshiftRunConfigurationOutput
impl RedshiftRunConfigurationOutput
sourcepub fn account_id(&self) -> Option<&str>
pub fn account_id(&self) -> Option<&str>
The ID of the Amazon Web Services account included in the configuration details of the Amazon Redshift 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 Redshift 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 Redshift data source.
sourcepub fn relational_filter_configurations(
&self
) -> Option<&[RelationalFilterConfiguration]>
pub fn relational_filter_configurations( &self ) -> Option<&[RelationalFilterConfiguration]>
The relational filger configurations included in the configuration details of the Amazon Redshift data source.
sourcepub fn redshift_credential_configuration(
&self
) -> Option<&RedshiftCredentialConfiguration>
pub fn redshift_credential_configuration( &self ) -> Option<&RedshiftCredentialConfiguration>
The details of the credentials required to access an Amazon Redshift cluster.
sourcepub fn redshift_storage(&self) -> Option<&RedshiftStorage>
pub fn redshift_storage(&self) -> Option<&RedshiftStorage>
The details of the Amazon Redshift storage as part of the configuration of an Amazon Redshift data source run.
source§impl RedshiftRunConfigurationOutput
impl RedshiftRunConfigurationOutput
sourcepub fn builder() -> RedshiftRunConfigurationOutputBuilder
pub fn builder() -> RedshiftRunConfigurationOutputBuilder
Creates a new builder-style object to manufacture RedshiftRunConfigurationOutput
.
Trait Implementations§
source§impl Clone for RedshiftRunConfigurationOutput
impl Clone for RedshiftRunConfigurationOutput
source§fn clone(&self) -> RedshiftRunConfigurationOutput
fn clone(&self) -> RedshiftRunConfigurationOutput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl PartialEq for RedshiftRunConfigurationOutput
impl PartialEq for RedshiftRunConfigurationOutput
source§fn eq(&self, other: &RedshiftRunConfigurationOutput) -> bool
fn eq(&self, other: &RedshiftRunConfigurationOutput) -> bool
self
and other
values to be equal, and is used
by ==
.