interface CfnEntityTypeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FraudDetector.CfnEntityTypeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfrauddetector#CfnEntityTypeMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.frauddetector.CfnEntityTypeMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_frauddetector.CfnEntityTypeMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_frauddetector » CfnEntityTypeMixinProps |
Properties for CfnEntityTypePropsMixin.
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/cfn-property-mixins';
const cfnEntityTypeMixinProps: frauddetector.CfnEntityTypeMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The entity type description. |
| name? | string | The entity type name. |
| tags? | Cfn[] | A key and value pair. |
description?
Type:
string
(optional)
The entity type description.
name?
Type:
string
(optional)
The entity type name.
Pattern: ^[0-9a-z_-]+$
tags?
Type:
Cfn[]
(optional)
A key and value pair.

.NET
Go
Java
Python
TypeScript