UNPKG

typed-aws

Version:

Helps you write AWS CloudFormation in TypeScript

40 lines (39 loc) 1.57 kB
import { CfnResource, Resolvable } from '../../base'; export declare type Schedule_Type = 'AWS::DataBrew::Schedule'; export declare const Schedule_Type = "AWS::DataBrew::Schedule"; /** * Resource schema for AWS::DataBrew::Schedule. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html} */ export default function Schedule(props: Schedule_Properties): CfnResource<Schedule_Properties>; /** * Resource schema for AWS::DataBrew::Schedule. {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html} */ export declare type Schedule_Properties = { /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html#cfn-databrew-schedule-jobnames} */ JobNames?: JobName[]; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html#cfn-databrew-schedule-cronexpression} */ CronExpression: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html#cfn-databrew-schedule-name} */ Name: Resolvable<string>; /** * {@link * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-databrew-schedule.html#cfn-databrew-schedule-tags} */ Tags?: Tag[]; }; export declare type JobName = Resolvable<string>; export declare type Tag = { Key: Resolvable<string>; Value: Resolvable<string>; };