[][src]Struct rusoto_ec2::DhcpOptions

pub struct DhcpOptions {
    pub dhcp_configurations: Option<Vec<DhcpConfiguration>>,
    pub dhcp_options_id: Option<String>,
    pub owner_id: Option<String>,
    pub tags: Option<Vec<Tag>>,
}

Describes a set of DHCP options.

Fields

dhcp_configurations: Option<Vec<DhcpConfiguration>>

One or more DHCP options in the set.

dhcp_options_id: Option<String>

The ID of the set of DHCP options.

owner_id: Option<String>

The ID of the AWS account that owns the DHCP options set.

tags: Option<Vec<Tag>>

Any tags assigned to the DHCP options set.

Trait Implementations

impl Clone for DhcpOptions[src]

impl Debug for DhcpOptions[src]

impl Default for DhcpOptions[src]

impl PartialEq<DhcpOptions> for DhcpOptions[src]

impl StructuralPartialEq for DhcpOptions[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

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

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.