Struct rusoto_ssm::GetParameterRequest[][src]

pub struct GetParameterRequest {
    pub name: String,
    pub with_decryption: Option<bool>,
}

Fields

The name of the parameter you want to query.

Return decrypted values for secure string parameters. This flag is ignored for String and StringList parameter types.

Trait Implementations

impl Default for GetParameterRequest
[src]

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

impl Debug for GetParameterRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for GetParameterRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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