typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
25 lines (24 loc) • 922 B
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Graph_Type = 'AWS::Detective::Graph';
export declare const Graph_Type = "AWS::Detective::Graph";
/**
* Resource schema for AWS::Detective::Graph {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html}
*/
export default function Graph(props: Graph_Properties): CfnResource<Graph_Properties>;
/**
* Resource schema for AWS::Detective::Graph {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html}
*/
export declare type Graph_Properties = {
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-detective-graph.html#cfn-detective-graph-tags}
*/
Tags?: Tag[];
};
export declare type Tag = {
Key?: Resolvable<string>;
Value?: Resolvable<string>;
};