interface CfnEntityTypeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FraudDetector.Mixins.CfnEntityTypeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfrauddetector/mixins#CfnEntityTypeMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.frauddetector.mixins.CfnEntityTypeMixinProps |
Python | aws_cdk.mixins_preview.aws_frauddetector.mixins.CfnEntityTypeMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_frauddetector » mixins » 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 { mixins as frauddetector_mixins } from '@aws-cdk/mixins-preview/aws-frauddetector';
const cfnEntityTypeMixinProps: frauddetector_mixins.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