typed-aws
Version:
Helps you write AWS CloudFormation in TypeScript
40 lines (39 loc) • 1.5 kB
TypeScript
import { CfnResource, Resolvable } from '../../base';
export declare type Workflow_Type = 'AWS::Glue::Workflow';
export declare const Workflow_Type = "AWS::Glue::Workflow";
/**
* Resource Type definition for AWS::Glue::Workflow {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html}
*/
export default function Workflow(props: Workflow_Properties): CfnResource<Workflow_Properties>;
/**
* Resource Type definition for AWS::Glue::Workflow {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html}
*/
export declare type Workflow_Properties = {
Id?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-description}
*/
Description?: Resolvable<string>;
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-defaultrunproperties}
*/
DefaultRunProperties?: {
[k: string]: unknown;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-tags}
*/
Tags?: {
[k: string]: unknown;
};
/**
* {@link
* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-workflow.html#cfn-glue-workflow-name}
*/
Name?: Resolvable<string>;
};