Interface CfnRecommender.IRecommenderUpdateProperty
Information about the latest recommender update.
Namespace: Amazon.CDK.AWS.CustomerProfiles
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnRecommender.IRecommenderUpdateProperty
Syntax (vb)
Public Interface CfnRecommender.IRecommenderUpdateProperty
Remarks
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 recommenderUpdateProperty = new RecommenderUpdateProperty {
CreationDateTime = "creationDateTime",
FailureReason = "failureReason",
LastUpdatedDateTime = "lastUpdatedDateTime",
RecommenderConfig = new RecommenderConfigProperty {
EventsConfig = new EventsConfigProperty {
EventParametersList = new [] { new EventParametersProperty {
EventType = "eventType",
// the properties below are optional
EventValueThreshold = 123
} }
}
},
Status = "status"
};
Synopsis
Properties
| CreationDateTime | The timestamp of when the update was created. |
| FailureReason | The reason for update failure. |
| LastUpdatedDateTime | The timestamp of when the update was last modified. |
| RecommenderConfig | Configuration for the recommender. |
| Status | The status of the recommender. |
Properties
CreationDateTime
The timestamp of when the update was created.
string? CreationDateTime { get; }
Property Value
Remarks
FailureReason
The reason for update failure.
string? FailureReason { get; }
Property Value
Remarks
LastUpdatedDateTime
The timestamp of when the update was last modified.
string? LastUpdatedDateTime { get; }
Property Value
Remarks
RecommenderConfig
Configuration for the recommender.
object? RecommenderConfig { get; }
Property Value
Remarks
Status
The status of the recommender.
string? Status { get; }