CfnWorkflowDefinitionPropsMixin

class aws_cdk.cfn_property_mixins.aws_novaact.CfnWorkflowDefinitionPropsMixin(props, *, strategy=None)

Bases: Mixin

Definition of AWS::NovaAct::WorkflowDefinition Resource Type.

See:

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

CloudformationResource:

AWS::NovaAct::WorkflowDefinition

Mixin:

true

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
import aws_cdk as cdk

# merge_strategy: cdk.IMergeStrategy

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

Create a mixin to apply properties to AWS::NovaAct::WorkflowDefinition.

Parameters:

Methods

apply_to(construct)

Apply the mixin properties to the construct.

Parameters:

construct (IConstruct)

Return type:

None

supports(construct)

Check if this mixin supports the given construct.

Parameters:

construct (IConstruct)

Return type:

bool

Attributes

CFN_PROPERTY_KEYS = ['description', 'exportConfig', 'name']

Static Methods

classmethod is_mixin(x)

Checks if x is a Mixin.

Parameters:

x (Any) – Any object.

Return type:

bool

Returns:

true if x is an object created from a class which extends Mixin.

WorkflowExportConfigProperty

class CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty(*, s3_bucket_name=None, s3_key_prefix=None)

Bases: object

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

Parameters:
  • s3_bucket_name (Optional[str]) – The name of the Amazon S3 bucket for exporting workflow data.

  • s3_key_prefix (Optional[str]) – An optional prefix for Amazon S3 object keys to organize exported data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-novaact-workflowdefinition-workflowexportconfig.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

workflow_export_config_property = novaact.CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty(
    s3_bucket_name="s3BucketName",
    s3_key_prefix="s3KeyPrefix"
)

Attributes

s3_bucket_name

The name of the Amazon S3 bucket for exporting workflow data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-novaact-workflowdefinition-workflowexportconfig.html#cfn-novaact-workflowdefinition-workflowexportconfig-s3bucketname

s3_key_prefix

An optional prefix for Amazon S3 object keys to organize exported data.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-novaact-workflowdefinition-workflowexportconfig.html#cfn-novaact-workflowdefinition-workflowexportconfig-s3keyprefix