[][src]Struct rusoto_storagegateway::PoolInfo

pub struct PoolInfo {
    pub pool_arn: Option<String>,
    pub pool_name: Option<String>,
    pub pool_status: Option<String>,
    pub retention_lock_time_in_days: Option<i64>,
    pub retention_lock_type: Option<String>,
    pub storage_class: Option<String>,
}

Describes a custom tape pool.

Fields

pool_arn: Option<String>

The Amazon Resource Name (ARN) of the custom tape pool. Use the ListTapePools operation to return a list of custom tape pools for your account and AWS Region.

pool_name: Option<String>

The name of the custom tape pool. PoolName can use all ASCII characters, except '/' and '\'.

pool_status: Option<String>

Status of the custom tape pool. Pool can be ACTIVE or DELETED.

retention_lock_time_in_days: Option<i64>

Tape retention lock time is set in days. Tape retention lock can be enabled for up to 100 years (36,500 days).

retention_lock_type: Option<String>

Tape retention lock type, which can be configured in two modes. When configured in governance mode, AWS accounts with specific IAM permissions are authorized to remove the tape retention lock from archived virtual tapes. When configured in compliance mode, the tape retention lock cannot be removed by any user, including the root AWS account.

storage_class: Option<String>

The storage class that is associated with the custom pool. When you use your backup application to eject the tape, the tape is archived directly into the storage class (S3 Glacier or S3 Glacier Deep Archive) that corresponds to the pool.

Trait Implementations

impl Clone for PoolInfo[src]

impl Debug for PoolInfo[src]

impl Default for PoolInfo[src]

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

impl PartialEq<PoolInfo> for PoolInfo[src]

impl StructuralPartialEq for PoolInfo[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, 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.