CfnWorkflowDefinitionProps
- class aws_cdk.aws_novaact.CfnWorkflowDefinitionProps(*, name, description=None, export_config=None)
Bases:
objectProperties for defining a
CfnWorkflowDefinition.- Parameters:
name (
str) – The name of the workflow definition. Must be unique within your account and region.description (
Optional[str]) – An optional description of the workflow definition’s purpose and functionality.export_config (
Union[IResolvable,WorkflowExportConfigProperty,Dict[str,Any],None]) – Configuration settings for exporting workflow execution data and logs to Amazon S3.
- See:
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_novaact as novaact cfn_workflow_definition_props = novaact.CfnWorkflowDefinitionProps( name="name", # the properties below are optional description="description", export_config=novaact.CfnWorkflowDefinition.WorkflowExportConfigProperty( s3_bucket_name="s3BucketName", # the properties below are optional s3_key_prefix="s3KeyPrefix" ) )
Attributes
- description
An optional description of the workflow definition’s purpose and functionality.
- export_config
Configuration settings for exporting workflow execution data and logs to Amazon S3.
- name
The name of the workflow definition.
Must be unique within your account and region.