enableHostedZoneDNSSEC method
Enables DNSSEC signing in a specific hosted zone.
May throw ConcurrentModification.
May throw DNSSECNotFound.
May throw HostedZonePartiallyDelegated.
May throw InvalidArgument.
May throw InvalidInput.
May throw InvalidKeySigningKeyStatus.
May throw InvalidKMSArn.
May throw KeySigningKeyWithActiveStatusNotFound.
May throw NoSuchHostedZone.
Parameter hostedZoneId :
A unique string used to identify a hosted zone.
Implementation
Future<EnableHostedZoneDNSSECResponse> enableHostedZoneDNSSEC({
required String hostedZoneId,
}) async {
final $result = await _protocol.send(
method: 'POST',
requestUri:
'/2013-04-01/hostedzone/${Uri.encodeComponent(hostedZoneId)}/enable-dnssec',
exceptionFnMap: _exceptionFns,
);
return EnableHostedZoneDNSSECResponse.fromXml($result.body);
}