Struct rusoto_cognito_idp::StringAttributeConstraintsType[][src]

pub struct StringAttributeConstraintsType {
    pub max_length: Option<String>,
    pub min_length: Option<String>,
}

The constraints associated with a string attribute.

Fields

The maximum length.

The minimum length.

Trait Implementations

impl Default for StringAttributeConstraintsType
[src]

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

impl Debug for StringAttributeConstraintsType
[src]

Formats the value using the given formatter. Read more

impl Clone for StringAttributeConstraintsType
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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