Interface CfnDetector.RuleProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnDetector.RuleProperty.Jsii$Proxy
Enclosing class:
CfnDetector

@Stability(Stable) public static interface CfnDetector.RuleProperty extends software.amazon.jsii.JsiiSerializable
A rule.

Rule is a condition that tells Amazon Fraud Detector how to interpret variables values during a fraud prediction.

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.frauddetector.*;
 RuleProperty ruleProperty = RuleProperty.builder()
         .arn("arn")
         .createdTime("createdTime")
         .description("description")
         .detectorId("detectorId")
         .expression("expression")
         .language("language")
         .lastUpdatedTime("lastUpdatedTime")
         .outcomes(List.of(OutcomeProperty.builder()
                 .arn("arn")
                 .createdTime("createdTime")
                 .description("description")
                 .inline(false)
                 .lastUpdatedTime("lastUpdatedTime")
                 .name("name")
                 .tags(List.of(CfnTag.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .build()))
         .ruleId("ruleId")
         .ruleVersion("ruleVersion")
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 
  • Method Details

    • getArn

      @Stability(Stable) @Nullable default String getArn()
      The rule ARN.
    • getCreatedTime

      @Stability(Stable) @Nullable default String getCreatedTime()
      Timestamp for when the rule was created.
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The rule description.
    • getDetectorId

      @Stability(Stable) @Nullable default String getDetectorId()
      The detector for which the rule is associated.
    • getExpression

      @Stability(Stable) @Nullable default String getExpression()
      The rule expression.

      A rule expression captures the business logic. For more information, see Rule language reference .

    • getLanguage

      @Stability(Stable) @Nullable default String getLanguage()
      The rule language.
    • getLastUpdatedTime

      @Stability(Stable) @Nullable default String getLastUpdatedTime()
      Timestamp for when the rule was last updated.
    • getOutcomes

      @Stability(Stable) @Nullable default Object getOutcomes()
      The rule outcome.
    • getRuleId

      @Stability(Stable) @Nullable default String getRuleId()
      The rule ID.
    • getRuleVersion

      @Stability(Stable) @Nullable default String getRuleVersion()
      The rule version.
    • getTags

      @Stability(Stable) @Nullable default List<CfnTag> getTags()
      An array of key-value pairs to apply to this resource.

      For more information, see Tag .

    • builder

      @Stability(Stable) static CfnDetector.RuleProperty.Builder builder()
      Returns:
      a CfnDetector.RuleProperty.Builder of CfnDetector.RuleProperty