Struct rusoto_dax::CreateSubnetGroupRequest[][src]

pub struct CreateSubnetGroupRequest {
    pub description: Option<String>,
    pub subnet_group_name: String,
    pub subnet_ids: Vec<String>,
}

Fields

A description for the subnet group

A name for the subnet group. This value is stored as a lowercase string.

A list of VPC subnet IDs for the subnet group.

Trait Implementations

impl Default for CreateSubnetGroupRequest
[src]

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

impl Debug for CreateSubnetGroupRequest
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateSubnetGroupRequest
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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