Interface CfnDetectorMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDetectorMixinProps.Jsii$Proxy
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.frauddetector.*;
CfnDetectorMixinProps cfnDetectorMixinProps = CfnDetectorMixinProps.builder()
.associatedModels(List.of(ModelProperty.builder()
.arn("arn")
.build()))
.description("description")
.detectorId("detectorId")
.detectorVersionStatus("detectorVersionStatus")
.eventType(EventTypeProperty.builder()
.arn("arn")
.createdTime("createdTime")
.description("description")
.entityTypes(List.of(EntityTypeProperty.builder()
.arn("arn")
.createdTime("createdTime")
.description("description")
.inline(false)
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build()))
.eventVariables(List.of(EventVariableProperty.builder()
.arn("arn")
.createdTime("createdTime")
.dataSource("dataSource")
.dataType("dataType")
.defaultValue("defaultValue")
.description("description")
.inline(false)
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.variableType("variableType")
.build()))
.inline(false)
.labels(List.of(LabelProperty.builder()
.arn("arn")
.createdTime("createdTime")
.description("description")
.inline(false)
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build()))
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build())
.ruleExecutionMode("ruleExecutionMode")
.rules(List.of(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()))
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDetectorMixinPropsstatic final classAn implementation forCfnDetectorMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe models to associate with this detector.default StringThe detector description.default StringThe name of the detector.default StringThe status of the detector version.default ObjectThe event type associated with this detector.default StringThe rule execution mode for the rules included in the detector version.default ObjectgetRules()The rules to include in the detector version.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAssociatedModels
The models to associate with this detector.You must provide the ARNs of all the models you want to associate.
Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDetectorPropsMixin.ModelProperty>- See Also:
-
getDescription
The detector description.- See Also:
-
getDetectorId
The name of the detector.- See Also:
-
getDetectorVersionStatus
The status of the detector version.If a value is not provided for this property, AWS CloudFormation assumes
DRAFTstatus.Valid values:
ACTIVE | DRAFT- See Also:
-
getEventType
The event type associated with this detector.Returns union: either
IResolvableorCfnDetectorPropsMixin.EventTypeProperty- See Also:
-
getRuleExecutionMode
The rule execution mode for the rules included in the detector version.Valid values:
FIRST_MATCHED | ALL_MATCHEDDefault value:FIRST_MATCHEDYou can define and edit the rule mode at the detector version level, when it is in draft status.
If you specify
FIRST_MATCHED, Amazon Fraud Detector evaluates rules sequentially, first to last, stopping at the first matched rule. Amazon Fraud dectector then provides the outcomes for that single rule.If you specifiy
ALL_MATCHED, Amazon Fraud Detector evaluates all rules and returns the outcomes for all matched rules.- See Also:
-
getRules
The rules to include in the detector version.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnDetectorPropsMixin.RuleProperty>- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
- Returns:
- a
CfnDetectorMixinProps.BuilderofCfnDetectorMixinProps
-