[][src]Struct rusoto_dlm::PolicyDetails

pub struct PolicyDetails {
    pub parameters: Option<Parameters>,
    pub policy_type: Option<String>,
    pub resource_types: Option<Vec<String>>,
    pub schedules: Option<Vec<Schedule>>,
    pub target_tags: Option<Vec<Tag>>,
}

Specifies the configuration of a lifecycle policy.

Fields

parameters: Option<Parameters>

A set of optional parameters for the policy.

policy_type: Option<String>

The valid target resource types and actions a policy can manage. The default is EBS_SNAPSHOT_MANAGEMENT.

resource_types: Option<Vec<String>>

The resource type. Use VOLUME to create snapshots of individual volumes or use INSTANCE to create multi-volume snapshots from the volumes for an instance.

schedules: Option<Vec<Schedule>>

The schedule of policy-defined actions.

target_tags: Option<Vec<Tag>>

The single tag that identifies targeted resources for this policy.

Trait Implementations

impl Clone for PolicyDetails[src]

impl Debug for PolicyDetails[src]

impl Default for PolicyDetails[src]

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

impl PartialEq<PolicyDetails> for PolicyDetails[src]

impl Serialize for PolicyDetails[src]

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