@pulumi/aws-native
Version:
The Pulumi AWS Cloud Control Provider enables you to build, deploy, and manage [any AWS resource that's supported by the AWS Cloud Control API](https://github.com/pulumi/pulumi-aws-native/blob/master/provider/cmd/pulumi-gen-aws-native/supported-types.txt)
37 lines (36 loc) • 996 B
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Resource schema for AWS::DataBrew::Schedule.
*/
export declare function getSchedule(args: GetScheduleArgs, opts?: pulumi.InvokeOptions): Promise<GetScheduleResult>;
export interface GetScheduleArgs {
/**
* Schedule Name
*/
name: string;
}
export interface GetScheduleResult {
/**
* Schedule cron
*/
readonly cronExpression?: string;
/**
* A list of jobs to be run, according to the schedule.
*/
readonly jobNames?: string[];
/**
* Metadata tags that have been applied to the schedule.
*/
readonly tags?: outputs.Tag[];
}
/**
* Resource schema for AWS::DataBrew::Schedule.
*/
export declare function getScheduleOutput(args: GetScheduleOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetScheduleResult>;
export interface GetScheduleOutputArgs {
/**
* Schedule Name
*/
name: pulumi.Input<string>;
}