[][src]Struct rusoto_route53resolver::ResolverEndpoint

pub struct ResolverEndpoint {
    pub arn: Option<String>,
    pub creation_time: Option<String>,
    pub creator_request_id: Option<String>,
    pub direction: Option<String>,
    pub host_vpc_id: Option<String>,
    pub id: Option<String>,
    pub ip_address_count: Option<i64>,
    pub modification_time: Option<String>,
    pub name: Option<String>,
    pub security_group_ids: Option<Vec<String>>,
    pub status: Option<String>,
    pub status_message: Option<String>,
}

In the response to a CreateResolverEndpoint, DeleteResolverEndpoint, GetResolverEndpoint, ListResolverEndpoints, or UpdateResolverEndpoint request, a complex type that contains settings for an existing inbound or outbound resolver endpoint.

Fields

arn: Option<String>

The ARN (Amazon Resource Name) for the resolver endpoint.

creation_time: Option<String>

The date and time that the endpoint was created, in Unix time format and Coordinated Universal Time (UTC).

creator_request_id: Option<String>

A unique string that identifies the request that created the resolver endpoint. The CreatorRequestId allows failed requests to be retried without the risk of executing the operation twice.

direction: Option<String>

Indicates whether the resolver endpoint allows inbound or outbound DNS queries:

  • INBOUND: allows DNS queries to your VPC from your network or another VPC

  • OUTBOUND: allows DNS queries from your VPC to your network or another VPC

host_vpc_id: Option<String>

The ID of the VPC that you want to create the resolver endpoint in.

id: Option<String>

The ID of the resolver endpoint.

ip_address_count: Option<i64>

The number of IP addresses that the resolver endpoint can use for DNS queries.

modification_time: Option<String>

The date and time that the endpoint was last modified, in Unix time format and Coordinated Universal Time (UTC).

name: Option<String>

The name that you assigned to the resolver endpoint when you submitted a CreateResolverEndpoint request.

security_group_ids: Option<Vec<String>>

The ID of one or more security groups that control access to this VPC. The security group must include one or more inbound resolver rules.

status: Option<String>

A code that specifies the current status of the resolver endpoint.

status_message: Option<String>

A detailed description of the status of the resolver endpoint.

Trait Implementations

impl Clone for ResolverEndpoint[src]

impl Debug for ResolverEndpoint[src]

impl Default for ResolverEndpoint[src]

impl<'de> Deserialize<'de> for ResolverEndpoint[src]

impl PartialEq<ResolverEndpoint> for ResolverEndpoint[src]

impl StructuralPartialEq for ResolverEndpoint[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> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[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.