pub struct CreateFpgaImageRequest {
pub client_token: Option<String>,
pub description: Option<String>,
pub dry_run: Option<bool>,
pub input_storage_location: StorageLocation,
pub logs_storage_location: Option<StorageLocation>,
pub name: Option<String>,
pub tag_specifications: Option<Vec<TagSpecification>>,
}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>A description for the 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.
input_storage_location: StorageLocationThe location of the encrypted design checkpoint in Amazon S3. The input must be a tarball.
logs_storage_location: Option<StorageLocation>The location in Amazon S3 for the output logs.
name: Option<String>A name for the AFI.
tag_specifications: Option<Vec<TagSpecification>>The tags to apply to the FPGA image during creation.
Trait Implementations§
Source§impl Clone for CreateFpgaImageRequest
impl Clone for CreateFpgaImageRequest
Source§fn clone(&self) -> CreateFpgaImageRequest
fn clone(&self) -> CreateFpgaImageRequest
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 CreateFpgaImageRequest
impl Debug for CreateFpgaImageRequest
Source§impl Default for CreateFpgaImageRequest
impl Default for CreateFpgaImageRequest
Source§fn default() -> CreateFpgaImageRequest
fn default() -> CreateFpgaImageRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for CreateFpgaImageRequest
impl PartialEq for CreateFpgaImageRequest
impl StructuralPartialEq for CreateFpgaImageRequest
Auto Trait Implementations§
impl Freeze for CreateFpgaImageRequest
impl RefUnwindSafe for CreateFpgaImageRequest
impl Send for CreateFpgaImageRequest
impl Sync for CreateFpgaImageRequest
impl Unpin for CreateFpgaImageRequest
impl UnwindSafe for CreateFpgaImageRequest
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