interface ApplicationCodeConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationPropsMixin_ApplicationCodeConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationPropsMixin » 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 { mixins as kinesisanalyticsv2_mixins } from '@aws-cdk/mixins-preview/aws-kinesisanalyticsv2';
const applicationCodeConfigurationProperty: kinesisanalyticsv2_mixins.CfnApplicationPropsMixin.ApplicationCodeConfigurationProperty = {
codeContent: {
s3ContentLocation: {
bucketArn: 'bucketArn',
fileKey: 'fileKey',
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
(optional)
The location and type of the application code.
codeContentType?
Type:
string
(optional)
Specifies whether the code content is in text or zip format.

.NET
Go
Java
Python
TypeScript