pub struct DeleteDataSourceOutput {
pub data_source_id: Option<String>,
}
Expand description
Represents the output of a DeleteDataSource
operation.
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 DeleteDataSourceOutput
impl Clone for DeleteDataSourceOutput
Source§fn clone(&self) -> DeleteDataSourceOutput
fn clone(&self) -> DeleteDataSourceOutput
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 DeleteDataSourceOutput
impl Debug for DeleteDataSourceOutput
Source§impl Default for DeleteDataSourceOutput
impl Default for DeleteDataSourceOutput
Source§fn default() -> DeleteDataSourceOutput
fn default() -> DeleteDataSourceOutput
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteDataSourceOutput
impl<'de> Deserialize<'de> for DeleteDataSourceOutput
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 DeleteDataSourceOutput
impl PartialEq for DeleteDataSourceOutput
impl StructuralPartialEq for DeleteDataSourceOutput
Auto Trait Implementations§
impl Freeze for DeleteDataSourceOutput
impl RefUnwindSafe for DeleteDataSourceOutput
impl Send for DeleteDataSourceOutput
impl Sync for DeleteDataSourceOutput
impl Unpin for DeleteDataSourceOutput
impl UnwindSafe for DeleteDataSourceOutput
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