[][src]Struct rusoto_ssm::ParameterInlinePolicy

pub struct ParameterInlinePolicy {
    pub policy_status: Option<String>,
    pub policy_text: Option<String>,
    pub policy_type: Option<String>,
}

One or more policies assigned to a parameter.

Fields

policy_status: Option<String>

The status of the policy. Policies report the following statuses: Pending (the policy has not been enforced or applied yet), Finished (the policy was applied), Failed (the policy was not applied), or InProgress (the policy is being applied now).

policy_text: Option<String>

The JSON text of the policy.

policy_type: Option<String>

The type of policy. Parameter Store supports the following policy types: Expiration, ExpirationNotification, and NoChangeNotification.

Trait Implementations

impl Clone for ParameterInlinePolicy[src]

impl Debug for ParameterInlinePolicy[src]

impl Default for ParameterInlinePolicy[src]

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

impl PartialEq<ParameterInlinePolicy> for ParameterInlinePolicy[src]

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