Struct rusoto_storagegateway::DescribeTapesInput[][src]

pub struct DescribeTapesInput {
    pub gateway_arn: String,
    pub limit: Option<i64>,
    pub marker: Option<String>,
    pub tape_ar_ns: Option<Vec<String>>,
}

DescribeTapesInput

Fields

Specifies that the number of virtual tapes described be limited to the specified number.

Amazon Web Services may impose its own limit, if this field is not set.

A marker value, obtained in a previous call to DescribeTapes. This marker indicates which page of results to retrieve.

If not specified, the first page of results is retrieved.

Specifies one or more unique Amazon Resource Names (ARNs) that represent the virtual tapes you want to describe. If this parameter is not specified, Tape gateway returns a description of all virtual tapes associated with the specified gateway.

Trait Implementations

impl Default for DescribeTapesInput
[src]

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

impl Debug for DescribeTapesInput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeTapesInput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for DescribeTapesInput
[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