package awsevidently // 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 "github.com/aws/aws-cdk-go/awscdk" // // dataDeliveryObjectProperty := &DataDeliveryObjectProperty{ // LogGroup: jsii.String("logGroup"), // S3: &S3DestinationProperty{ // BucketName: jsii.String("bucketName"), // // // the properties below are optional // Prefix: jsii.String("prefix"), // }, // } // // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html // type CfnProject_DataDeliveryObjectProperty struct { // If the project stores evaluation events in CloudWatch Logs , this structure stores the log group name. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html#cfn-evidently-project-datadeliveryobject-loggroup // LogGroup *string `field:"optional" json:"logGroup" yaml:"logGroup"` // If the project stores evaluation events in an Amazon S3 bucket, this structure stores the bucket name and bucket prefix. // See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html#cfn-evidently-project-datadeliveryobject-s3 // S3 interface{} `field:"optional" json:"s3" yaml:"s3"` }