interface S3DestinationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Evidently.CfnProject.S3DestinationProperty | 
|  Java | software.amazon.awscdk.services.evidently.CfnProject.S3DestinationProperty | 
|  Python | aws_cdk.aws_evidently.CfnProject.S3DestinationProperty | 
|  TypeScript | @aws-cdk/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 * as evidently from '@aws-cdk/aws-evidently';
const s3DestinationProperty: evidently.CfnProject.S3DestinationProperty = {
  bucketName: 'bucketName',
  // the properties below are optional
  prefix: 'prefix',
};
Properties
| Name | Type | Description | 
|---|---|---|
| bucket | string | The name of the bucket in which Evidently stores evaluation events. | 
| prefix? | string | The 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.
