Struct rusoto_ssm::Parameter[][src]

pub struct Parameter {
    pub name: Option<String>,
    pub type_: Option<String>,
    pub value: Option<String>,
    pub version: Option<i64>,
}

An Amazon EC2 Systems Manager parameter in Parameter Store.

Fields

The name of the parameter.

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

The parameter value.

The parameter version.

Trait Implementations

impl Default for Parameter
[src]

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

impl Debug for Parameter
[src]

Formats the value using the given formatter. Read more

impl Clone for Parameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for Parameter

impl Sync for Parameter