Interface CfnRecommender.RecommenderUpdateProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRecommender.RecommenderUpdateProperty.Jsii$Proxy
- Enclosing class:
CfnRecommender
@Stability(Stable)
public static interface CfnRecommender.RecommenderUpdateProperty
extends software.amazon.jsii.JsiiSerializable
Information about the latest recommender update.
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.*;
RecommenderUpdateProperty recommenderUpdateProperty = RecommenderUpdateProperty.builder()
.creationDateTime("creationDateTime")
.failureReason("failureReason")
.lastUpdatedDateTime("lastUpdatedDateTime")
.recommenderConfig(RecommenderConfigProperty.builder()
.eventsConfig(EventsConfigProperty.builder()
.eventParametersList(List.of(EventParametersProperty.builder()
.eventType("eventType")
// the properties below are optional
.eventValueThreshold(123)
.build()))
.build())
.build())
.status("status")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRecommender.RecommenderUpdatePropertystatic final classAn implementation forCfnRecommender.RecommenderUpdateProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe timestamp of when the update was created.default StringThe reason for update failure.default StringThe timestamp of when the update was last modified.default ObjectConfiguration for the recommender.default StringThe status of the recommender.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCreationDateTime
The timestamp of when the update was created.- See Also:
-
getFailureReason
The reason for update failure.- See Also:
-
getLastUpdatedDateTime
The timestamp of when the update was last modified.- See Also:
-
getRecommenderConfig
Configuration for the recommender.Returns union: either
IResolvableorCfnRecommender.RecommenderConfigProperty- See Also:
-
getStatus
The status of the recommender.- See Also:
-
builder
-