[][src]Struct rusoto_ec2::PrivateDnsNameConfiguration

pub struct PrivateDnsNameConfiguration {
    pub name: Option<String>,
    pub state: Option<String>,
    pub type_: Option<String>,
    pub value: Option<String>,
}

Information about the private DNS name for the service endpoint. For more information about these parameters, see VPC Endpoint Service Private DNS Name Verification in the Amazon Virtual Private Cloud User Guide.

Fields

name: Option<String>

The name of the record subdomain the service provider needs to create. The service provider adds the value text to the name.

state: Option<String>

The verification state of the VPC endpoint service.

>Consumers of the endpoint service can use the private name only when the state is verified.

type_: Option<String>

The endpoint service verification type, for example TXT.

value: Option<String>

The value the service provider adds to the private DNS name domain record before verification.

Trait Implementations

impl Clone for PrivateDnsNameConfiguration[src]

impl Debug for PrivateDnsNameConfiguration[src]

impl Default for PrivateDnsNameConfiguration[src]

impl PartialEq<PrivateDnsNameConfiguration> for PrivateDnsNameConfiguration[src]

impl StructuralPartialEq for PrivateDnsNameConfiguration[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.