pub struct CreateDataSourceFromRDSOutput {
pub data_source_id: Option<String>,
}
Expand description
Represents the output of a CreateDataSourceFromRDS
operation, and is an acknowledgement that Amazon ML received the request.
The CreateDataSourceFromRDS
> operation is asynchronous. You can poll for updates by using the GetBatchPrediction
operation and checking the Status
parameter. You can inspect the Message
when Status
shows up as FAILED
. You can also check the progress of the copy operation by going to the DataPipeline
console and looking up the pipeline using the pipelineId
from the describe call.
Fields§
§data_source_id: Option<String>
A user-supplied ID that uniquely identifies the datasource. This value should be identical to the value of the DataSourceID
in the request.
Trait Implementations§
Source§impl Clone for CreateDataSourceFromRDSOutput
impl Clone for CreateDataSourceFromRDSOutput
Source§fn clone(&self) -> CreateDataSourceFromRDSOutput
fn clone(&self) -> CreateDataSourceFromRDSOutput
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 Default for CreateDataSourceFromRDSOutput
impl Default for CreateDataSourceFromRDSOutput
Source§fn default() -> CreateDataSourceFromRDSOutput
fn default() -> CreateDataSourceFromRDSOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateDataSourceFromRDSOutput
impl<'de> Deserialize<'de> for CreateDataSourceFromRDSOutput
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for CreateDataSourceFromRDSOutput
impl PartialEq for CreateDataSourceFromRDSOutput
Source§fn eq(&self, other: &CreateDataSourceFromRDSOutput) -> bool
fn eq(&self, other: &CreateDataSourceFromRDSOutput) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for CreateDataSourceFromRDSOutput
Auto Trait Implementations§
impl Freeze for CreateDataSourceFromRDSOutput
impl RefUnwindSafe for CreateDataSourceFromRDSOutput
impl Send for CreateDataSourceFromRDSOutput
impl Sync for CreateDataSourceFromRDSOutput
impl Unpin for CreateDataSourceFromRDSOutput
impl UnwindSafe for CreateDataSourceFromRDSOutput
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