[][src]Struct rusoto_storagegateway::VolumeInfo

pub struct VolumeInfo {
    pub gateway_arn: Option<String>,
    pub gateway_id: Option<String>,
    pub volume_arn: Option<String>,
    pub volume_attachment_status: Option<String>,
    pub volume_id: Option<String>,
    pub volume_size_in_bytes: Option<i64>,
    pub volume_type: Option<String>,
}

Describes a storage volume object.

Fields

gateway_arn: Option<String>gateway_id: Option<String>

The unique identifier assigned to your gateway during activation. This ID becomes part of the gateway Amazon Resource Name (ARN), which you use as input for other operations.

Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).

volume_arn: Option<String>

The Amazon Resource Name (ARN) for the storage volume. For example, the following is a valid ARN:

arn:aws:storagegateway:us-east-2:111122223333:gateway/sgw-12A3456B/volume/vol-1122AABB

Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).

volume_attachment_status: Option<String>

One of the VolumeStatus values that indicates the state of the storage volume.

volume_id: Option<String>

The unique identifier assigned to the volume. This ID becomes part of the volume Amazon Resource Name (ARN), which you use as input for other operations.

Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).

volume_size_in_bytes: Option<i64>

The size of the volume in bytes.

Valid Values: 50 to 500 lowercase letters, numbers, periods (.), and hyphens (-).

volume_type: Option<String>

One of the VolumeType enumeration values describing the type of the volume.

Trait Implementations

impl Clone for VolumeInfo[src]

impl Debug for VolumeInfo[src]

impl Default for VolumeInfo[src]

impl<'de> Deserialize<'de> for VolumeInfo[src]

impl PartialEq<VolumeInfo> for VolumeInfo[src]

impl StructuralPartialEq for VolumeInfo[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.