Struct rusoto_storagegateway::DescribeVTLDevicesOutput[][src]

pub struct DescribeVTLDevicesOutput {
    pub gateway_arn: Option<String>,
    pub marker: Option<String>,
    pub vtl_devices: Option<Vec<VTLDevice>>,
}

DescribeVTLDevicesOutput

Fields

An opaque string that indicates the position at which the VTL devices that were fetched for description ended. Use the marker in your next request to fetch the next set of VTL devices in the list. If there are no more VTL devices to describe, this field does not appear in the response.

An array of VTL device objects composed of the Amazon Resource Name(ARN) of the VTL devices.

Trait Implementations

impl Default for DescribeVTLDevicesOutput
[src]

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

impl Debug for DescribeVTLDevicesOutput
[src]

Formats the value using the given formatter. Read more

impl Clone for DescribeVTLDevicesOutput
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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