Struct rusoto_dax::Parameter[][src]

pub struct Parameter {
    pub allowed_values: Option<String>,
    pub change_type: Option<String>,
    pub data_type: Option<String>,
    pub description: Option<String>,
    pub is_modifiable: Option<String>,
    pub node_type_specific_values: Option<Vec<NodeTypeSpecificValue>>,
    pub parameter_name: Option<String>,
    pub parameter_type: Option<String>,
    pub parameter_value: Option<String>,
    pub source: Option<String>,
}

Describes an individual setting that controls some aspect of DAX behavior.

Fields

A range of values within which the parameter can be set.

The conditions under which changes to this parameter can be applied. For example, requires-reboot indicates that a new value for this parameter will only take effect if a node is rebooted.

The data type of the parameter. For example, integer:

A description of the parameter

Whether the customer is allowed to modify the parameter.

A list of node types, and specific parameter values for each node.

The name of the parameter.

Determines whether the parameter can be applied to any nodes, or only nodes of a particular type.

The value for the parameter.

How the parameter is defined. For example, system denotes a system-defined parameter.

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