[][src]Struct rusoto_route53resolver::ResolverRuleAssociation

pub struct ResolverRuleAssociation {
    pub id: Option<String>,
    pub name: Option<String>,
    pub resolver_rule_id: Option<String>,
    pub status: Option<String>,
    pub status_message: Option<String>,
    pub vpc_id: Option<String>,
}

In the response to an AssociateResolverRule, DisassociateResolverRule, or ListResolverRuleAssociations request, information about an association between a resolver rule and a VPC.

Fields

id: Option<String>

The ID of the association between a resolver rule and a VPC. Resolver assigns this value when you submit an AssociateResolverRule request.

name: Option<String>

The name of an association between a resolver rule and a VPC.

resolver_rule_id: Option<String>

The ID of the resolver rule that you associated with the VPC that is specified by VPCId.

status: Option<String>

A code that specifies the current status of the association between a resolver rule and a VPC.

status_message: Option<String>

A detailed description of the status of the association between a resolver rule and a VPC.

vpc_id: Option<String>

The ID of the VPC that you associated the resolver rule with.

Trait Implementations

impl Clone for ResolverRuleAssociation[src]

impl Debug for ResolverRuleAssociation[src]

impl Default for ResolverRuleAssociation[src]

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

impl PartialEq<ResolverRuleAssociation> for ResolverRuleAssociation[src]

impl StructuralPartialEq for ResolverRuleAssociation[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, 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> Sealed<T> for T where
    T: ?Sized

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.