interface CfnWorkflowProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.MWAAServerless.CfnWorkflowProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsmwaaserverless#CfnWorkflowProps |
Java | software.amazon.awscdk.services.mwaaserverless.CfnWorkflowProps |
Python | aws_cdk.aws_mwaaserverless.CfnWorkflowProps |
TypeScript | aws-cdk-lib » aws_mwaaserverless » CfnWorkflowProps |
Properties for defining a CfnWorkflow.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_mwaaserverless as mwaaserverless } from 'aws-cdk-lib';
const cfnWorkflowProps: mwaaserverless.CfnWorkflowProps = {
definitionS3Location: {
bucket: 'bucket',
objectKey: 'objectKey',
// the properties below are optional
versionId: 'versionId',
},
roleArn: 'roleArn',
// the properties below are optional
description: 'description',
encryptionConfiguration: {
type: 'type',
// the properties below are optional
kmsKeyId: 'kmsKeyId',
},
loggingConfiguration: {
logGroupName: 'logGroupName',
},
name: 'name',
networkConfiguration: {
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
},
tags: {
tagsKey: 'tags',
},
triggerMode: 'triggerMode',
};
Properties
| Name | Type | Description |
|---|---|---|
| definition | IResolvable | S3 | |
| role | string | |
| description? | string | |
| encryption | IResolvable | Encryption | |
| logging | IResolvable | Logging | |
| name? | string | |
| network | IResolvable | Network | |
| tags? | { [string]: string } | A map of key-value pairs to be applied as tags. |
| trigger | string |
definitionS3Location
Type:
IResolvable | S3
roleArn
Type:
string
description?
Type:
string
(optional)
encryptionConfiguration?
Type:
IResolvable | Encryption
(optional)
loggingConfiguration?
Type:
IResolvable | Logging
(optional)
name?
Type:
string
(optional)
networkConfiguration?
Type:
IResolvable | Network
(optional)
tags?
Type:
{ [string]: string }
(optional)
A map of key-value pairs to be applied as tags.
triggerMode?
Type:
string
(optional)

.NET
Go
Java
Python
TypeScript