interface S3ContentLocationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.S3ContentLocationProperty | 
  Java | software.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty | 
  Python | aws_cdk.aws_kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty | 
  TypeScript  | @aws-cdk/aws-kinesisanalyticsv2 » CfnApplication » S3ContentLocationProperty | 
The location of an application or a custom artifact.
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 s3ContentLocationProperty: kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty = {
  bucketArn: 'bucketArn',
  fileKey: 'fileKey',
  // the properties below are optional
  objectVersion: 'objectVersion',
};
Properties
| Name | Type | Description | 
|---|---|---|
| bucket | string | The Amazon Resource Name (ARN) for the S3 bucket containing the application code. | 
| file | string | The file key for the object containing the application code. | 
| object | string | The version of the object containing the application code. | 
bucketArn
Type:
string
The Amazon Resource Name (ARN) for the S3 bucket containing the application code.
fileKey
Type:
string
The file key for the object containing the application code.
objectVersion?
Type:
string
(optional)
The version of the object containing the application code.

 .NET
 Java
 Python
 TypeScript