aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplication.ApplicationCodeConfigurationProperty

interface ApplicationCodeConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.ApplicationCodeConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplication_ApplicationCodeConfigurationProperty
Javasoftware.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.ApplicationCodeConfigurationProperty
Pythonaws_cdk.aws_kinesisanalyticsv2.CfnApplication.ApplicationCodeConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
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

NameTypeDescription
codeContentIResolvable | CodeContentPropertyThe location and type of the application code.
codeContentTypestringSpecifies whether the code content is in text or zip format.

codeContent

Type: IResolvable | CodeContentProperty

The location and type of the application code.


codeContentType

Type: string

Specifies whether the code content is in text or zip format.