interface CodeContentProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationPropsMixin.CodeContentProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationPropsMixin_CodeContentProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.CodeContentProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.CodeContentProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationPropsMixin » CodeContentProperty |
Specifies either the application code, or the location of the application code, for a Managed Service for Apache Flink application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as kinesisanalyticsv2_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalyticsv2';
const codeContentProperty: kinesisanalyticsv2_mixins.CfnApplicationPropsMixin.CodeContentProperty = {
s3ContentLocation: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
objectVersion: 'objectVersion',
},
textContent: 'textContent',
zipFileContent: 'zipFileContent',
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | Information about the Amazon S3 bucket that contains the application code. |
| text | string | The text-format code for a Managed Service for Apache Flink application. |
| zip | string | The zip-format code for a Managed Service for Apache Flink application. |
s3ContentLocation?
Type:
IResolvable | S3
(optional)
Information about the Amazon S3 bucket that contains the application code.
textContent?
Type:
string
(optional)
The text-format code for a Managed Service for Apache Flink application.
zipFileContent?
Type:
string
(optional)
The zip-format code for a Managed Service for Apache Flink application.

.NET
Go
Java
Python
TypeScript