Class CfnLabelProps
Properties for defining a CfnLabel
.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnLabelProps : ICfnLabelProps
Syntax (vb)
Public Class CfnLabelProps Implements ICfnLabelProps
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FraudDetector;
var cfnLabelProps = new CfnLabelProps {
Name = "name",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Constructors
CfnLabelProps() | Properties for defining a |
Properties
Description | The label description. |
Name | The label name. |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnLabelProps()
Properties for defining a CfnLabel
.
public CfnLabelProps()
Remarks
See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.html
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.FraudDetector;
var cfnLabelProps = new CfnLabelProps {
Name = "name",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Properties
Description
The label description.
public string? Description { get; set; }
Property Value
Remarks
Name
The label name.
public string Name { get; set; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
public ICfnTag[]? Tags { get; set; }
Property Value
ICfnTag[]
Remarks
For more information, see Tag .