[][src]Struct rusoto_dax::Parameter

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 Clone for Parameter
[src]

Performs copy-assignment from source. Read more

impl Default for Parameter
[src]

impl PartialEq<Parameter> for Parameter
[src]

impl Debug for Parameter
[src]

impl<'de> Deserialize<'de> for Parameter
[src]

Auto Trait Implementations

impl Send for Parameter

impl Sync for Parameter

Blanket Implementations

impl<T> From for T
[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

impl<T, U> TryFrom for T where
    T: From<U>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

Should always be Self

impl<T> Erased for T