[][src]Struct rusoto_route53resolver::ResolverRule

pub struct ResolverRule {
    pub arn: Option<String>,
    pub creator_request_id: Option<String>,
    pub domain_name: Option<String>,
    pub id: Option<String>,
    pub name: Option<String>,
    pub owner_id: Option<String>,
    pub resolver_endpoint_id: Option<String>,
    pub rule_type: Option<String>,
    pub share_status: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub target_ips: Option<Vec<TargetAddress>>,
}

For queries that originate in your VPC, detailed information about a resolver rule, which specifies how to route DNS queries out of the VPC. The ResolverRule parameter appears in the response to a CreateResolverRule, DeleteResolverRule, GetResolverRule, ListResolverRules, or UpdateResolverRule request.

Fields

arn: Option<String>

The ARN (Amazon Resource Name) for the resolver rule specified by Id.

creator_request_id: Option<String>

A unique string that you specified when you created the resolver rule. CreatorRequestIdidentifies the request and allows failed requests to be retried without the risk of executing the operation twice.

domain_name: Option<String>

DNS queries for this domain name are forwarded to the IP addresses that are specified in TargetIps. If a query matches multiple resolver rules (example.com and www.example.com), the query is routed using the resolver rule that contains the most specific domain name (www.example.com).

id: Option<String>

The ID that Resolver assigned to the resolver rule when you created it.

name: Option<String>

The name for the resolver rule, which you specified when you created the resolver rule.

owner_id: Option<String>

When a rule is shared with another AWS account, the account ID of the account that the rule is shared with.

resolver_endpoint_id: Option<String>

The ID of the endpoint that the rule is associated with.

rule_type: Option<String>

This value is always FORWARD. Other resolver rule types aren't supported.

share_status: Option<String>

Whether the rules is shared and, if so, whether the current account is sharing the rule with another account, or another account is sharing the rule with the current account.

status: Option<String>

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

status_message: Option<String>

A detailed description of the status of a resolver rule.

target_ips: Option<Vec<TargetAddress>>

An array that contains the IP addresses and ports that you want to forward

Trait Implementations

impl Clone for ResolverRule[src]

impl Debug for ResolverRule[src]

impl Default for ResolverRule[src]

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

impl PartialEq<ResolverRule> for ResolverRule[src]

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