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]

[src]

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

impl Debug for DocumentParameter
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for DocumentParameter
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations