Struct rusoto_storagegateway::CreateTapeWithBarcodeInput[][src]

pub struct CreateTapeWithBarcodeInput {
    pub gateway_arn: String,
    pub tape_barcode: String,
    pub tape_size_in_bytes: i64,
}

CreateTapeWithBarcodeInput

Fields

The unique Amazon Resource Name (ARN) that represents the gateway to associate the virtual tape with. Use the ListGateways operation to return a list of gateways for your account and region.

The barcode that you want to assign to the tape.

Barcodes cannot be reused. This includes barcodes used for tapes that have been deleted.

The size, in bytes, of the virtual tape that you want to create.

The size must be aligned by gigabyte (102410241024 byte).

Trait Implementations

impl Default for CreateTapeWithBarcodeInput
[src]

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

impl Debug for CreateTapeWithBarcodeInput
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateTapeWithBarcodeInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for CreateTapeWithBarcodeInput
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations