interface CodeContentProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.KinesisAnalytics.CfnApplicationV2.CodeContentProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalytics#CfnApplicationV2_CodeContentProperty | 
|  Java | software.amazon.awscdk.services.kinesisanalytics.CfnApplicationV2.CodeContentProperty | 
|  Python | aws_cdk.aws_kinesisanalytics.CfnApplicationV2.CodeContentProperty | 
|  TypeScript | aws-cdk-lib»aws_kinesisanalytics»CfnApplicationV2»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 { aws_kinesisanalytics as kinesisanalytics } from 'aws-cdk-lib';
const codeContentProperty: kinesisanalytics.CfnApplicationV2.CodeContentProperty = {
  s3ContentLocation: {
    bucketArn: 'bucketArn',
    fileKey: 'fileKey',
    // the properties below are optional
    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.
