pub struct CreateImageRecipeResponse {
pub client_token: Option<String>,
pub image_recipe_arn: Option<String>,
pub request_id: Option<String>,
}
Fields§
§client_token: Option<String>
The idempotency token used to make this request idempotent.
image_recipe_arn: Option<String>
The Amazon Resource Name (ARN) of the image recipe that was created by this request.
request_id: Option<String>
The request ID that uniquely identifies this request.
Trait Implementations§
Source§impl Clone for CreateImageRecipeResponse
impl Clone for CreateImageRecipeResponse
Source§fn clone(&self) -> CreateImageRecipeResponse
fn clone(&self) -> CreateImageRecipeResponse
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 CreateImageRecipeResponse
impl Debug for CreateImageRecipeResponse
Source§impl Default for CreateImageRecipeResponse
impl Default for CreateImageRecipeResponse
Source§fn default() -> CreateImageRecipeResponse
fn default() -> CreateImageRecipeResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateImageRecipeResponse
impl<'de> Deserialize<'de> for CreateImageRecipeResponse
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 StructuralPartialEq for CreateImageRecipeResponse
Auto Trait Implementations§
impl Freeze for CreateImageRecipeResponse
impl RefUnwindSafe for CreateImageRecipeResponse
impl Send for CreateImageRecipeResponse
impl Sync for CreateImageRecipeResponse
impl Unpin for CreateImageRecipeResponse
impl UnwindSafe for CreateImageRecipeResponse
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