[][src]Struct rusoto_ssm::ParameterHistory

pub struct ParameterHistory {
    pub allowed_pattern: Option<String>,
    pub data_type: Option<String>,
    pub description: Option<String>,
    pub key_id: Option<String>,
    pub labels: Option<Vec<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 value: Option<String>,
    pub version: Option<i64>,
}

Information about parameter usage.

Fields

allowed_pattern: Option<String>

Parameter names can include 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>

Information about the parameter.

key_id: Option<String>

The ID of the query key used for this parameter.

labels: Option<Vec<String>>

Labels assigned to the parameter version.

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 name of the parameter.

policies: Option<Vec<ParameterInlinePolicy>>

Information about the policies assigned to a parameter.

Assigning parameter policies in the AWS Systems Manager User Guide.

tier: Option<String>

The parameter tier.

type_: Option<String>

The type of parameter used.

value: Option<String>

The parameter value.

version: Option<i64>

The parameter version.

Trait Implementations

impl Clone for ParameterHistory[src]

impl Debug for ParameterHistory[src]

impl Default for ParameterHistory[src]

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

impl PartialEq<ParameterHistory> for ParameterHistory[src]

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