interface CfnOutcomeMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.FraudDetector.CfnOutcomeMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsfrauddetector#CfnOutcomeMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.frauddetector.CfnOutcomeMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_frauddetector.CfnOutcomeMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_frauddetector » CfnOutcomeMixinProps |
Properties for CfnOutcomePropsMixin.
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 cfnOutcomeMixinProps: frauddetector.CfnOutcomeMixinProps = {
description: 'description',
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| description? | string | The outcome description. |
| name? | string | The outcome name. |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
description?
Type:
string
(optional)
The outcome description.
name?
Type:
string
(optional)
The outcome name.
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