[][src]Struct rusoto_ssm::ParameterMetadata

pub struct ParameterMetadata {
    pub allowed_pattern: Option<String>,
    pub data_type: 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_.-

data_type: Option<String>

The data type of the parameter, such as text or aws:ec2:image. The default is text.

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, StringList, and SecureString.

version: Option<i64>

The parameter version.

Trait Implementations

impl Clone for ParameterMetadata[src]

impl Debug for ParameterMetadata[src]

impl Default for ParameterMetadata[src]

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

impl PartialEq<ParameterMetadata> for ParameterMetadata[src]

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