[][src]Struct rusoto_dlm::CreateLifecyclePolicyRequest

pub struct CreateLifecyclePolicyRequest {
    pub description: String,
    pub execution_role_arn: String,
    pub policy_details: PolicyDetails,
    pub state: String,
    pub tags: Option<HashMap<String, String>>,
}

Fields

description: String

A description of the lifecycle policy. The characters ^[0-9A-Za-z _-]+$ are supported.

execution_role_arn: String

The Amazon Resource Name (ARN) of the IAM role used to run the operations specified by the lifecycle policy.

policy_details: PolicyDetails

The configuration details of the lifecycle policy.

state: String

The desired activation state of the lifecycle policy after creation.

tags: Option<HashMap<String, String>>

The tags to apply to the lifecycle policy during creation.

Trait Implementations

impl Clone for CreateLifecyclePolicyRequest[src]

impl Debug for CreateLifecyclePolicyRequest[src]

impl Default for CreateLifecyclePolicyRequest[src]

impl PartialEq<CreateLifecyclePolicyRequest> for CreateLifecyclePolicyRequest[src]

impl Serialize for CreateLifecyclePolicyRequest[src]

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