[][src]Struct rusoto_storagegateway::AssignTapePoolInput

pub struct AssignTapePoolInput {
    pub bypass_governance_retention: Option<bool>,
    pub pool_id: String,
    pub tape_arn: String,
}

Fields

bypass_governance_retention: Option<bool>

Set permissions to bypass governance retention. If the lock type of the archived tape is Governance, the tape's archived age is not older than RetentionLockInDays, and the user does not already have BypassGovernanceRetention, setting this to TRUE enables the user to bypass the retention lock. This parameter is set to true by default for calls from the console.

Valid values: TRUE | FALSE

pool_id: String

The ID of the pool that you want to add your tape to for archiving. The tape in this pool is archived in the S3 storage class that is associated with the 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.

Valid Values: GLACIER | DEEP_ARCHIVE

tape_arn: String

The unique Amazon Resource Name (ARN) of the virtual tape that you want to add to the tape pool.

Trait Implementations

impl Clone for AssignTapePoolInput[src]

impl Debug for AssignTapePoolInput[src]

impl Default for AssignTapePoolInput[src]

impl PartialEq<AssignTapePoolInput> for AssignTapePoolInput[src]

impl Serialize for AssignTapePoolInput[src]

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