[][src]Struct rusoto_elasticbeanstalk::ConfigurationOptionDescription

pub struct ConfigurationOptionDescription {
    pub change_severity: Option<String>,
    pub default_value: Option<String>,
    pub max_length: Option<i64>,
    pub max_value: Option<i64>,
    pub min_value: Option<i64>,
    pub name: Option<String>,
    pub namespace: Option<String>,
    pub regex: Option<OptionRestrictionRegex>,
    pub user_defined: Option<bool>,
    pub value_options: Option<Vec<String>>,
    pub value_type: Option<String>,
}

Describes the possible values for a configuration option.

Fields

change_severity: Option<String>

An indication of which action is required if the value for this configuration option changes:

default_value: Option<String>

The default value for this configuration option.

max_length: Option<i64>

If specified, the configuration option must be a string value no longer than this value.

max_value: Option<i64>

If specified, the configuration option must be a numeric value less than this value.

min_value: Option<i64>

If specified, the configuration option must be a numeric value greater than this value.

name: Option<String>

The name of the configuration option.

namespace: Option<String>

A unique namespace identifying the option's associated AWS resource.

regex: Option<OptionRestrictionRegex>

If specified, the configuration option must be a string value that satisfies this regular expression.

user_defined: Option<bool>

An indication of whether the user defined this configuration option:

Constraint: You can remove only UserDefined options from a configuration.

Valid Values: true | false

value_options: Option<Vec<String>>

If specified, values for the configuration option are selected from this list.

value_type: Option<String>

An indication of which type of values this option has and whether it is allowable to select one or more than one of the possible values:

Trait Implementations

impl PartialEq<ConfigurationOptionDescription> for ConfigurationOptionDescription[src]

impl Default for ConfigurationOptionDescription[src]

impl Clone for ConfigurationOptionDescription[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for ConfigurationOptionDescription[src]

Auto Trait Implementations

impl Send for ConfigurationOptionDescription

impl Sync for ConfigurationOptionDescription

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]

type Owned = T

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

type Error = !

🔬 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> BorrowMut for T where
    T: ?Sized
[src]

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

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

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

impl<T> Erased for T

impl<T> Same for T

type Output = T

Should always be Self