Struct rusoto_ssm::DocumentParameter[][src]

pub struct DocumentParameter {
    pub default_value: Option<String>,
    pub description: Option<String>,
    pub name: Option<String>,
    pub type_: Option<String>,
}

Parameters specified in a System Manager document that execute on the server when the command is run.

Fields

If specified, the default values for the parameters. Parameters without a default value are required. Parameters with a default value are optional.

A description of what the parameter does, how to use it, the default value, and whether or not the parameter is optional.

The name of the parameter.

The type of parameter. The type can be either String or StringList.

Trait Implementations

impl Default for DocumentParameter
[src]

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

impl Debug for DocumentParameter
[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentParameter
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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