Struct rusoto_ssm::ParameterMetadata[][src]

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

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

Fields

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

a-zA-Z0-9_.-

Description of the parameter actions.

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

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

The parameter version.

Trait Implementations

impl Default for ParameterMetadata
[src]

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

impl Debug for ParameterMetadata
[src]

Formats the value using the given formatter. Read more

impl Clone for ParameterMetadata
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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