Interface CfnRecommenderProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecommenderProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:08.022Z")
@Stability(Stable)
public interface CfnRecommenderProps
extends software.amazon.jsii.JsiiSerializable
Properties for defining a
CfnRecommender.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.customerprofiles.*;
CfnRecommenderProps cfnRecommenderProps = CfnRecommenderProps.builder()
.domainName("domainName")
.recommenderName("recommenderName")
.recommenderRecipeName("recommenderRecipeName")
// the properties below are optional
.description("description")
.recommenderConfig(RecommenderConfigProperty.builder()
.eventsConfig(EventsConfigProperty.builder()
.eventParametersList(List.of(EventParametersProperty.builder()
.eventType("eventType")
// the properties below are optional
.eventValueThreshold(123)
.build()))
.build())
.build())
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecommenderPropsstatic final classAn implementation forCfnRecommenderProps -
Method Summary
Modifier and TypeMethodDescriptionstatic CfnRecommenderProps.Builderbuilder()default StringThe description of the recommender.The name of the domain for which the recommender will be created.default ObjectConfiguration for the recommender.The name of the recommender.The name of the recommender recipe.getTags()The tags used to organize, track, or control access for this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDomainName
The name of the domain for which the recommender will be created.- See Also:
-
getRecommenderName
The name of the recommender.- See Also:
-
getRecommenderRecipeName
The name of the recommender recipe.- See Also:
-
getDescription
The description of the recommender.- See Also:
-
getRecommenderConfig
Configuration for the recommender.Returns union: either
IResolvableorCfnRecommender.RecommenderConfigProperty- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnRecommenderProps.BuilderofCfnRecommenderProps
-