Struct aws_sdk_machinelearning::model::RdsMetadata
source · #[non_exhaustive]pub struct RdsMetadata { /* private fields */ }
Expand description
The datasource details that are specific to Amazon RDS.
Implementations§
source§impl RdsMetadata
impl RdsMetadata
sourcepub fn database(&self) -> Option<&RdsDatabase>
pub fn database(&self) -> Option<&RdsDatabase>
The database details required to connect to an Amazon RDS.
sourcepub fn database_user_name(&self) -> Option<&str>
pub fn database_user_name(&self) -> Option<&str>
The username to be used by Amazon ML to connect to database on an Amazon RDS instance. The username should have sufficient permissions to execute an RDSSelectSqlQuery
query.
sourcepub fn select_sql_query(&self) -> Option<&str>
pub fn select_sql_query(&self) -> Option<&str>
The SQL query that is supplied during CreateDataSourceFromRDS
. Returns only if Verbose
is true in GetDataSourceInput
.
sourcepub fn resource_role(&self) -> Option<&str>
pub fn resource_role(&self) -> Option<&str>
The role (DataPipelineDefaultResourceRole) assumed by an Amazon EC2 instance to carry out the copy task from Amazon RDS to Amazon S3. For more information, see Role templates for data pipelines.
sourcepub fn service_role(&self) -> Option<&str>
pub fn service_role(&self) -> Option<&str>
The role (DataPipelineDefaultRole) assumed by the Data Pipeline service to monitor the progress of the copy task from Amazon RDS to Amazon S3. For more information, see Role templates for data pipelines.
sourcepub fn data_pipeline_id(&self) -> Option<&str>
pub fn data_pipeline_id(&self) -> Option<&str>
The ID of the Data Pipeline instance that is used to carry to copy data from Amazon RDS to Amazon S3. You can use the ID to find details about the instance in the Data Pipeline console.
source§impl RdsMetadata
impl RdsMetadata
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RdsMetadata
.
Trait Implementations§
source§impl Clone for RdsMetadata
impl Clone for RdsMetadata
source§fn clone(&self) -> RdsMetadata
fn clone(&self) -> RdsMetadata
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for RdsMetadata
impl Debug for RdsMetadata
source§impl PartialEq<RdsMetadata> for RdsMetadata
impl PartialEq<RdsMetadata> for RdsMetadata
source§fn eq(&self, other: &RdsMetadata) -> bool
fn eq(&self, other: &RdsMetadata) -> bool
self
and other
values to be equal, and is used
by ==
.