frauddetector

Fraud Detector

AI & MLAWS
General

General information about the service.

Description

Amazon Fraud Detector uses ML to identify potentially fraudulent online activities.

Service Namespace

AWS::FraudDetector::Detector

ARN Pattern

arn:aws:frauddetector:{region}:{account}:detector/{detector-id}

References

Chat

Powered by AI

Talk to this service to learn more about it.

Suggested questions:

Naming

The conventions, rules, and restrictions for naming this service.

Naming Convention

frauddetector-

Length

1-64

Valid Characters

Letters, numbers, underscores

Scope

region

Code

Deploy your infrastructure as code using your preferred tooling.

Official DocumentationTerraform
terraform
1resource "aws_frauddetector_detector" "main" {
2 detector_id = "frauddetector_${var.environment}"
3 event_type {
4 name = "transaction"
5 }
6 rule {
7 detector_id = "frauddetector_${var.environment}"
8 rule_id = "high_risk"
9 expression = "$model_score > 900"
10 language = "DETECTORPL"
11 outcomes = ["block"]
12 }
13}
Utilities

Utilities to support app deployment or configuration.