#[non_exhaustive]pub struct GetAsyncInvokeResponse {
pub invocation_arn: String,
pub model_arn: String,
pub status: AsyncInvokeStatus,
pub submit_time: String,
pub output_data_config: AsyncInvokeOutputDataConfig,
pub client_request_token: Option<String>,
pub failure_message: Option<String>,
pub last_modified_time: Option<String>,
pub end_time: Option<String>,
pub rest: Rest,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.invocation_arn: String§model_arn: String§status: AsyncInvokeStatus§submit_time: String§output_data_config: AsyncInvokeOutputDataConfig§client_request_token: Option<String>§failure_message: Option<String>§last_modified_time: Option<String>§end_time: Option<String>§rest: RestImplementations§
Trait Implementations§
Source§impl Clone for GetAsyncInvokeResponse
impl Clone for GetAsyncInvokeResponse
Source§fn clone(&self) -> GetAsyncInvokeResponse
fn clone(&self) -> GetAsyncInvokeResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GetAsyncInvokeResponse
impl Debug for GetAsyncInvokeResponse
Source§impl<'de> Deserialize<'de> for GetAsyncInvokeResponse
impl<'de> Deserialize<'de> for GetAsyncInvokeResponse
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
impl Eq for GetAsyncInvokeResponse
Source§impl PartialEq for GetAsyncInvokeResponse
impl PartialEq for GetAsyncInvokeResponse
Source§impl Serialize for GetAsyncInvokeResponse
impl Serialize for GetAsyncInvokeResponse
impl StructuralPartialEq for GetAsyncInvokeResponse
Auto Trait Implementations§
impl Freeze for GetAsyncInvokeResponse
impl RefUnwindSafe for GetAsyncInvokeResponse
impl Send for GetAsyncInvokeResponse
impl Sync for GetAsyncInvokeResponse
impl Unpin for GetAsyncInvokeResponse
impl UnsafeUnpin for GetAsyncInvokeResponse
impl UnwindSafe for GetAsyncInvokeResponse
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