Interface ICfnEventTypeProps
Properties for defining a CfnEventType
.
Namespace: Amazon.CDK.AWS.FraudDetector
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnEventTypeProps
Syntax (vb)
Public Interface ICfnEventTypeProps
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.AWS.FraudDetector;
var cfnEventTypeProps = new CfnEventTypeProps {
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"
} },
Labels = new [] { new LabelProperty {
Arn = "arn",
CreatedTime = "createdTime",
Description = "description",
Inline = false,
LastUpdatedTime = "lastUpdatedTime",
Name = "name",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
} },
Name = "name",
// the properties below are optional
Description = "description",
Tags = new [] { new CfnTag {
Key = "key",
Value = "value"
} }
};
Synopsis
Properties
Description | The event type description. |
Entity |
The event type entity types. |
Event |
The event type event variables. |
Labels | The event type labels. |
Name | The event type name. |
Tags | An array of key-value pairs to apply to this resource. |
Properties
Description
The event type description.
virtual string Description { get; }
Property Value
System.
Remarks
EntityTypes
The event type entity types.
object EntityTypes { get; }
Property Value
System.
Remarks
EventVariables
The event type event variables.
object EventVariables { get; }
Property Value
System.
Remarks
Labels
The event type labels.
object Labels { get; }
Property Value
System.
Remarks
Name
The event type name.
string Name { get; }
Property Value
System.
Remarks
Tags
An array of key-value pairs to apply to this resource.
virtual ICfnTag[] Tags { get; }
Property Value
ICfn