getResolverDnssecConfig method
Gets DNSSEC validation information for a specified resource.
May throw AccessDeniedException.
May throw InternalServiceErrorException.
May throw InvalidParameterException.
May throw InvalidRequestException.
May throw ResourceNotFoundException.
May throw ThrottlingException.
Parameter resourceId :
The ID of the virtual private cloud (VPC) for the DNSSEC validation
status.
Implementation
Future<GetResolverDnssecConfigResponse> getResolverDnssecConfig({
required String resourceId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target': 'Route53Resolver.GetResolverDnssecConfig'
};
final jsonResponse = await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'ResourceId': resourceId,
},
);
return GetResolverDnssecConfigResponse.fromJson(jsonResponse.body);
}