import { Route53ResolverClient } from "./Route53ResolverClient"; import { AssociateResolverEndpointIpAddressInput } from "./types/AssociateResolverEndpointIpAddressInput"; import { AssociateResolverEndpointIpAddressOutput } from "./types/AssociateResolverEndpointIpAddressOutput"; import { AssociateResolverRuleInput } from "./types/AssociateResolverRuleInput"; import { AssociateResolverRuleOutput } from "./types/AssociateResolverRuleOutput"; import { CreateResolverEndpointInput } from "./types/CreateResolverEndpointInput"; import { CreateResolverEndpointOutput } from "./types/CreateResolverEndpointOutput"; import { CreateResolverRuleInput } from "./types/CreateResolverRuleInput"; import { CreateResolverRuleOutput } from "./types/CreateResolverRuleOutput"; import { DeleteResolverEndpointInput } from "./types/DeleteResolverEndpointInput"; import { DeleteResolverEndpointOutput } from "./types/DeleteResolverEndpointOutput"; import { DeleteResolverRuleInput } from "./types/DeleteResolverRuleInput"; import { DeleteResolverRuleOutput } from "./types/DeleteResolverRuleOutput"; import { DisassociateResolverEndpointIpAddressInput } from "./types/DisassociateResolverEndpointIpAddressInput"; import { DisassociateResolverEndpointIpAddressOutput } from "./types/DisassociateResolverEndpointIpAddressOutput"; import { DisassociateResolverRuleInput } from "./types/DisassociateResolverRuleInput"; import { DisassociateResolverRuleOutput } from "./types/DisassociateResolverRuleOutput"; import { GetResolverEndpointInput } from "./types/GetResolverEndpointInput"; import { GetResolverEndpointOutput } from "./types/GetResolverEndpointOutput"; import { GetResolverRuleAssociationInput } from "./types/GetResolverRuleAssociationInput"; import { GetResolverRuleAssociationOutput } from "./types/GetResolverRuleAssociationOutput"; import { GetResolverRuleInput } from "./types/GetResolverRuleInput"; import { GetResolverRuleOutput } from "./types/GetResolverRuleOutput"; import { GetResolverRulePolicyInput } from "./types/GetResolverRulePolicyInput"; import { GetResolverRulePolicyOutput } from "./types/GetResolverRulePolicyOutput"; import { ListResolverEndpointIpAddressesInput } from "./types/ListResolverEndpointIpAddressesInput"; import { ListResolverEndpointIpAddressesOutput } from "./types/ListResolverEndpointIpAddressesOutput"; import { ListResolverEndpointsInput } from "./types/ListResolverEndpointsInput"; import { ListResolverEndpointsOutput } from "./types/ListResolverEndpointsOutput"; import { ListResolverRuleAssociationsInput } from "./types/ListResolverRuleAssociationsInput"; import { ListResolverRuleAssociationsOutput } from "./types/ListResolverRuleAssociationsOutput"; import { ListResolverRulesInput } from "./types/ListResolverRulesInput"; import { ListResolverRulesOutput } from "./types/ListResolverRulesOutput"; import { ListTagsForResourceInput } from "./types/ListTagsForResourceInput"; import { ListTagsForResourceOutput } from "./types/ListTagsForResourceOutput"; import { PutResolverRulePolicyInput } from "./types/PutResolverRulePolicyInput"; import { PutResolverRulePolicyOutput } from "./types/PutResolverRulePolicyOutput"; import { TagResourceInput } from "./types/TagResourceInput"; import { TagResourceOutput } from "./types/TagResourceOutput"; import { UntagResourceInput } from "./types/UntagResourceInput"; import { UntagResourceOutput } from "./types/UntagResourceOutput"; import { UpdateResolverEndpointInput } from "./types/UpdateResolverEndpointInput"; import { UpdateResolverEndpointOutput } from "./types/UpdateResolverEndpointOutput"; import { UpdateResolverRuleInput } from "./types/UpdateResolverRuleInput"; import { UpdateResolverRuleOutput } from "./types/UpdateResolverRuleOutput"; export declare class Route53Resolver extends Route53ResolverClient { /** *

Adds IP addresses to an inbound or an outbound resolver endpoint. If you want to adding more than one IP address, submit one AssociateResolverEndpointIpAddress request for each IP address.

To remove an IP address from an endpoint, see DisassociateResolverEndpointIpAddress.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidRequestException}

The request is invalid.

* - {ResourceExistsException}

The resource that you tried to create already exists.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {LimitExceededException}

The request caused one or more limits to be exceeded.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ associateResolverEndpointIpAddress(args: AssociateResolverEndpointIpAddressInput): Promise; associateResolverEndpointIpAddress(args: AssociateResolverEndpointIpAddressInput, cb: (err: any, data?: AssociateResolverEndpointIpAddressOutput) => void): void; /** *

Associates a resolver rule with a VPC. When you associate a rule with a VPC, Resolver forwards all DNS queries for the domain name that is specified in the rule and that originate in the VPC. The queries are forwarded to the IP addresses for the DNS resolvers that are specified in the rule. For more information about rules, see CreateResolverRule.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidRequestException}

The request is invalid.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {ResourceUnavailableException}

The specified resource isn't available.

* - {ResourceExistsException}

The resource that you tried to create already exists.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ associateResolverRule(args: AssociateResolverRuleInput): Promise; associateResolverRule(args: AssociateResolverRuleInput, cb: (err: any, data?: AssociateResolverRuleOutput) => void): void; /** *

Creates a resolver endpoint. There are two types of resolver endpoints, inbound and outbound:

* * This operation may fail with one of the following errors: * - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidRequestException}

The request is invalid.

* - {ResourceExistsException}

The resource that you tried to create already exists.

* - {LimitExceededException}

The request caused one or more limits to be exceeded.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ createResolverEndpoint(args: CreateResolverEndpointInput): Promise; createResolverEndpoint(args: CreateResolverEndpointInput, cb: (err: any, data?: CreateResolverEndpointOutput) => void): void; /** *

For DNS queries that originate in your VPCs, specifies which resolver endpoint the queries pass through, one domain name that you want to forward to your network, and the IP addresses of the DNS resolvers in your network.

* * This operation may fail with one of the following errors: * - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidRequestException}

The request is invalid.

* - {LimitExceededException}

The request caused one or more limits to be exceeded.

* - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {ResourceExistsException}

The resource that you tried to create already exists.

* - {ResourceUnavailableException}

The specified resource isn't available.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ createResolverRule(args: CreateResolverRuleInput): Promise; createResolverRule(args: CreateResolverRuleInput, cb: (err: any, data?: CreateResolverRuleOutput) => void): void; /** *

Deletes a resolver endpoint. The effect of deleting a resolver endpoint depends on whether it's an inbound or an outbound resolver endpoint:

  • Inbound: DNS queries from your network or another VPC are no longer routed to the DNS service for the specified VPC.

  • Outbound: DNS queries from a VPC are no longer routed to your network or to another VPC.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidRequestException}

The request is invalid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ deleteResolverEndpoint(args: DeleteResolverEndpointInput): Promise; deleteResolverEndpoint(args: DeleteResolverEndpointInput, cb: (err: any, data?: DeleteResolverEndpointOutput) => void): void; /** *

Deletes a resolver rule. Before you can delete a resolver rule, you must disassociate it from all the VPCs that you associated the resolver rule with. For more infomation, see DisassociateResolverRule.

* * This operation may fail with one of the following errors: * - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {ResourceInUseException}

The resource that you tried to update or delete is currently in use.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ deleteResolverRule(args: DeleteResolverRuleInput): Promise; deleteResolverRule(args: DeleteResolverRuleInput, cb: (err: any, data?: DeleteResolverRuleOutput) => void): void; /** *

Removes IP addresses from an inbound or an outbound resolver endpoint. If you want to remove more than one IP address, submit one DisassociateResolverEndpointIpAddress request for each IP address.

To add an IP address to an endpoint, see AssociateResolverEndpointIpAddress.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidRequestException}

The request is invalid.

* - {ResourceExistsException}

The resource that you tried to create already exists.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ disassociateResolverEndpointIpAddress(args: DisassociateResolverEndpointIpAddressInput): Promise; disassociateResolverEndpointIpAddress(args: DisassociateResolverEndpointIpAddressInput, cb: (err: any, data?: DisassociateResolverEndpointIpAddressOutput) => void): void; /** *

Removes the association between a specified resolver rule and a specified VPC.

If you disassociate a resolver rule from a VPC, Resolver stops forwarding DNS queries for the domain name that you specified in the resolver rule.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ disassociateResolverRule(args: DisassociateResolverRuleInput): Promise; disassociateResolverRule(args: DisassociateResolverRuleInput, cb: (err: any, data?: DisassociateResolverRuleOutput) => void): void; /** *

Gets information about a specified resolver endpoint, such as whether it's an inbound or an outbound resolver endpoint, and the current status of the endpoint.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ getResolverEndpoint(args: GetResolverEndpointInput): Promise; getResolverEndpoint(args: GetResolverEndpointInput, cb: (err: any, data?: GetResolverEndpointOutput) => void): void; /** *

Gets information about a specified resolver rule, such as the domain name that the rule forwards DNS queries for and the ID of the outbound resolver endpoint that the rule is associated with.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ getResolverRule(args: GetResolverRuleInput): Promise; getResolverRule(args: GetResolverRuleInput, cb: (err: any, data?: GetResolverRuleOutput) => void): void; /** *

Gets information about an association between a specified resolver rule and a VPC. You associate a resolver rule and a VPC using AssociateResolverRule.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ getResolverRuleAssociation(args: GetResolverRuleAssociationInput): Promise; getResolverRuleAssociation(args: GetResolverRuleAssociationInput, cb: (err: any, data?: GetResolverRuleAssociationOutput) => void): void; /** *

Gets information about a resolver rule policy. A resolver rule policy specifies the Resolver operations and resources that you want to allow another AWS account to be able to use.

* * This operation may fail with one of the following errors: * - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {UnknownResourceException}

The specified resource doesn't exist.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ getResolverRulePolicy(args: GetResolverRulePolicyInput): Promise; getResolverRulePolicy(args: GetResolverRulePolicyInput, cb: (err: any, data?: GetResolverRulePolicyOutput) => void): void; /** *

Gets the IP addresses for a specified resolver endpoint.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {InvalidNextTokenException}

The value that you specified for NextToken in a List request isn't valid.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ listResolverEndpointIpAddresses(args: ListResolverEndpointIpAddressesInput): Promise; listResolverEndpointIpAddresses(args: ListResolverEndpointIpAddressesInput, cb: (err: any, data?: ListResolverEndpointIpAddressesOutput) => void): void; /** *

Lists all the resolver endpoints that were created using the current AWS account.

* * This operation may fail with one of the following errors: * - {InvalidNextTokenException}

The value that you specified for NextToken in a List request isn't valid.

* - {InvalidRequestException}

The request is invalid.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ listResolverEndpoints(args: ListResolverEndpointsInput): Promise; listResolverEndpoints(args: ListResolverEndpointsInput, cb: (err: any, data?: ListResolverEndpointsOutput) => void): void; /** *

Lists the associations that were created between resolver rules and VPCs using the current AWS account.

* * This operation may fail with one of the following errors: * - {InvalidNextTokenException}

The value that you specified for NextToken in a List request isn't valid.

* - {InvalidRequestException}

The request is invalid.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ listResolverRuleAssociations(args: ListResolverRuleAssociationsInput): Promise; listResolverRuleAssociations(args: ListResolverRuleAssociationsInput, cb: (err: any, data?: ListResolverRuleAssociationsOutput) => void): void; /** *

Lists the resolver rules that were created using the current AWS account.

* * This operation may fail with one of the following errors: * - {InvalidNextTokenException}

The value that you specified for NextToken in a List request isn't valid.

* - {InvalidRequestException}

The request is invalid.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ listResolverRules(args: ListResolverRulesInput): Promise; listResolverRules(args: ListResolverRulesInput, cb: (err: any, data?: ListResolverRulesOutput) => void): void; /** *

Lists the tags that you associated with the specified resource.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidNextTokenException}

The value that you specified for NextToken in a List request isn't valid.

* - {InvalidRequestException}

The request is invalid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ listTagsForResource(args: ListTagsForResourceInput): Promise; listTagsForResource(args: ListTagsForResourceInput, cb: (err: any, data?: ListTagsForResourceOutput) => void): void; /** *

Specifies the Resolver operations and resources that you want to allow another AWS account to be able to use.

* * This operation may fail with one of the following errors: * - {InvalidPolicyDocument}

The specified resolver rule policy is invalid.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {UnknownResourceException}

The specified resource doesn't exist.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ putResolverRulePolicy(args: PutResolverRulePolicyInput): Promise; putResolverRulePolicy(args: PutResolverRulePolicyInput, cb: (err: any, data?: PutResolverRulePolicyOutput) => void): void; /** *

Adds one or more tags to a specified resource.

* * This operation may fail with one of the following errors: * - {LimitExceededException}

The request caused one or more limits to be exceeded.

* - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidTagException}

The specified tag is invalid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ tagResource(args: TagResourceInput): Promise; tagResource(args: TagResourceInput, cb: (err: any, data?: TagResourceOutput) => void): void; /** *

Removes one or more tags from a specified resource.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ untagResource(args: UntagResourceInput): Promise; untagResource(args: UntagResourceInput, cb: (err: any, data?: UntagResourceOutput) => void): void; /** *

Updates the name of an inbound or an outbound resolver endpoint.

* * This operation may fail with one of the following errors: * - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {InvalidRequestException}

The request is invalid.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ updateResolverEndpoint(args: UpdateResolverEndpointInput): Promise; updateResolverEndpoint(args: UpdateResolverEndpointInput, cb: (err: any, data?: UpdateResolverEndpointOutput) => void): void; /** *

Updates settings for a specified resolver rule. ResolverRuleId is required, and all other parameters are optional. If you don't specify a parameter, it retains its current value.

* * This operation may fail with one of the following errors: * - {InvalidRequestException}

The request is invalid.

* - {InvalidParameterException}

One or more parameters in this request are not valid.

* - {ResourceNotFoundException}

The specified resource doesn't exist.

* - {ResourceUnavailableException}

The specified resource isn't available.

* - {LimitExceededException}

The request caused one or more limits to be exceeded.

* - {InternalServiceErrorException}

We encountered an unknown error. Try again in a few minutes.

* - {ThrottlingException}

The request was throttled. Try again in a few minutes.

* - {Error} An error originating from the SDK or customizations rather than the service */ updateResolverRule(args: UpdateResolverRuleInput): Promise; updateResolverRule(args: UpdateResolverRuleInput, cb: (err: any, data?: UpdateResolverRuleOutput) => void): void; }