@nolanrigo/cloudformation
Version:
TypeScript-based imperative way to define AWS CloudFormation templates
19 lines (18 loc) • 617 B
TypeScript
import { ResourceBase } from "../../resource";
import { Value } from "../../data-types";
export declare class Validity {
Value: Value<number>;
Type: Value<string>;
constructor(properties: Validity);
}
export interface CertificateProperties {
CertificateAuthorityArn: Value<string>;
CertificateSigningRequest: Value<string>;
SigningAlgorithm: Value<string>;
TemplateArn?: Value<string>;
Validity: Validity;
}
export default class Inner_Certificate extends ResourceBase<CertificateProperties> {
static Validity: typeof Validity;
constructor(properties: CertificateProperties);
}