interface DataDeliveryObjectProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.Evidently.Mixins.CfnProjectPropsMixin.DataDeliveryObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsevidently/mixins#CfnProjectPropsMixin_DataDeliveryObjectProperty |
Java | software.amazon.awscdk.mixins.preview.services.evidently.mixins.CfnProjectPropsMixin.DataDeliveryObjectProperty |
Python | aws_cdk.mixins_preview.aws_evidently.mixins.CfnProjectPropsMixin.DataDeliveryObjectProperty |
TypeScript | @aws-cdk/mixins-preview » aws_evidently » mixins » 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 { mixins as evidently_mixins } from '@aws-cdk/mixins-preview/aws-evidently';
const dataDeliveryObjectProperty: evidently_mixins.CfnProjectPropsMixin.DataDeliveryObjectProperty = {
logGroup: 'logGroup',
s3: {
bucketName: 'bucketName',
prefix: 'prefix',
},
};
Properties
| Name | Type | Description |
|---|---|---|
| log | string | 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
(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