interface DataDeliveryObjectProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.Evidently.CfnProject.DataDeliveryObjectProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsevidently#CfnProject_DataDeliveryObjectProperty |
Java | software.amazon.awscdk.services.evidently.CfnProject.DataDeliveryObjectProperty |
Python | aws_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
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.