Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ResolverRuleAssociation

import type { ResolverRuleAssociation } from "https://aws-api.deno.dev/v0.4/services/route53resolver.ts?docs=full";

In the response to an AssociateResolverRule, DisassociateResolverRule, or ListResolverRuleAssociations request, provides information about an association between a Resolver rule and a VPC. The association determines which DNS queries that originate in the VPC are forwarded to your network.

interface ResolverRuleAssociation {
Id?: string | null;
Name?: string | null;
ResolverRuleId?: string | null;
StatusMessage?: string | null;
VPCId?: string | null;
}

§Properties

§
Id?: string | null
[src]

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

§
Name?: string | null
[src]

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

§
ResolverRuleId?: string | null
[src]

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

§

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

§
StatusMessage?: string | null
[src]

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

§
VPCId?: string | null
[src]

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