Interface CfnRecommenderMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecommenderMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-04-02T21:55:25.705Z")
@Stability(Stable)
public interface CfnRecommenderMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnRecommenderPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.*;
CfnRecommenderMixinProps cfnRecommenderMixinProps = CfnRecommenderMixinProps.builder()
.description("description")
.domainName("domainName")
.recommenderConfig(RecommenderConfigProperty.builder()
.eventsConfig(EventsConfigProperty.builder()
.eventParametersList(List.of(EventParametersProperty.builder()
.eventType("eventType")
.eventValueThreshold(123)
.build()))
.build())
.build())
.recommenderName("recommenderName")
.recommenderRecipeName("recommenderRecipeName")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecommenderMixinPropsstatic final classAn implementation forCfnRecommenderMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe description of the recommender.default StringThe name of the domain for which the recommender will be created.default ObjectConfiguration for the recommender.default StringThe name of the recommender.default StringThe 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
-
getDescription
The description of the recommender.- See Also:
-
getDomainName
The name of the domain for which the recommender will be created.- See Also:
-
getRecommenderConfig
Configuration for the recommender.Returns union: either
IResolvableorCfnRecommenderPropsMixin.RecommenderConfigProperty- See Also:
-
getRecommenderName
The name of the recommender.- See Also:
-
getRecommenderRecipeName
The name of the recommender recipe.- See Also:
-
getTags
The tags used to organize, track, or control access for this resource.- See Also:
-
builder
- Returns:
- a
CfnRecommenderMixinProps.BuilderofCfnRecommenderMixinProps
-