aws-cdk-lib.aws_kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty

interface S3ContentLocationProperty

LanguageType name
.NETAmazon.CDK.AWS.KinesisAnalyticsV2.CfnApplication.S3ContentLocationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awskinesisanalyticsv2#CfnApplication_S3ContentLocationProperty
Javasoftware.amazon.awscdk.services.kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty
Pythonaws_cdk.aws_kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty
TypeScript aws-cdk-lib » 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 { aws_kinesisanalyticsv2 as kinesisanalyticsv2 } from 'aws-cdk-lib';
const s3ContentLocationProperty: kinesisanalyticsv2.CfnApplication.S3ContentLocationProperty = {
  bucketArn: 'bucketArn',
  fileKey: 'fileKey',

  // the properties below are optional
  objectVersion: 'objectVersion',
};

Properties

NameTypeDescription
bucketArnstringThe Amazon Resource Name (ARN) for the S3 bucket containing the application code.
fileKeystringThe file key for the object containing the application code.
objectVersion?stringThe 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.