Show / Hide Table of Contents

Class CfnEventType.EntityTypeProperty

The entity type details.

Inheritance
object
CfnEventType.EntityTypeProperty
Implements
CfnEventType.IEntityTypeProperty
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 CfnEventType.EntityTypeProperty : CfnEventType.IEntityTypeProperty
Syntax (vb)
Public Class CfnEventType.EntityTypeProperty Implements CfnEventType.IEntityTypeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-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 entityTypeProperty = new EntityTypeProperty {
                 Arn = "arn",
                 CreatedTime = "createdTime",
                 Description = "description",
                 Inline = false,
                 LastUpdatedTime = "lastUpdatedTime",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

EntityTypeProperty()

The entity type details.

Properties

Arn

The entity type ARN.

CreatedTime

Timestamp of when the entity type was created.

Description

The entity type description.

Inline

Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.

LastUpdatedTime

Timestamp of when the entity type was last updated.

Name

The entity type name.

Tags

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

Constructors

EntityTypeProperty()

The entity type details.

public EntityTypeProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-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 entityTypeProperty = new EntityTypeProperty {
                 Arn = "arn",
                 CreatedTime = "createdTime",
                 Description = "description",
                 Inline = false,
                 LastUpdatedTime = "lastUpdatedTime",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

Arn

The entity type ARN.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-arn

CreatedTime

Timestamp of when the entity type was created.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-createdtime

Description

The entity type description.

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

string

Remarks

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

Inline

Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.

public object? Inline { get; set; }
Property Value

object

Remarks

If the value is true , CloudFormation will create/update/delete the resource when creating/updating/deleting the stack. If the value is false , CloudFormation will validate that the object exists and then use it within the resource without making changes to the object.

For example, when creating AWS::FraudDetector::EventType you must define at least two variables. You can set Inline=true for these variables and CloudFormation will create/update/delete the variables as part of stack operations. However, if you set Inline=false , CloudFormation will associate the variables to your event type but not execute any changes to the variables.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-inline

Type union: either bool or IResolvable

LastUpdatedTime

Timestamp of when the entity type was last updated.

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-lastupdatedtime

Name

The entity type name.

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

string

Remarks

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-eventtype-entitytype.html#cfn-frauddetector-eventtype-entitytype-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 .

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

Implements

CfnEventType.IEntityTypeProperty
Back to top Generated by DocFX