Show / Hide Table of Contents

Interface ICfnRecommenderProps

Properties for defining a CfnRecommender.

Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnRecommenderProps
Syntax (vb)
Public Interface ICfnRecommenderProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.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.CustomerProfiles;

             var cfnRecommenderProps = new CfnRecommenderProps {
                 DomainName = "domainName",
                 RecommenderName = "recommenderName",
                 RecommenderRecipeName = "recommenderRecipeName",

                 // the properties below are optional
                 Description = "description",
                 RecommenderConfig = new RecommenderConfigProperty {
                     EventsConfig = new EventsConfigProperty {
                         EventParametersList = new [] { new EventParametersProperty {
                             EventType = "eventType",

                             // the properties below are optional
                             EventValueThreshold = 123
                         } }
                     }
                 },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Description

The description of the recommender.

DomainName

The name of the domain for which the recommender will be created.

RecommenderConfig

Configuration for the recommender.

RecommenderName

The name of the recommender.

RecommenderRecipeName

The name of the recommender recipe.

Tags

The tags used to organize, track, or control access for this resource.

Properties

Description

The description of the recommender.

string? Description { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html#cfn-customerprofiles-recommender-description

DomainName

The name of the domain for which the recommender will be created.

string DomainName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html#cfn-customerprofiles-recommender-domainname

RecommenderConfig

Configuration for the recommender.

object? RecommenderConfig { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html#cfn-customerprofiles-recommender-recommenderconfig

Type union: either IResolvable or CfnRecommender.IRecommenderConfigProperty

RecommenderName

The name of the recommender.

string RecommenderName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html#cfn-customerprofiles-recommender-recommendername

RecommenderRecipeName

The name of the recommender recipe.

string RecommenderRecipeName { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html#cfn-customerprofiles-recommender-recommenderrecipename

Tags

The tags used to organize, track, or control access for this resource.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html#cfn-customerprofiles-recommender-tags

Back to top Generated by DocFX