interface DeployAsApplicationConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.KinesisAnalyticsV2.Mixins.CfnApplicationPropsMixin.DeployAsApplicationConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awskinesisanalyticsv2/mixins#CfnApplicationPropsMixin_DeployAsApplicationConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.DeployAsApplicationConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_kinesisanalyticsv2.mixins.CfnApplicationPropsMixin.DeployAsApplicationConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_kinesisanalyticsv2 » mixins » CfnApplicationPropsMixin » DeployAsApplicationConfigurationProperty |
The information required to deploy a Kinesis Data Analytics Studio notebook as an application with durable state.
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 deployAsApplicationConfigurationProperty: kinesisanalyticsv2_mixins.CfnApplicationPropsMixin.DeployAsApplicationConfigurationProperty = {
s3ContentLocation: {
basePath: 'basePath',
bucketArn: 'bucketArn',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| s3 | IResolvable | S3 | The description of an Amazon S3 object that contains the Amazon Data Analytics application, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data. |
s3ContentLocation?
Type:
IResolvable | S3
(optional)
The description of an Amazon S3 object that contains the Amazon Data Analytics application, including the Amazon Resource Name (ARN) of the S3 bucket, the name of the Amazon S3 object that contains the data, and the version number of the Amazon S3 object that contains the data.

.NET
Go
Java
Python
TypeScript