Show / Hide Table of Contents

Class CfnEntityTypeProps

Properties for defining a CfnEntityType.

Inheritance
object
CfnEntityTypeProps
Implements
ICfnEntityTypeProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnEntityTypeProps : ICfnEntityTypeProps
Syntax (vb)
Public Class CfnEntityTypeProps Implements ICfnEntityTypeProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-entitytype.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 cfnEntityTypeProps = new CfnEntityTypeProps {
                 Name = "name",

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

Synopsis

Constructors

CfnEntityTypeProps()

Properties for defining a CfnEntityType.

Properties

Description

The entity type description.

Name

The entity type name.

Tags

A key and value pair.

Constructors

CfnEntityTypeProps()

Properties for defining a CfnEntityType.

public CfnEntityTypeProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-frauddetector-entitytype.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 cfnEntityTypeProps = new CfnEntityTypeProps {
                 Name = "name",

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

Properties

Description

The entity type description.

public string? Description { get; set; }
Property Value

string

Remarks

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

Name

The entity type name.

public string Name { get; set; }
Property Value

string

Remarks

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

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

Tags

A key and value pair.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

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

Implements

ICfnEntityTypeProps
Back to top Generated by DocFX