AWS Fundamentals Logo
AWS Fundamentals
AWS::FraudDetector::Variable

FraudDetector Variable

A resource schema for a Variable in Amazon Fraud Detector.

Properties

7 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
DataSource
string
Required
DataType
string
Required
DefaultValue
string
Required
Name
string
RequiredCreate-only
Description
string
Tags
Array<Tag>
VariableType
string

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe ARN of the variable.
CreatedTimestringThe time when the variable was created.
LastUpdatedTimestringThe time when the variable was last updated.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::FraudDetector::Variable

Resources:
  MyResource:
    Type: AWS::FraudDetector::Variable
    Properties:
      DataType: "STRING"
      DataSource: "EVENT"
      DefaultValue: "value"
      Name: "my-name"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

frauddetector:GetVariablesfrauddetector:CreateVariablefrauddetector:ListTagsForResourcefrauddetector:TagResource

read

frauddetector:GetVariablesfrauddetector:ListTagsForResource

update

frauddetector:GetVariablesfrauddetector:UpdateVariablefrauddetector:ListTagsForResourcefrauddetector:TagResourcefrauddetector:UntagResource

delete

frauddetector:GetVariablesfrauddetector:DeleteVariable

list

frauddetector:GetVariablesfrauddetector:ListTagsForResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceFraudDetector
Properties10
Required4
TaggingSupported
Primary IDArn

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

Name

External Links