Interface CfnWorkflowProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflowProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-03T13:58:26.828Z") @Stability(Stable) public interface CfnWorkflowProps extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.mwaaserverless.*;
 CfnWorkflowProps cfnWorkflowProps = CfnWorkflowProps.builder()
         .definitionS3Location(S3LocationProperty.builder()
                 .bucket("bucket")
                 .objectKey("objectKey")
                 // the properties below are optional
                 .versionId("versionId")
                 .build())
         .roleArn("roleArn")
         // the properties below are optional
         .description("description")
         .encryptionConfiguration(EncryptionConfigurationProperty.builder()
                 .type("type")
                 // the properties below are optional
                 .kmsKeyId("kmsKeyId")
                 .build())
         .loggingConfiguration(LoggingConfigurationProperty.builder()
                 .logGroupName("logGroupName")
                 .build())
         .name("name")
         .networkConfiguration(NetworkConfigurationProperty.builder()
                 .securityGroupIds(List.of("securityGroupIds"))
                 .subnetIds(List.of("subnetIds"))
                 .build())
         .tags(Map.of(
                 "tagsKey", "tags"))
         .triggerMode("triggerMode")
         .build();
 

See Also: