pub struct CopyImageRequest {
pub destination_image_description: Option<String>,
pub destination_image_name: String,
pub destination_region: String,
pub source_image_name: String,
}
Fields§
§destination_image_description: Option<String>
The description that the image will have when it is copied to the destination.
destination_image_name: String
The name that the image will have when it is copied to the destination.
destination_region: String
The destination region to which the image will be copied. This parameter is required, even if you are copying an image within the same region.
source_image_name: String
The name of the image to copy.
Trait Implementations§
Source§impl Clone for CopyImageRequest
impl Clone for CopyImageRequest
Source§fn clone(&self) -> CopyImageRequest
fn clone(&self) -> CopyImageRequest
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 CopyImageRequest
impl Debug for CopyImageRequest
Source§impl Default for CopyImageRequest
impl Default for CopyImageRequest
Source§fn default() -> CopyImageRequest
fn default() -> CopyImageRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CopyImageRequest
impl PartialEq for CopyImageRequest
Source§impl Serialize for CopyImageRequest
impl Serialize for CopyImageRequest
impl StructuralPartialEq for CopyImageRequest
Auto Trait Implementations§
impl Freeze for CopyImageRequest
impl RefUnwindSafe for CopyImageRequest
impl Send for CopyImageRequest
impl Sync for CopyImageRequest
impl Unpin for CopyImageRequest
impl UnwindSafe for CopyImageRequest
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