interface CfnEntityTypeProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.FraudDetector.CfnEntityTypeProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsfrauddetector#CfnEntityTypeProps |
Java | software.amazon.awscdk.services.frauddetector.CfnEntityTypeProps |
Python | aws_cdk.aws_frauddetector.CfnEntityTypeProps |
TypeScript | aws-cdk-lib » aws_frauddetector » CfnEntityTypeProps |
Properties for defining a CfnEntityType.
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 cfnEntityTypeProps: frauddetector.CfnEntityTypeProps = {
name: 'name',
// the properties below are optional
description: 'description',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| name | string | The entity type name. |
| description? | string | The entity type description. |
| tags? | Cfn[] | A key and value pair. |
name
Type:
string
The entity type name.
Pattern: ^[0-9a-z_-]+$
description?
Type:
string
(optional)
The entity type description.
tags?
Type:
Cfn[]
(optional)
A key and value pair.

.NET
Go
Java
Python
TypeScript