typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
23 lines (22 loc) • 998 B
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type CustomResource_Type = 'AWS::CloudFormation::CustomResource';
export declare const CustomResource_Type = "AWS::CloudFormation::CustomResource";
/**
* Resource Type definition for AWS::CloudFormation::CustomResource
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html}
*/
export default function CustomResource(props: CustomResource_Properties): CfnResource<CustomResource_Properties>;
/**
* Resource Type definition for AWS::CloudFormation::CustomResource
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html}
*/
export declare type CustomResource_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html#cfn-customresource-servicetoken}
*/
ServiceToken: Resolvable<string>;
};