aws-cdk-lib.aws_frauddetector.CfnEventTypeProps

interface CfnEventTypeProps

LanguageType name
.NETAmazon.CDK.AWS.FraudDetector.CfnEventTypeProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsfrauddetector#CfnEventTypeProps
Javasoftware.amazon.awscdk.services.frauddetector.CfnEventTypeProps
Pythonaws_cdk.aws_frauddetector.CfnEventTypeProps
TypeScript aws-cdk-lib » aws_frauddetector » CfnEventTypeProps

Properties for defining a CfnEventType.

Example

// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_frauddetector as frauddetector } from 'aws-cdk-lib';
const cfnEventTypeProps: frauddetector.CfnEventTypeProps = {
  entityTypes: [{
    arn: 'arn',
    createdTime: 'createdTime',
    description: 'description',
    inline: false,
    lastUpdatedTime: 'lastUpdatedTime',
    name: 'name',
    tags: [{
      key: 'key',
      value: 'value',
    }],
  }],
  eventVariables: [{
    arn: 'arn',
    createdTime: 'createdTime',
    dataSource: 'dataSource',
    dataType: 'dataType',
    defaultValue: 'defaultValue',
    description: 'description',
    inline: false,
    lastUpdatedTime: 'lastUpdatedTime',
    name: 'name',
    tags: [{
      key: 'key',
      value: 'value',
    }],
    variableType: 'variableType',
  }],
  labels: [{
    arn: 'arn',
    createdTime: 'createdTime',
    description: 'description',
    inline: false,
    lastUpdatedTime: 'lastUpdatedTime',
    name: 'name',
    tags: [{
      key: 'key',
      value: 'value',
    }],
  }],
  name: 'name',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
entityTypesIResolvable | IResolvable | EntityTypeProperty[]The event type entity types.
eventVariablesIResolvable | IResolvable | EventVariableProperty[]The event type event variables.
labelsIResolvable | IResolvable | LabelProperty[]The event type labels.
namestringThe event type name.
description?stringThe event type description.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

entityTypes

Type: IResolvable | IResolvable | EntityTypeProperty[]

The event type entity types.


eventVariables

Type: IResolvable | IResolvable | EventVariableProperty[]

The event type event variables.


labels

Type: IResolvable | IResolvable | LabelProperty[]

The event type labels.


name

Type: string

The event type name.

Pattern : ^[0-9a-z_-]+$


description?

Type: string (optional)

The event type description.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .