Interface CfnWorkflowPropsMixin.CodeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnWorkflowPropsMixin.CodeProperty.Jsii$Proxy
Enclosing class:
CfnWorkflowPropsMixin

@Stability(Stable) public static interface CfnWorkflowPropsMixin.CodeProperty extends software.amazon.jsii.JsiiSerializable
The location of code artifacts in Amazon S3 for the workflow.

Modeled as a single-member container so it stays extensible to future artifact types (e.g. OCI images).

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.mwaaserverless.*;
 CodeProperty codeProperty = CodeProperty.builder()
         .s3Location(CodeS3LocationProperty.builder()
                 .bucket("bucket")
                 .objectKey("objectKey")
                 .versionId("versionId")
                 .build())
         .build();
 

See Also: