interface CfnLabelMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FraudDetector.Mixins.CfnLabelMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfrauddetector/mixins#CfnLabelMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.frauddetector.mixins.CfnLabelMixinProps |
Python | aws_cdk.mixins_preview.aws_frauddetector.mixins.CfnLabelMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_frauddetector » mixins » CfnLabelMixinProps |
Properties for CfnLabelPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.html
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 cfnLabelMixinProps: frauddetector_mixins.CfnLabelMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The label description. |
| name? | string | The label name. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
The label description.
name?
Type:
string
(optional)
The label name.
Pattern: ^[0-9a-z_-]+$
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .

.NET
Go
Java
Python
TypeScript