pub struct UpdateDataSetResponse {
pub arn: Option<String>,
pub data_set_id: Option<String>,
pub ingestion_arn: Option<String>,
pub ingestion_id: Option<String>,
pub request_id: Option<String>,
pub status: Option<i64>,
}
Fields§
§arn: Option<String>
The Amazon Resource Name (ARN) of the dataset.
data_set_id: Option<String>
The ID for the dataset that you want to create. This ID is unique per AWS Region for each AWS account.
ingestion_arn: Option<String>
The ARN for the ingestion, which is triggered as a result of dataset creation if the import mode is SPICE.
ingestion_id: Option<String>
The ID of the ingestion, which is triggered as a result of dataset creation if the import mode is SPICE.
request_id: Option<String>
The AWS request ID for this operation.
status: Option<i64>
The HTTP status of the request.
Trait Implementations§
Source§impl Clone for UpdateDataSetResponse
impl Clone for UpdateDataSetResponse
Source§fn clone(&self) -> UpdateDataSetResponse
fn clone(&self) -> UpdateDataSetResponse
Returns a duplicate 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 UpdateDataSetResponse
impl Debug for UpdateDataSetResponse
Source§impl Default for UpdateDataSetResponse
impl Default for UpdateDataSetResponse
Source§fn default() -> UpdateDataSetResponse
fn default() -> UpdateDataSetResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateDataSetResponse
impl<'de> Deserialize<'de> for UpdateDataSetResponse
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 UpdateDataSetResponse
impl PartialEq for UpdateDataSetResponse
impl StructuralPartialEq for UpdateDataSetResponse
Auto Trait Implementations§
impl Freeze for UpdateDataSetResponse
impl RefUnwindSafe for UpdateDataSetResponse
impl Send for UpdateDataSetResponse
impl Sync for UpdateDataSetResponse
impl Unpin for UpdateDataSetResponse
impl UnwindSafe for UpdateDataSetResponse
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