Struct rusoto_ec2::CopyFpgaImageRequest [] [src]

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

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. For more information, see Ensuring Idempotency.

The description for the new AFI.

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.

The name for the new AFI. The default is the name of the source AFI.

The ID of the source AFI.

The region that contains the source AFI.

Trait Implementations

impl Default for CopyFpgaImageRequest
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for CopyFpgaImageRequest
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CopyFpgaImageRequest
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations