Show / Hide Table of Contents

Interface CfnDetectorPropsMixin.IEventTypeProperty

The event type details.

Namespace: Amazon.CDK.Mixins.Preview.AWS.FraudDetector.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnDetectorPropsMixin.IEventTypeProperty
Syntax (vb)
Public Interface CfnDetectorPropsMixin.IEventTypeProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-frauddetector-detector-eventtype.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.Mixins.Preview.AWS.FraudDetector.Mixins;

             var eventTypeProperty = new EventTypeProperty {
                 Arn = "arn",
                 CreatedTime = "createdTime",
                 Description = "description",
                 EntityTypes = new [] { new EntityTypeProperty {
                     Arn = "arn",
                     CreatedTime = "createdTime",
                     Description = "description",
                     Inline = false,
                     LastUpdatedTime = "lastUpdatedTime",
                     Name = "name",
                     Tags = new [] { new CfnTag {
                         Key = "key",
                         Value = "value"
                     } }
                 } },
                 EventVariables = new [] { new EventVariableProperty {
                     Arn = "arn",
                     CreatedTime = "createdTime",
                     DataSource = "dataSource",
                     DataType = "dataType",
                     DefaultValue = "defaultValue",
                     Description = "description",
                     Inline = false,
                     LastUpdatedTime = "lastUpdatedTime",
                     Name = "name",
                     Tags = new [] { new CfnTag {
                         Key = "key",
                         Value = "value"
                     } },
                     VariableType = "variableType"
                 } },
                 Inline = false,
                 Labels = new [] { new LabelProperty {
                     Arn = "arn",
                     CreatedTime = "createdTime",
                     Description = "description",
                     Inline = false,
                     LastUpdatedTime = "lastUpdatedTime",
                     Name = "name",
                     Tags = new [] { new CfnTag {
                         Key = "key",
                         Value = "value"
                     } }
                 } },
                 LastUpdatedTime = "lastUpdatedTime",
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Arn

The entity type ARN.

CreatedTime

Timestamp of when the event type was created.

Description

The event type description.

EntityTypes

The event type entity types.

EventVariables

The event type event variables.

Inline

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

Labels

The event type labels.

LastUpdatedTime

Timestamp of when the event type was last updated.

Name

The event type name.

Tags

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

Properties

Arn

The entity type ARN.

string? Arn { get; }
Property Value

string

Remarks

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

CreatedTime

Timestamp of when the event type was created.

string? CreatedTime { get; }
Property Value

string

Remarks

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

Description

The event type description.

string? Description { get; }
Property Value

string

Remarks

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

EntityTypes

The event type entity types.

object? EntityTypes { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnDetectorPropsMixin.IEntityTypeProperty)[]

EventVariables

The event type event variables.

object? EventVariables { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnDetectorPropsMixin.IEventVariableProperty)[]

Inline

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

object? Inline { get; }
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::Detector 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 detector but not execute any changes to the variables.

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

Type union: either bool or IResolvable

Labels

The event type labels.

object? Labels { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or (either IResolvable or CfnDetectorPropsMixin.ILabelProperty)[]

LastUpdatedTime

Timestamp of when the event type was last updated.

string? LastUpdatedTime { get; }
Property Value

string

Remarks

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

Name

The event type name.

string? Name { get; }
Property Value

string

Remarks

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

Tags

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

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

For more information, see Tag .

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

Back to top Generated by DocFX