Show / Hide Table of Contents

Interface CfnProject.IDataDeliveryObjectProperty

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

Namespace: Amazon.CDK.AWS.Evidently
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnProject.IDataDeliveryObjectProperty
Syntax (vb)
Public Interface CfnProject.IDataDeliveryObjectProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.Evidently;

             var dataDeliveryObjectProperty = new DataDeliveryObjectProperty {
                 LogGroup = "logGroup",
                 S3 = new S3DestinationProperty {
                     BucketName = "bucketName",

                     // the properties below are optional
                     Prefix = "prefix"
                 }
             };

Synopsis

Properties

LogGroup

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

S3

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

Properties

LogGroup

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

string? LogGroup { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html#cfn-evidently-project-datadeliveryobject-loggroup

S3

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

object? S3 { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-evidently-project-datadeliveryobject.html#cfn-evidently-project-datadeliveryobject-s3

Back to top Generated by DocFX