CfnWorkflowDefinitionPropsMixin
- class aws_cdk.cfn_property_mixins.aws_novaact.CfnWorkflowDefinitionPropsMixin(props, *, strategy=None)
Bases:
MixinDefinition of AWS::NovaAct::WorkflowDefinition Resource Type.
- See:
- 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:
props (
Union[CfnWorkflowDefinitionMixinProps,Dict[str,Any]]) – L1 properties to apply.strategy (
Optional[IMergeStrategy]) – Strategy for merging nested properties. Default: - PropertyMergeStrategy.combine()
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
xis a Mixin.- Parameters:
x (
Any) – Any object.- Return type:
bool- Returns:
true if
xis an object created from a class which extendsMixin.
WorkflowExportConfigProperty
- class CfnWorkflowDefinitionPropsMixin.WorkflowExportConfigProperty(*, s3_bucket_name=None, s3_key_prefix=None)
Bases:
objectConfiguration 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:
- 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.
- s3_key_prefix
An optional prefix for Amazon S3 object keys to organize exported data.