Struct aws_sdk_machinelearning::types::RedshiftMetadata
source · #[non_exhaustive]pub struct RedshiftMetadata { /* private fields */ }
Expand description
Describes the DataSource
details specific to Amazon Redshift.
Implementations§
source§impl RedshiftMetadata
impl RedshiftMetadata
sourcepub fn redshift_database(&self) -> Option<&RedshiftDatabase>
pub fn redshift_database(&self) -> Option<&RedshiftDatabase>
Describes the database details required to connect to an Amazon Redshift database.
sourcepub fn database_user_name(&self) -> Option<&str>
pub fn database_user_name(&self) -> Option<&str>
A username to be used by Amazon Machine Learning (Amazon ML)to connect to a database on an Amazon Redshift cluster. The username should have sufficient permissions to execute the RedshiftSelectSqlQuery
query. The username should be valid for an Amazon Redshift USER.
sourcepub fn select_sql_query(&self) -> Option<&str>
pub fn select_sql_query(&self) -> Option<&str>
The SQL query that is specified during CreateDataSourceFromRedshift
. Returns only if Verbose
is true in GetDataSourceInput.
source§impl RedshiftMetadata
impl RedshiftMetadata
sourcepub fn builder() -> RedshiftMetadataBuilder
pub fn builder() -> RedshiftMetadataBuilder
Creates a new builder-style object to manufacture RedshiftMetadata
.
Trait Implementations§
source§impl Clone for RedshiftMetadata
impl Clone for RedshiftMetadata
source§fn clone(&self) -> RedshiftMetadata
fn clone(&self) -> RedshiftMetadata
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 RedshiftMetadata
impl Debug for RedshiftMetadata
source§impl PartialEq<RedshiftMetadata> for RedshiftMetadata
impl PartialEq<RedshiftMetadata> for RedshiftMetadata
source§fn eq(&self, other: &RedshiftMetadata) -> bool
fn eq(&self, other: &RedshiftMetadata) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RedshiftMetadata
Auto Trait Implementations§
impl RefUnwindSafe for RedshiftMetadata
impl Send for RedshiftMetadata
impl Sync for RedshiftMetadata
impl Unpin for RedshiftMetadata
impl UnwindSafe for RedshiftMetadata
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