[][src]Struct rusoto_storagegateway::AutomaticTapeCreationPolicyInfo

pub struct AutomaticTapeCreationPolicyInfo {
    pub automatic_tape_creation_rules: Option<Vec<AutomaticTapeCreationRule>>,
    pub gateway_arn: Option<String>,
}

Information about the gateway's automatic tape creation policies, including the automatic tape creation rules and the gateway that is using the policies.

Fields

automatic_tape_creation_rules: Option<Vec<AutomaticTapeCreationRule>>

An automatic tape creation policy consists of a list of automatic tape creation rules. This returns the rules that determine when and how to automatically create new tapes.

gateway_arn: Option<String>

Trait Implementations

impl Clone for AutomaticTapeCreationPolicyInfo[src]

impl Debug for AutomaticTapeCreationPolicyInfo[src]

impl Default for AutomaticTapeCreationPolicyInfo[src]

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

impl PartialEq<AutomaticTapeCreationPolicyInfo> for AutomaticTapeCreationPolicyInfo[src]

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