typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
26 lines (25 loc) • 1.1 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type ResourceGroup_Type = 'AWS::Inspector::ResourceGroup';
export declare const ResourceGroup_Type = "AWS::Inspector::ResourceGroup";
/**
* Resource Type definition for AWS::Inspector::ResourceGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html}
*/
export default function ResourceGroup(props: ResourceGroup_Properties): CfnResource<ResourceGroup_Properties>;
/**
* Resource Type definition for AWS::Inspector::ResourceGroup {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html}
*/
export declare type ResourceGroup_Properties = {
Id?: Resolvable<string>;
Arn?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-inspector-resourcegroup.html#cfn-inspector-resourcegroup-resourcegrouptags}
*/
ResourceGroupTags: Tag[];
};
export declare type Tag = {
Key: Resolvable<string>;
Value: Resolvable<string>;
};