Show / Hide Table of Contents

Interface ICfnListProps

Properties for defining a CfnList.

Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.AWS.FraudDetector.dll
Syntax (csharp)
public interface ICfnListProps
Syntax (vb)
Public Interface ICfnListProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-list.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 cfnListProps = new CfnListProps {
    Name = "name",

    // the properties below are optional
    Description = "description",
    Elements = new [] { "elements" },
    Tags = new [] { new CfnTag {
        Key = "key",
        Value = "value"
    } },
    VariableType = "variableType"
};

Synopsis

Properties

Description

The description of the list.

Elements

The elements in the list.

Name

The name of the list.

Tags

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

VariableType

The variable type of the list.

Properties

Description

The description of the list.

virtual string Description { get; }
Property Value

System.String

Remarks

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

Elements

The elements in the list.

virtual string[] Elements { get; }
Property Value

System.String[]

Remarks

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

Name

The name of the list.

string Name { get; }
Property Value

System.String

Remarks

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

Tags

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

virtual ICfnTag[] Tags { get; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

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

VariableType

The variable type of the list.

virtual string VariableType { get; }
Property Value

System.String

Remarks

For more information, see Variable types

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

Back to top Generated by DocFX