Class CfnLabelProps
Properties for defining a CfnLabel
.
Inheritance
System.Object
CfnLabelProps
Implements
Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.AWS.FraudDetector.dll
Syntax (csharp)
public class CfnLabelProps : Object, ICfnLabelProps
Syntax (vb)
Public Class CfnLabelProps
Inherits Object
Implements ICfnLabelProps
Remarks
Link: 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
Description | The label description. |
Name | The label name. |
Tags | An array of key-value pairs to apply to this resource. |
Constructors
CfnLabelProps()
public CfnLabelProps()
Properties
Description
The label description.
public string Description { get; set; }
Property Value
System.String
Remarks
Name
The label name.
public string Name { get; set; }
Property Value
System.String
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 .