aws-cdk-lib.aws_frauddetector.CfnOutcomeProps

interface CfnOutcomeProps

LanguageType name
.NETAmazon.CDK.AWS.FraudDetector.CfnOutcomeProps
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsfrauddetector#CfnOutcomeProps
Javasoftware.amazon.awscdk.services.frauddetector.CfnOutcomeProps
Pythonaws_cdk.aws_frauddetector.CfnOutcomeProps
TypeScript aws-cdk-lib » aws_frauddetector » CfnOutcomeProps

Properties for defining a CfnOutcome.

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-lib';
const cfnOutcomeProps: frauddetector.CfnOutcomeProps = {
  name: 'name',

  // the properties below are optional
  description: 'description',
  tags: [{
    key: 'key',
    value: 'value',
  }],
};

Properties

NameTypeDescription
namestringThe outcome name.
description?stringThe outcome description.
tags?CfnTag[]An array of key-value pairs to apply to this resource.

name

Type: string

The outcome name.


description?

Type: string (optional)

The outcome description.


tags?

Type: CfnTag[] (optional)

An array of key-value pairs to apply to this resource.

For more information, see Tag .