CfnWorkflowDefinitionMixinProps

class aws_cdk.cfn_property_mixins.aws_novaact.CfnWorkflowDefinitionMixinProps(*, description=None, export_config=None, name=None)

Bases: object

Properties for CfnWorkflowDefinitionPropsMixin.

Parameters:
  • 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.

  • name (Optional[str]) – The name of the workflow definition. Must be unique within your account and region.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-novaact-workflowdefinition.html

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.cfn_property_mixins import aws_novaact as novaact

cfn_workflow_definition_mixin_props = novaact.CfnWorkflowDefinitionMixinProps(
    description="description",
    export_config=novaact.CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty(
        s3_bucket_name="s3BucketName",
        s3_key_prefix="s3KeyPrefix"
    ),
    name="name"
)

Attributes

description

An optional description of the workflow definition’s purpose and functionality.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-novaact-workflowdefinition.html#cfn-novaact-workflowdefinition-description

export_config

Configuration settings for exporting workflow execution data and logs to Amazon S3.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-novaact-workflowdefinition.html#cfn-novaact-workflowdefinition-exportconfig

name

The name of the workflow definition.

Must be unique within your account and region.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-novaact-workflowdefinition.html#cfn-novaact-workflowdefinition-name