aws-cdk-lib.aws_evidently.CfnProject.S3DestinationProperty

interface S3DestinationProperty

LanguageType name
.NETAmazon.CDK.AWS.Evidently.CfnProject.S3DestinationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnProject_S3DestinationProperty
Javasoftware.amazon.awscdk.services.evidently.CfnProject.S3DestinationProperty
Pythonaws_cdk.aws_evidently.CfnProject.S3DestinationProperty
TypeScript aws-cdk-lib » aws_evidently » CfnProject » S3DestinationProperty

If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_evidently as evidently } from 'aws-cdk-lib';
const s3DestinationProperty: evidently.CfnProject.S3DestinationProperty = {
  bucketName: 'bucketName',

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

Properties

NameTypeDescription
bucketNamestringThe name of the bucket in which Evidently stores evaluation events.
prefix?stringThe bucket prefix in which Evidently stores evaluation events.

bucketName

Type: string

The name of the bucket in which Evidently stores evaluation events.


prefix?

Type: string (optional)

The bucket prefix in which Evidently stores evaluation events.