[][src]Struct rusoto_route53resolver::CreateResolverEndpointRequest

pub struct CreateResolverEndpointRequest {
    pub creator_request_id: String,
    pub direction: String,
    pub ip_addresses: Vec<IpAddressRequest>,
    pub name: Option<String>,
    pub security_group_ids: Vec<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

creator_request_id: String

A unique string that identifies the request and that allows failed requests to be retried without the risk of executing the operation twice. CreatorRequestId can be any unique string, for example, a date/time stamp.

direction: String

Specify the applicable value:

  • INBOUND: Resolver forwards DNS queries to the DNS service for a VPC from your network or another VPC

  • OUTBOUND: Resolver forwards DNS queries from the DNS service for a VPC to your network or another VPC

ip_addresses: Vec<IpAddressRequest>

The subnets and IP addresses in your VPC that you want DNS queries to pass through on the way from your VPCs to your network (for outbound endpoints) or on the way from your network to your VPCs (for inbound resolver endpoints).

name: Option<String>

A friendly name that lets you easily find a configuration in the Resolver dashboard in the Route 53 console.

security_group_ids: Vec<String>

The ID of one or more security groups that you want to use to control access to this VPC. The security group that you specify must include one or more inbound rules (for inbound resolver endpoints) or outbound rules (for outbound resolver endpoints).

tags: Option<Vec<Tag>>

A list of the tag keys and values that you want to associate with the endpoint.

Trait Implementations

impl Clone for CreateResolverEndpointRequest[src]

impl Debug for CreateResolverEndpointRequest[src]

impl Default for CreateResolverEndpointRequest[src]

impl PartialEq<CreateResolverEndpointRequest> for CreateResolverEndpointRequest[src]

impl Serialize for CreateResolverEndpointRequest[src]

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