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