Show / Hide Table of Contents

Interface ICfnProjectProps

Properties for defining a CfnProject.

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.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 cfnProjectProps = new CfnProjectProps {
    Name = "name",

    // the properties below are optional
    AppConfigResource = new AppConfigResourceObjectProperty {
        ApplicationId = "applicationId",
        EnvironmentId = "environmentId"
    },
    DataDelivery = new DataDeliveryObjectProperty {
        LogGroup = "logGroup",
        S3 = new S3DestinationProperty {
            BucketName = "bucketName",

            // the properties below are optional
            Prefix = "prefix"
        }
    },
    Description = "description",
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } }
};

Synopsis

Properties

AppConfigResource

Use this parameter if the project will use client-side evaluation powered by AWS AppConfig .

DataDelivery

A structure that contains information about where Evidently is to store evaluation events for longer term storage, if you choose to do so.

Description

An optional description of the project.

Name

The name for the project.

Tags

Assigns one or more tags (key-value pairs) to the project.

Properties

AppConfigResource

Use this parameter if the project will use client-side evaluation powered by AWS AppConfig .

virtual object AppConfigResource { get; }
Property Value

System.Object

Remarks

Client-side evaluation allows your application to assign variations to user sessions locally instead of by calling the EvaluateFeature operation. This mitigates the latency and availability risks that come with an API call. For more information, see Use client-side evaluation - powered by AWS AppConfig .

This parameter is a structure that contains information about the AWS AppConfig application that will be used as for client-side evaluation.

To create a project that uses client-side evaluation, you must have the evidently:ExportProjectAsConfiguration permission.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.html#cfn-evidently-project-appconfigresource

DataDelivery

A structure that contains information about where Evidently is to store evaluation events for longer term storage, if you choose to do so.

virtual object DataDelivery { get; }
Property Value

System.Object

Remarks

If you choose not to store these events, Evidently deletes them after using them to produce metrics and other experiment results that you can view.

You can't specify both CloudWatchLogs and S3Destination in the same operation.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.html#cfn-evidently-project-datadelivery

Description

An optional description of the project.

virtual string Description { get; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.html#cfn-evidently-project-description

Name

The name for the project.

string Name { get; }
Property Value

System.String

Remarks

It can include up to 127 characters.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.html#cfn-evidently-project-name

Tags

Assigns one or more tags (key-value pairs) to the project.

virtual ICfnTag[] Tags { get; }
Property Value

ICfnTag[]

Remarks

Tags can help you organize and categorize your resources. You can also use them to scope user permissions by granting a user permission to access or change only resources with certain tag values.

Tags don't have any semantic meaning to AWS and are interpreted strictly as strings of characters.

You can associate as many as 50 tags with a project.

For more information, see Tagging AWS resources .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-evidently-project.html#cfn-evidently-project-tags

Back to top Generated by DocFX