typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
22 lines (21 loc) • 901 B
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type DNSSEC_Type = 'AWS::Route53::DNSSEC';
export declare const DNSSEC_Type = "AWS::Route53::DNSSEC";
/**
* Resource used to control (enable/disable) DNSSEC in a specific hosted
* zone. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html}
*/
export default function DNSSEC(props: DNSSEC_Properties): CfnResource<DNSSEC_Properties>;
/**
* Resource used to control (enable/disable) DNSSEC in a specific hosted
* zone. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html}
*/
export declare type DNSSEC_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-route53-dnssec.html#cfn-route53-dnssec-hostedzoneid}
*/
HostedZoneId: Resolvable<string>;
};