Struct rusoto_ds::IpRoute[][src]

pub struct IpRoute {
    pub cidr_ip: Option<String>,
    pub description: Option<String>,
}

IP address block. This is often the address block of the DNS server used for your on-premises domain.

Fields

IP address block using CIDR format, for example 10.0.0.0/24. This is often the address block of the DNS server used for your on-premises domain. For a single IP address use a CIDR address block with /32. For example 10.0.0.0/32.

Description of the address block.

Trait Implementations

impl Default for IpRoute
[src]

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

impl Debug for IpRoute
[src]

Formats the value using the given formatter. Read more

impl Clone for IpRoute
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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

impl Send for IpRoute

impl Sync for IpRoute