typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
33 lines (32 loc) • 1.54 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Account_Type = 'AWS::CertificateManager::Account';
export declare const Account_Type = "AWS::CertificateManager::Account";
/**
* Resource schema for AWS::CertificateManager::Account. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html}
*/
export default function Account(props: Account_Properties): CfnResource<Account_Properties>;
/**
* Resource schema for AWS::CertificateManager::Account. {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html}
*/
export declare type Account_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-certificatemanager-account.html#cfn-certificatemanager-account-expiryeventsconfiguration}
*/
ExpiryEventsConfiguration: ExpiryEventsConfiguration;
AccountId?: AccountId;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-account-expiryeventsconfiguration.html}
*/
export declare type ExpiryEventsConfiguration = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-certificatemanager-account-expiryeventsconfiguration.html#cfn-certificatemanager-account-expiryeventsconfiguration-daysbeforeexpiry}
*/
DaysBeforeExpiry?: Resolvable<number>;
};
export declare type AccountId = Resolvable<string>;