Interface CfnDetector.EventTypeProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDetector.EventTypeProperty.Jsii$Proxy
- Enclosing class:
CfnDetector
@Stability(Stable)
public static interface CfnDetector.EventTypeProperty
extends software.amazon.jsii.JsiiSerializable
The event type details.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.frauddetector.*;
EventTypeProperty eventTypeProperty = EventTypeProperty.builder()
.arn("arn")
.createdTime("createdTime")
.description("description")
.entityTypes(List.of(EntityTypeProperty.builder()
.arn("arn")
.createdTime("createdTime")
.description("description")
.inline(false)
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build()))
.eventVariables(List.of(EventVariableProperty.builder()
.arn("arn")
.createdTime("createdTime")
.dataSource("dataSource")
.dataType("dataType")
.defaultValue("defaultValue")
.description("description")
.inline(false)
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.variableType("variableType")
.build()))
.inline(false)
.labels(List.of(LabelProperty.builder()
.arn("arn")
.createdTime("createdTime")
.description("description")
.inline(false)
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build()))
.lastUpdatedTime("lastUpdatedTime")
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDetector.EventTypePropertystatic final classAn implementation forCfnDetector.EventTypeProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringgetArn()The entity type ARN.default StringTimestamp of when the event type was created.default StringThe event type description.default ObjectThe event type entity types.default ObjectThe event type event variables.default ObjectIndicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.default ObjectThe event type labels.default StringTimestamp of when the event type was last updated.default StringgetName()The event type name.getTags()An array of key-value pairs to apply to this resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getArn
The entity type ARN.- See Also:
-
getCreatedTime
Timestamp of when the event type was created.- See Also:
-
getDescription
The event type description.- See Also:
-
getEntityTypes
The event type entity types.- See Also:
-
getEventVariables
The event type event variables.- See Also:
-
getInline
Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.If the value is
true, CloudFormation will create/update/delete the resource when creating/updating/deleting the stack. If the value isfalse, 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::Detectoryou must define at least two variables. You can setInline=truefor these variables and CloudFormation will create/update/delete the Variables as part of stack operations. However, if you setInline=false, CloudFormation will associate the variables to your detector but not execute any changes to the variables.- See Also:
-
getLabels
The event type labels.- See Also:
-
getLastUpdatedTime
Timestamp of when the event type was last updated.- See Also:
-
getName
The event type name.- See Also:
-
getTags
An array of key-value pairs to apply to this resource.For more information, see Tag .
- See Also:
-
builder
-