We recommend new projects start with resources from the AWS provider.
AWS Native v0.126.0 published on Monday, Sep 30, 2024 by Pulumi
aws-native.databrew.Recipe
Explore with Pulumi AI
We recommend new projects start with resources from the AWS provider.
AWS Native v0.126.0 published on Monday, Sep 30, 2024 by Pulumi
Resource schema for AWS::DataBrew::Recipe.
Example Usage
Example
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AwsNative = Pulumi.AwsNative;
return await Deployment.RunAsync(() =>
{
var testDataBrewRecipe = new AwsNative.DataBrew.Recipe("testDataBrewRecipe", new()
{
Name = "recipe-name",
Description = "This is the recipe description.",
Steps = new[]
{
new AwsNative.DataBrew.Inputs.RecipeStepArgs
{
Action = new AwsNative.DataBrew.Inputs.RecipeActionArgs
{
Operation = "EXTRACT_PATTERN",
Parameters =
{
{ "sourceColumn", "Consulate" },
{ "pattern", "A" },
{ "targetColumn", "extract_pattern" },
},
},
ConditionExpressions = new[]
{
new AwsNative.DataBrew.Inputs.RecipeConditionExpressionArgs
{
Condition = "LESS_THAN_EQUAL",
Value = "5",
TargetColumn = "Target",
},
},
},
},
Tags = new[]
{
new AwsNative.Inputs.CreateOnlyTagArgs
{
Key = "key00AtCreate",
Value = "value001AtCreate",
},
},
});
});
package main
import (
awsnative "github.com/pulumi/pulumi-aws-native/sdk/go/aws"
"github.com/pulumi/pulumi-aws-native/sdk/go/aws/databrew"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := databrew.NewRecipe(ctx, "testDataBrewRecipe", &databrew.RecipeArgs{
Name: pulumi.String("recipe-name"),
Description: pulumi.String("This is the recipe description."),
Steps: databrew.RecipeStepArray{
&databrew.RecipeStepArgs{
Action: &databrew.RecipeActionArgs{
Operation: pulumi.String("EXTRACT_PATTERN"),
Parameters: pulumi.Any{
SourceColumn: pulumi.String("Consulate"),
Pattern: pulumi.String("A"),
TargetColumn: pulumi.String("extract_pattern"),
},
},
ConditionExpressions: databrew.RecipeConditionExpressionArray{
&databrew.RecipeConditionExpressionArgs{
Condition: pulumi.String("LESS_THAN_EQUAL"),
Value: pulumi.String("5"),
TargetColumn: pulumi.String("Target"),
},
},
},
},
Tags: aws.CreateOnlyTagArray{
&aws.CreateOnlyTagArgs{
Key: pulumi.String("key00AtCreate"),
Value: pulumi.String("value001AtCreate"),
},
},
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_aws_native as aws_native
test_data_brew_recipe = aws_native.databrew.Recipe("testDataBrewRecipe",
name="recipe-name",
description="This is the recipe description.",
steps=[{
"action": {
"operation": "EXTRACT_PATTERN",
"parameters": {
"source_column": "Consulate",
"pattern": "A",
"target_column": "extract_pattern",
},
},
"condition_expressions": [{
"condition": "LESS_THAN_EQUAL",
"value": "5",
"target_column": "Target",
}],
}],
tags=[{
"key": "key00AtCreate",
"value": "value001AtCreate",
}])
import * as pulumi from "@pulumi/pulumi";
import * as aws_native from "@pulumi/aws-native";
const testDataBrewRecipe = new aws_native.databrew.Recipe("testDataBrewRecipe", {
name: "recipe-name",
description: "This is the recipe description.",
steps: [{
action: {
operation: "EXTRACT_PATTERN",
parameters: {
sourceColumn: "Consulate",
pattern: "A",
targetColumn: "extract_pattern",
},
},
conditionExpressions: [{
condition: "LESS_THAN_EQUAL",
value: "5",
targetColumn: "Target",
}],
}],
tags: [{
key: "key00AtCreate",
value: "value001AtCreate",
}],
});
Coming soon!
Create Recipe Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Recipe(name: string, args: RecipeArgs, opts?: CustomResourceOptions);
@overload
def Recipe(resource_name: str,
args: RecipeArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Recipe(resource_name: str,
opts: Optional[ResourceOptions] = None,
steps: Optional[Sequence[RecipeStepArgs]] = None,
description: Optional[str] = None,
name: Optional[str] = None,
tags: Optional[Sequence[_root_inputs.CreateOnlyTagArgs]] = None)
func NewRecipe(ctx *Context, name string, args RecipeArgs, opts ...ResourceOption) (*Recipe, error)
public Recipe(string name, RecipeArgs args, CustomResourceOptions? opts = null)
public Recipe(String name, RecipeArgs args)
public Recipe(String name, RecipeArgs args, CustomResourceOptions options)
type: aws-native:databrew:Recipe
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args RecipeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args RecipeArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args RecipeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args RecipeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args RecipeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Recipe Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Recipe resource accepts the following input properties:
- Steps
List<Pulumi.
Aws Native. Data Brew. Inputs. Recipe Step> - A list of steps that are defined by the recipe.
- Description string
- Description of the recipe
- Name string
- Recipe name
- List<Pulumi.
Aws Native. Inputs. Create Only Tag> - Metadata tags that have been applied to the recipe.
- Steps
[]Recipe
Step Args - A list of steps that are defined by the recipe.
- Description string
- Description of the recipe
- Name string
- Recipe name
- Create
Only Tag Args - Metadata tags that have been applied to the recipe.
- steps
List<Recipe
Step> - A list of steps that are defined by the recipe.
- description String
- Description of the recipe
- name String
- Recipe name
- List<Create
Only Tag> - Metadata tags that have been applied to the recipe.
- steps
Recipe
Step[] - A list of steps that are defined by the recipe.
- description string
- Description of the recipe
- name string
- Recipe name
- Create
Only Tag[] - Metadata tags that have been applied to the recipe.
- steps
Sequence[Recipe
Step Args] - A list of steps that are defined by the recipe.
- description str
- Description of the recipe
- name str
- Recipe name
- Sequence[Create
Only Tag Args] - Metadata tags that have been applied to the recipe.
- steps List<Property Map>
- A list of steps that are defined by the recipe.
- description String
- Description of the recipe
- name String
- Recipe name
- List<Property Map>
- Metadata tags that have been applied to the recipe.
Outputs
All input properties are implicitly available as output properties. Additionally, the Recipe resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Supporting Types
CreateOnlyTag, CreateOnlyTagArgs
RecipeAction, RecipeActionArgs
- Operation string
- Step action operation
- Parameters
Pulumi.
Aws | Dictionary<string, string>Native. Data Brew. Inputs. Recipe Parameters - Contextual parameters for the transformation.
- Operation string
- Step action operation
- Parameters
Recipe
Parameters | map[string]string - Contextual parameters for the transformation.
- operation String
- Step action operation
- parameters
Recipe
Parameters | Map<String,String> - Contextual parameters for the transformation.
- operation string
- Step action operation
- parameters
Recipe
Parameters | {[key: string]: string} - Contextual parameters for the transformation.
- operation str
- Step action operation
- parameters
Recipe
Parameters | Mapping[str, str] - Contextual parameters for the transformation.
- operation String
- Step action operation
- parameters Property Map | Map<String>
- Contextual parameters for the transformation.
RecipeConditionExpression, RecipeConditionExpressionArgs
- Condition string
- Input condition to be applied to the target column
- Target
Column string - Name of the target column
- Value string
- Value of the condition
- Condition string
- Input condition to be applied to the target column
- Target
Column string - Name of the target column
- Value string
- Value of the condition
- condition String
- Input condition to be applied to the target column
- target
Column String - Name of the target column
- value String
- Value of the condition
- condition string
- Input condition to be applied to the target column
- target
Column string - Name of the target column
- value string
- Value of the condition
- condition str
- Input condition to be applied to the target column
- target_
column str - Name of the target column
- value str
- Value of the condition
- condition String
- Input condition to be applied to the target column
- target
Column String - Name of the target column
- value String
- Value of the condition
RecipeDataCatalogInputDefinition, RecipeDataCatalogInputDefinitionArgs
- Catalog
Id string - Catalog id
- Database
Name string - Database name
- Table
Name string - Table name
- Temp
Directory Pulumi.Aws Native. Data Brew. Inputs. Recipe S3Location
- Catalog
Id string - Catalog id
- Database
Name string - Database name
- Table
Name string - Table name
- Temp
Directory RecipeS3Location
- catalog
Id String - Catalog id
- database
Name String - Database name
- table
Name String - Table name
- temp
Directory RecipeS3Location
- catalog
Id string - Catalog id
- database
Name string - Database name
- table
Name string - Table name
- temp
Directory RecipeS3Location
- catalog_
id str - Catalog id
- database_
name str - Database name
- table_
name str - Table name
- temp_
directory RecipeS3Location
- catalog
Id String - Catalog id
- database
Name String - Database name
- table
Name String - Table name
- temp
Directory Property Map
RecipeParameters, RecipeParametersArgs
- Aggregate
Function string - Base string
- Case
Statement string - Category
Map string - Chars
To stringRemove - Collapse
Consecutive stringWhitespace - Column
Data stringType - Column
Range string - Count string
- Custom
Characters string - Custom
Stop stringWords - Custom
Value string - Datasets
Columns string - Date
Add stringValue - Date
Time stringFormat - Date
Time stringParameters - Delete
Other stringRows - Delimiter string
- End
Pattern string - End
Position string - End
Value string - Expand
Contractions string - Exponent string
- False
String string - Group
By stringAgg Function Options - Group
By stringColumns - string
- Ignore
Case string - Include
In stringSplit - Input
Pulumi.
Aws Native. Data Brew. Inputs. Recipe Parameters Input Properties - Input
- Interval string
- Is
Text string - Join
Keys string - Join
Type string - Left
Columns string - Limit string
- Lower
Bound string - Map
Type string - Mode
Type string - Multi
Line bool - Num
Rows string - Num
Rows stringAfter - Num
Rows stringBefore - Order
By stringColumn - Order
By stringColumns - Other string
- Pattern string
- Pattern
Option1 string - Pattern
Option2 string - Pattern
Options string - Period string
- Position string
- Remove
All stringPunctuation - Remove
All stringQuotes - Remove
All stringWhitespace - Remove
Custom stringCharacters - Remove
Custom stringValue - Remove
Leading stringAnd Trailing Punctuation - Remove
Leading stringAnd Trailing Quotes - Remove
Leading stringAnd Trailing Whitespace - Remove
Letters string - Remove
Numbers string - Remove
Source stringColumn - Remove
Special stringCharacters - Right
Columns string - Sample
Size string - Sample
Type string - Second
Input string - Secondary
Inputs List<Pulumi.Aws Native. Data Brew. Inputs. Recipe Secondary Input> - Sheet
Indexes List<int> - Sheet
Names List<string> - Source
Column string - Source
Column1 string - Source
Column2 string - Source
Columns string - Start
Column stringIndex - Start
Pattern string - Start
Position string - Start
Value string - Stemming
Mode string - Step
Count string - Step
Index string - Stop
Words stringMode - Strategy string
- Target
Column string - Target
Column stringNames - Target
Date stringFormat - Target
Index string - Time
Zone string - Tokenizer
Pattern string - True
String string - Udf
Lang string - Units string
- Unpivot
Column string - Upper
Bound string - Use
New stringData Frame - Value string
- Value1 string
- Value2 string
- Value
Column string - View
Frame string
- Aggregate
Function string - Base string
- Case
Statement string - Category
Map string - Chars
To stringRemove - Collapse
Consecutive stringWhitespace - Column
Data stringType - Column
Range string - Count string
- Custom
Characters string - Custom
Stop stringWords - Custom
Value string - Datasets
Columns string - Date
Add stringValue - Date
Time stringFormat - Date
Time stringParameters - Delete
Other stringRows - Delimiter string
- End
Pattern string - End
Position string - End
Value string - Expand
Contractions string - Exponent string
- False
String string - Group
By stringAgg Function Options - Group
By stringColumns - string
- Ignore
Case string - Include
In stringSplit - Input
Recipe
Parameters Input Properties - Input
- Interval string
- Is
Text string - Join
Keys string - Join
Type string - Left
Columns string - Limit string
- Lower
Bound string - Map
Type string - Mode
Type string - Multi
Line bool - Num
Rows string - Num
Rows stringAfter - Num
Rows stringBefore - Order
By stringColumn - Order
By stringColumns - Other string
- Pattern string
- Pattern
Option1 string - Pattern
Option2 string - Pattern
Options string - Period string
- Position string
- Remove
All stringPunctuation - Remove
All stringQuotes - Remove
All stringWhitespace - Remove
Custom stringCharacters - Remove
Custom stringValue - Remove
Leading stringAnd Trailing Punctuation - Remove
Leading stringAnd Trailing Quotes - Remove
Leading stringAnd Trailing Whitespace - Remove
Letters string - Remove
Numbers string - Remove
Source stringColumn - Remove
Special stringCharacters - Right
Columns string - Sample
Size string - Sample
Type string - Second
Input string - Secondary
Inputs []RecipeSecondary Input - Sheet
Indexes []int - Sheet
Names []string - Source
Column string - Source
Column1 string - Source
Column2 string - Source
Columns string - Start
Column stringIndex - Start
Pattern string - Start
Position string - Start
Value string - Stemming
Mode string - Step
Count string - Step
Index string - Stop
Words stringMode - Strategy string
- Target
Column string - Target
Column stringNames - Target
Date stringFormat - Target
Index string - Time
Zone string - Tokenizer
Pattern string - True
String string - Udf
Lang string - Units string
- Unpivot
Column string - Upper
Bound string - Use
New stringData Frame - Value string
- Value1 string
- Value2 string
- Value
Column string - View
Frame string
- aggregate
Function String - base String
- case
Statement String - category
Map String - chars
To StringRemove - collapse
Consecutive StringWhitespace - column
Data StringType - column
Range String - count String
- custom
Characters String - custom
Stop StringWords - custom
Value String - datasets
Columns String - date
Add StringValue - date
Time StringFormat - date
Time StringParameters - delete
Other StringRows - delimiter String
- end
Pattern String - end
Position String - end
Value String - expand
Contractions String - exponent String
- false
String String - group
By StringAgg Function Options - group
By StringColumns - String
- ignore
Case String - include
In StringSplit - input
Recipe
Parameters Input Properties - Input
- interval String
- is
Text String - join
Keys String - join
Type String - left
Columns String - limit String
- lower
Bound String - map
Type String - mode
Type String - multi
Line Boolean - num
Rows String - num
Rows StringAfter - num
Rows StringBefore - order
By StringColumn - order
By StringColumns - other String
- pattern String
- pattern
Option1 String - pattern
Option2 String - pattern
Options String - period String
- position String
- remove
All StringPunctuation - remove
All StringQuotes - remove
All StringWhitespace - remove
Custom StringCharacters - remove
Custom StringValue - remove
Leading StringAnd Trailing Punctuation - remove
Leading StringAnd Trailing Quotes - remove
Leading StringAnd Trailing Whitespace - remove
Letters String - remove
Numbers String - remove
Source StringColumn - remove
Special StringCharacters - right
Columns String - sample
Size String - sample
Type String - second
Input String - secondary
Inputs List<RecipeSecondary Input> - sheet
Indexes List<Integer> - sheet
Names List<String> - source
Column String - source
Column1 String - source
Column2 String - source
Columns String - start
Column StringIndex - start
Pattern String - start
Position String - start
Value String - stemming
Mode String - step
Count String - step
Index String - stop
Words StringMode - strategy String
- target
Column String - target
Column StringNames - target
Date StringFormat - target
Index String - time
Zone String - tokenizer
Pattern String - true
String String - udf
Lang String - units String
- unpivot
Column String - upper
Bound String - use
New StringData Frame - value String
- value1 String
- value2 String
- value
Column String - view
Frame String
- aggregate
Function string - base string
- case
Statement string - category
Map string - chars
To stringRemove - collapse
Consecutive stringWhitespace - column
Data stringType - column
Range string - count string
- custom
Characters string - custom
Stop stringWords - custom
Value string - datasets
Columns string - date
Add stringValue - date
Time stringFormat - date
Time stringParameters - delete
Other stringRows - delimiter string
- end
Pattern string - end
Position string - end
Value string - expand
Contractions string - exponent string
- false
String string - group
By stringAgg Function Options - group
By stringColumns - string
- ignore
Case string - include
In stringSplit - input
Recipe
Parameters Input Properties - Input
- interval string
- is
Text string - join
Keys string - join
Type string - left
Columns string - limit string
- lower
Bound string - map
Type string - mode
Type string - multi
Line boolean - num
Rows string - num
Rows stringAfter - num
Rows stringBefore - order
By stringColumn - order
By stringColumns - other string
- pattern string
- pattern
Option1 string - pattern
Option2 string - pattern
Options string - period string
- position string
- remove
All stringPunctuation - remove
All stringQuotes - remove
All stringWhitespace - remove
Custom stringCharacters - remove
Custom stringValue - remove
Leading stringAnd Trailing Punctuation - remove
Leading stringAnd Trailing Quotes - remove
Leading stringAnd Trailing Whitespace - remove
Letters string - remove
Numbers string - remove
Source stringColumn - remove
Special stringCharacters - right
Columns string - sample
Size string - sample
Type string - second
Input string - secondary
Inputs RecipeSecondary Input[] - sheet
Indexes number[] - sheet
Names string[] - source
Column string - source
Column1 string - source
Column2 string - source
Columns string - start
Column stringIndex - start
Pattern string - start
Position string - start
Value string - stemming
Mode string - step
Count string - step
Index string - stop
Words stringMode - strategy string
- target
Column string - target
Column stringNames - target
Date stringFormat - target
Index string - time
Zone string - tokenizer
Pattern string - true
String string - udf
Lang string - units string
- unpivot
Column string - upper
Bound string - use
New stringData Frame - value string
- value1 string
- value2 string
- value
Column string - view
Frame string
- aggregate_
function str - base str
- case_
statement str - category_
map str - chars_
to_ strremove - collapse_
consecutive_ strwhitespace - column_
data_ strtype - column_
range str - count str
- custom_
characters str - custom_
stop_ strwords - custom_
value str - datasets_
columns str - date_
add_ strvalue - date_
time_ strformat - date_
time_ strparameters - delete_
other_ strrows - delimiter str
- end_
pattern str - end_
position str - end_
value str - expand_
contractions str - exponent str
- false_
string str - group_
by_ stragg_ function_ options - group_
by_ strcolumns - str
- ignore_
case str - include_
in_ strsplit - input
Recipe
Parameters Input Properties - Input
- interval str
- is_
text str - join_
keys str - join_
type str - left_
columns str - limit str
- lower_
bound str - map_
type str - mode_
type str - multi_
line bool - num_
rows str - num_
rows_ strafter - num_
rows_ strbefore - order_
by_ strcolumn - order_
by_ strcolumns - other str
- pattern str
- pattern_
option1 str - pattern_
option2 str - pattern_
options str - period str
- position str
- remove_
all_ strpunctuation - remove_
all_ strquotes - remove_
all_ strwhitespace - remove_
custom_ strcharacters - remove_
custom_ strvalue - remove_
leading_ strand_ trailing_ punctuation - remove_
leading_ strand_ trailing_ quotes - remove_
leading_ strand_ trailing_ whitespace - remove_
letters str - remove_
numbers str - remove_
source_ strcolumn - remove_
special_ strcharacters - right_
columns str - sample_
size str - sample_
type str - second_
input str - secondary_
inputs Sequence[RecipeSecondary Input] - sheet_
indexes Sequence[int] - sheet_
names Sequence[str] - source_
column str - source_
column1 str - source_
column2 str - source_
columns str - start_
column_ strindex - start_
pattern str - start_
position str - start_
value str - stemming_
mode str - step_
count str - step_
index str - stop_
words_ strmode - strategy str
- target_
column str - target_
column_ strnames - target_
date_ strformat - target_
index str - time_
zone str - tokenizer_
pattern str - true_
string str - udf_
lang str - units str
- unpivot_
column str - upper_
bound str - use_
new_ strdata_ frame - value str
- value1 str
- value2 str
- value_
column str - view_
frame str
- aggregate
Function String - base String
- case
Statement String - category
Map String - chars
To StringRemove - collapse
Consecutive StringWhitespace - column
Data StringType - column
Range String - count String
- custom
Characters String - custom
Stop StringWords - custom
Value String - datasets
Columns String - date
Add StringValue - date
Time StringFormat - date
Time StringParameters - delete
Other StringRows - delimiter String
- end
Pattern String - end
Position String - end
Value String - expand
Contractions String - exponent String
- false
String String - group
By StringAgg Function Options - group
By StringColumns - String
- ignore
Case String - include
In StringSplit - input Property Map
- Input
- interval String
- is
Text String - join
Keys String - join
Type String - left
Columns String - limit String
- lower
Bound String - map
Type String - mode
Type String - multi
Line Boolean - num
Rows String - num
Rows StringAfter - num
Rows StringBefore - order
By StringColumn - order
By StringColumns - other String
- pattern String
- pattern
Option1 String - pattern
Option2 String - pattern
Options String - period String
- position String
- remove
All StringPunctuation - remove
All StringQuotes - remove
All StringWhitespace - remove
Custom StringCharacters - remove
Custom StringValue - remove
Leading StringAnd Trailing Punctuation - remove
Leading StringAnd Trailing Quotes - remove
Leading StringAnd Trailing Whitespace - remove
Letters String - remove
Numbers String - remove
Source StringColumn - remove
Special StringCharacters - right
Columns String - sample
Size String - sample
Type String - second
Input String - secondary
Inputs List<Property Map> - sheet
Indexes List<Number> - sheet
Names List<String> - source
Column String - source
Column1 String - source
Column2 String - source
Columns String - start
Column StringIndex - start
Pattern String - start
Position String - start
Value String - stemming
Mode String - step
Count String - step
Index String - stop
Words StringMode - strategy String
- target
Column String - target
Column StringNames - target
Date StringFormat - target
Index String - time
Zone String - tokenizer
Pattern String - true
String String - udf
Lang String - units String
- unpivot
Column String - upper
Bound String - use
New StringData Frame - value String
- value1 String
- value2 String
- value
Column String - view
Frame String
RecipeParametersInputProperties, RecipeParametersInputPropertiesArgs
RecipeS3Location, RecipeS3LocationArgs
RecipeSecondaryInput, RecipeSecondaryInputArgs
RecipeStep, RecipeStepArgs
- Action
Pulumi.
Aws Native. Data Brew. Inputs. Recipe Action - The particular action to be performed in the recipe step.
- Condition
Expressions List<Pulumi.Aws Native. Data Brew. Inputs. Recipe Condition Expression> - Condition expressions applied to the step action
- Action
Recipe
Action - The particular action to be performed in the recipe step.
- Condition
Expressions []RecipeCondition Expression - Condition expressions applied to the step action
- action
Recipe
Action - The particular action to be performed in the recipe step.
- condition
Expressions List<RecipeCondition Expression> - Condition expressions applied to the step action
- action
Recipe
Action - The particular action to be performed in the recipe step.
- condition
Expressions RecipeCondition Expression[] - Condition expressions applied to the step action
- action
Recipe
Action - The particular action to be performed in the recipe step.
- condition_
expressions Sequence[RecipeCondition Expression] - Condition expressions applied to the step action
- action Property Map
- The particular action to be performed in the recipe step.
- condition
Expressions List<Property Map> - Condition expressions applied to the step action
Package Details
- Repository
- AWS Native pulumi/pulumi-aws-native
- License
- Apache-2.0
We recommend new projects start with resources from the AWS provider.
AWS Native v0.126.0 published on Monday, Sep 30, 2024 by Pulumi