[][src]Struct rusoto_ssm::ParameterMetadata

pub struct ParameterMetadata {
    pub allowed_pattern: Option<String>,
    pub description: Option<String>,
    pub key_id: Option<String>,
    pub last_modified_date: Option<f64>,
    pub last_modified_user: Option<String>,
    pub name: Option<String>,
    pub policies: Option<Vec<ParameterInlinePolicy>>,
    pub tier: Option<String>,
    pub type_: Option<String>,
    pub version: Option<i64>,
}

Metadata includes information like the ARN of the last user and the date/time the parameter was last used.

Fields

allowed_pattern: Option<String>

A parameter name can include only the following letters and symbols.

a-zA-Z0-9_.-

description: Option<String>

Description of the parameter actions.

key_id: Option<String>

The ID of the query key used for this parameter.

last_modified_date: Option<f64>

Date the parameter was last changed or updated.

last_modified_user: Option<String>

Amazon Resource Name (ARN) of the AWS user who last changed the parameter.

name: Option<String>

The parameter name.

policies: Option<Vec<ParameterInlinePolicy>>

A list of policies associated with a parameter.

tier: Option<String>

The parameter tier.

type_: Option<String>

The type of parameter. Valid parameter types include the following: String, String list, Secure string.

version: Option<i64>

The parameter version.

Trait Implementations

impl PartialEq<ParameterMetadata> for ParameterMetadata[src]

impl Default for ParameterMetadata[src]

impl Clone for ParameterMetadata[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ParameterMetadata[src]

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

Auto Trait Implementations

impl Send for ParameterMetadata

impl Sync for ParameterMetadata

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self