interface DataDeliveryObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.Evidently.CfnProjectPropsMixin.DataDeliveryObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsevidently#CfnProjectPropsMixin_DataDeliveryObjectProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.evidently.CfnProjectPropsMixin.DataDeliveryObjectProperty |
Python | aws_cdk.cfn_property_mixins.aws_evidently.CfnProjectPropsMixin.DataDeliveryObjectProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_evidently » CfnProjectPropsMixin » 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/cfn-property-mixins';
const dataDeliveryObjectProperty: evidently.CfnProjectPropsMixin.DataDeliveryObjectProperty = {
logGroup: 'logGroup',
s3: {
bucketName: 'bucketName',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | ILog | If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name. |
| s3? | IResolvable | S3 | If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix. |
logGroup?
Type:
string | ILog
(optional)
If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name.
s3?
Type:
IResolvable | S3
(optional)
If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix.

.NET
Go
Java
Python
TypeScript