pub struct CopyFpgaImageRequest {
pub client_token: Option<String>,
pub description: Option<String>,
pub dry_run: Option<bool>,
pub name: Option<String>,
pub source_fpga_image_id: String,
pub source_region: String,
}
Fields§
§client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.
description: Option<String>
The description for the new AFI.
dry_run: Option<bool>
Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is DryRunOperation
. Otherwise, it is UnauthorizedOperation
.
name: Option<String>
The name for the new AFI. The default is the name of the source AFI.
source_fpga_image_id: String
The ID of the source AFI.
source_region: String
The Region that contains the source AFI.
Trait Implementations§
Source§impl Clone for CopyFpgaImageRequest
impl Clone for CopyFpgaImageRequest
Source§fn clone(&self) -> CopyFpgaImageRequest
fn clone(&self) -> CopyFpgaImageRequest
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 CopyFpgaImageRequest
impl Debug for CopyFpgaImageRequest
Source§impl Default for CopyFpgaImageRequest
impl Default for CopyFpgaImageRequest
Source§fn default() -> CopyFpgaImageRequest
fn default() -> CopyFpgaImageRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CopyFpgaImageRequest
impl PartialEq for CopyFpgaImageRequest
impl StructuralPartialEq for CopyFpgaImageRequest
Auto Trait Implementations§
impl Freeze for CopyFpgaImageRequest
impl RefUnwindSafe for CopyFpgaImageRequest
impl Send for CopyFpgaImageRequest
impl Sync for CopyFpgaImageRequest
impl Unpin for CopyFpgaImageRequest
impl UnwindSafe for CopyFpgaImageRequest
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