RecipeArgs

data class RecipeArgs(val description: Output<String>? = null, val name: Output<String>? = null, val steps: Output<List<RecipeStepArgs>>? = null, val tags: Output<List<CreateOnlyTagArgs>>? = null) : ConvertibleToJava<RecipeArgs>

Resource schema for AWS::DataBrew::Recipe.

Example Usage

Example

No Java example available.

Constructors

Link copied to clipboard
constructor(description: Output<String>? = null, name: Output<String>? = null, steps: Output<List<RecipeStepArgs>>? = null, tags: Output<List<CreateOnlyTagArgs>>? = null)

Properties

Link copied to clipboard
val description: Output<String>? = null

Description of the recipe

Link copied to clipboard
val name: Output<String>? = null

Recipe name

Link copied to clipboard
val steps: Output<List<RecipeStepArgs>>? = null

A list of steps that are defined by the recipe.

Link copied to clipboard
val tags: Output<List<CreateOnlyTagArgs>>? = null

Metadata tags that have been applied to the recipe.

Functions

Link copied to clipboard
open override fun toJava(): RecipeArgs