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
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
Remarks
CreatedTime
Timestamp of when the event type was created.
string? CreatedTime { get; }
Property Value
Remarks
Description
The event type description.
string? Description { get; }
Property Value
Remarks
EntityTypes
The event type entity types.
object? EntityTypes { get; }
Property Value
Remarks
EventVariables
The event type event variables.
object? EventVariables { get; }
Property Value
Remarks
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
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.
Type union: either bool or IResolvable
Labels
The event type labels.
object? Labels { get; }
Property Value
Remarks
LastUpdatedTime
Timestamp of when the event type was last updated.
string? LastUpdatedTime { get; }
Property Value
Remarks
Name
The event type name.
string? Name { get; }
Property Value
Remarks
Tags
An array of key-value pairs to apply to this resource.
ICfnTag[]? Tags { get; }
Property Value
ICfnTag[]