Struct rusoto_ssm::ParameterHistory[][src]

pub struct ParameterHistory {
    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 type_: Option<String>,
    pub value: Option<String>,
    pub version: Option<i64>,
}

Information about parameter usage.

Fields

Parameter names can include the following letters and symbols.

a-zA-Z0-9_.-

Information about the parameter.

The ID of the query key used for this parameter.

Date the parameter was last changed or updated.

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

The name of the parameter.

The type of parameter used.

The parameter value.

The parameter version.

Trait Implementations

impl Default for ParameterHistory
[src]

Returns the "default value" for a type. Read more

impl Debug for ParameterHistory
[src]

Formats the value using the given formatter. Read more

impl Clone for ParameterHistory
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for ParameterHistory
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations