interface ApplicationCodeConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.ApplicationCodeConfigurationProperty | 
  Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.ApplicationCodeConfigurationProperty | 
  Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.ApplicationCodeConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-kinesisanalyticsv2 » CfnApplication » ApplicationCodeConfigurationProperty | 
Describes code configuration for an application.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as kinesisanalyticsv2 from '@aws-cdk/aws-kinesisanalyticsv2';
const applicationCodeConfigurationProperty: kinesisanalyticsv2.CfnApplication.ApplicationCodeConfigurationProperty = {
  codeContent: {
    s3ContentLocation: {
      bucketArn: 'bucketArn',
      fileKey: 'fileKey',
      // the properties below are optional
      objectVersion: 'objectVersion',
    },
    textContent: 'textContent',
    zipFileContent: 'zipFileContent',
  },
  codeContentType: 'codeContentType',
};
Properties
| Name | Type | Description | 
|---|---|---|
| code | IResolvable | Code | The location and type of the application code. | 
| code | string | Specifies whether the code content is in text or zip format. | 
codeContent
Type:
IResolvable | Code
The location and type of the application code.
codeContentType
Type:
string
Specifies whether the code content is in text or zip format.

 .NET
 Java
 Python
 TypeScript