We are excited to announce the developer preview of our new API documentation for AWS SDK for JavaScript v3. Please follow instructions on the landing page to leave us your feedback.
Protected
Lists the configurations for DNSSEC validation that are associated with the current Amazon Web Services account.
Use a bare-bones client and the command you need to make an API call.
import { Route53ResolverClient, ListResolverDnssecConfigsCommand } from "@aws-sdk/client-route53resolver"; // ES Modules import// const { Route53ResolverClient, ListResolverDnssecConfigsCommand } = require("@aws-sdk/client-route53resolver"); // CommonJS importconst client = new Route53ResolverClient(config);const input = { // ListResolverDnssecConfigsRequest MaxResults: Number("int"), NextToken: "STRING_VALUE", Filters: [ // Filters { // Filter Name: "STRING_VALUE", Values: [ // FilterValues "STRING_VALUE", ], }, ],};const command = new ListResolverDnssecConfigsCommand(input);const response = await client.send(command);// { // ListResolverDnssecConfigsResponse// NextToken: "STRING_VALUE",// ResolverDnssecConfigs: [ // ResolverDnssecConfigList// { // ResolverDnssecConfig// Id: "STRING_VALUE",// OwnerId: "STRING_VALUE",// ResourceId: "STRING_VALUE",// ValidationStatus: "ENABLING" || "ENABLED" || "DISABLING" || "DISABLED" || "UPDATING_TO_USE_LOCAL_RESOURCE_SETTING" || "USE_LOCAL_RESOURCE_SETTING",// },// ],// };
ListResolverDnssecConfigsCommandInput
ListResolverDnssecConfigsCommandOutput
input
response
config
AccessDeniedException (client fault)
The current account doesn't have the IAM permissions required to perform the specified Resolver operation.
InternalServiceErrorException (client fault)
We encountered an unknown error. Try again in a few minutes.
InvalidNextTokenException (client fault)
The value that you specified for NextToken in a List request isn't valid.
NextToken
List
InvalidParameterException (client fault)
One or more parameters in this request are not valid.
InvalidRequestException (client fault)
The request is invalid.
ThrottlingException (client fault)
The request was throttled. Try again in a few minutes.
Route53ResolverServiceException
Base exception class for all service exceptions from Route53Resolver service.
Readonly
Static
Lists the configurations for DNSSEC validation that are associated with the current Amazon Web Services account.
Example
Use a bare-bones client and the command you need to make an API call.
Param
ListResolverDnssecConfigsCommandInput
Returns
ListResolverDnssecConfigsCommandOutput
See
input
shape.response
shape.config
shape.Throws
AccessDeniedException (client fault)
The current account doesn't have the IAM permissions required to perform the specified Resolver operation.
Throws
InternalServiceErrorException (client fault)
We encountered an unknown error. Try again in a few minutes.
Throws
InvalidNextTokenException (client fault)
The value that you specified for
NextToken
in aList
request isn't valid.Throws
InvalidParameterException (client fault)
One or more parameters in this request are not valid.
Throws
InvalidRequestException (client fault)
The request is invalid.
Throws
ThrottlingException (client fault)
The request was throttled. Try again in a few minutes.
Throws
Route53ResolverServiceException
Base exception class for all service exceptions from Route53Resolver service.