interface CfnListMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.FraudDetector.Mixins.CfnListMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsfrauddetector/mixins#CfnListMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.frauddetector.mixins.CfnListMixinProps |
Python | aws_cdk.mixins_preview.aws_frauddetector.mixins.CfnListMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_frauddetector » mixins » CfnListMixinProps |
Properties for CfnListPropsMixin.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-list.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 cfnListMixinProps: frauddetector_mixins.CfnListMixinProps = {
description: 'description',
elements: ['elements'],
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
variableType: 'variableType',
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The description of the list. |
| elements? | string[] | The elements in the list. |
| name? | string | The name of the list. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
| variable | string | The variable type of the list. |
description?
Type:
string
(optional)
The description of the list.
elements?
Type:
string[]
(optional)
The elements in the list.
name?
Type:
string
(optional)
The name of the list.
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.
For more information, see Tag .
variableType?
Type:
string
(optional)
The variable type of the list.
For more information, see Variable types

.NET
Go
Java
Python
TypeScript