interface CodeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.MWAAServerless.CfnWorkflowPropsMixin.CodeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsmwaaserverless#CfnWorkflowPropsMixin_CodeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.mwaaserverless.CfnWorkflowPropsMixin.CodeProperty |
Python | aws_cdk.cfn_property_mixins.aws_mwaaserverless.CfnWorkflowPropsMixin.CodeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_mwaaserverless » CfnWorkflowPropsMixin » CodeProperty |
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 { aws_mwaaserverless as mwaaserverless } from '@aws-cdk/cfn-property-mixins';
const codeProperty: mwaaserverless.CfnWorkflowPropsMixin.CodeProperty = {
s3Location: {
bucket: 'bucket',
objectKey: 'objectKey',
versionId: 'versionId',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | Code |
s3Location?
Type:
IResolvable | Code
(optional)

.NET
Go
Java
Python
TypeScript