Struct aws_sdk_ec2::operation::copy_fpga_image::CopyFpgaImageInput
source · #[non_exhaustive]pub struct CopyFpgaImageInput {
pub dry_run: Option<bool>,
pub source_fpga_image_id: Option<String>,
pub description: Option<String>,
pub name: Option<String>,
pub source_region: Option<String>,
pub client_token: Option<String>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.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
.
source_fpga_image_id: Option<String>
The ID of the source AFI.
description: Option<String>
The description for the new AFI.
name: Option<String>
The name for the new AFI. The default is the name of the source AFI.
source_region: Option<String>
The Region that contains the source AFI.
client_token: Option<String>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.
Implementations§
source§impl CopyFpgaImageInput
impl CopyFpgaImageInput
sourcepub fn dry_run(&self) -> Option<bool>
pub fn dry_run(&self) -> 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
.
sourcepub fn source_fpga_image_id(&self) -> Option<&str>
pub fn source_fpga_image_id(&self) -> Option<&str>
The ID of the source AFI.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
The description for the new AFI.
sourcepub fn name(&self) -> Option<&str>
pub fn name(&self) -> Option<&str>
The name for the new AFI. The default is the name of the source AFI.
sourcepub fn source_region(&self) -> Option<&str>
pub fn source_region(&self) -> Option<&str>
The Region that contains the source AFI.
sourcepub fn client_token(&self) -> Option<&str>
pub fn client_token(&self) -> Option<&str>
Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring idempotency.
source§impl CopyFpgaImageInput
impl CopyFpgaImageInput
sourcepub fn builder() -> CopyFpgaImageInputBuilder
pub fn builder() -> CopyFpgaImageInputBuilder
Creates a new builder-style object to manufacture CopyFpgaImageInput
.
Trait Implementations§
source§impl Clone for CopyFpgaImageInput
impl Clone for CopyFpgaImageInput
source§fn clone(&self) -> CopyFpgaImageInput
fn clone(&self) -> CopyFpgaImageInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for CopyFpgaImageInput
impl Debug for CopyFpgaImageInput
source§impl PartialEq<CopyFpgaImageInput> for CopyFpgaImageInput
impl PartialEq<CopyFpgaImageInput> for CopyFpgaImageInput
source§fn eq(&self, other: &CopyFpgaImageInput) -> bool
fn eq(&self, other: &CopyFpgaImageInput) -> bool
self
and other
values to be equal, and is used
by ==
.