aws-cdk-lib.aws_evidently.CfnProject.DataDeliveryObjectProperty

interface DataDeliveryObjectProperty

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

A structure that contains information about where Evidently is to store evaluation events for longer term storage.

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 dataDeliveryObjectProperty: evidently.CfnProject.DataDeliveryObjectProperty = {
  logGroup: 'logGroup',
  s3: {
    bucketName: 'bucketName',

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

Properties

NameTypeDescription
logGroup?stringIf the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.
s3?IResolvable | S3DestinationPropertyIf the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.

logGroup?

Type: string (optional)

If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.


s3?

Type: IResolvable | S3DestinationProperty (optional)

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