Show / Hide Table of Contents

Class CfnLabelProps

Properties for defining a CfnLabel.

Inheritance
System.Object
CfnLabelProps
Implements
ICfnLabelProps
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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.html#cfn-frauddetector-label-description

Name

The label name.

public string Name { get; set; }
Property Value

System.String

Remarks

Pattern: ^[0-9a-z_-]+$

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.html#cfn-frauddetector-label-name

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 .

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-label.html#cfn-frauddetector-label-tags

Implements

ICfnLabelProps
Back to top Generated by DocFX