typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
43 lines (42 loc) • 1.71 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Archive_Type = 'AWS::Events::Archive';
export declare const Archive_Type = "AWS::Events::Archive";
/**
* Resource Type definition for AWS::Events::Archive {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html}
*/
export default function Archive(props: Archive_Properties): CfnResource<Archive_Properties>;
/**
* Resource Type definition for AWS::Events::Archive {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html}
*/
export declare type Archive_Properties = {
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-archivename}
*/
ArchiveName?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-sourcearn}
*/
SourceArn: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-description}
*/
Description?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-eventpattern}
*/
EventPattern?: {
[k: string]: unknown;
};
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-events-archive.html#cfn-events-archive-retentiondays}
*/
RetentionDays?: Resolvable<number>;
};