Struct rusoto_elasticbeanstalk::OptionRestrictionRegex[][src]

pub struct OptionRestrictionRegex {
    pub label: Option<String>,
    pub pattern: Option<String>,
}

A regular expression representing a restriction on a string configuration option value.

Fields

A unique name representing this regular expression.

The regular expression pattern that a string configuration option value with this restriction must match.

Trait Implementations

impl Default for OptionRestrictionRegex
[src]

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

impl Debug for OptionRestrictionRegex
[src]

Formats the value using the given formatter. Read more

impl Clone for OptionRestrictionRegex
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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