@Stability(value=Stable)
public static interface CfnDetector.EventTypeProperty
extends software.amazon.jsii.JsiiSerializable
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();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnDetector.EventTypeProperty.Builder
A builder for
CfnDetector.EventTypeProperty |
static class |
CfnDetector.EventTypeProperty.Jsii$Proxy
An implementation for
CfnDetector.EventTypeProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnDetector.EventTypeProperty.Builder |
builder() |
default String |
getArn()
The entity type ARN.
|
default String |
getCreatedTime()
Timestamp of when the event type was created.
|
default String |
getDescription()
The event type description.
|
default Object |
getEntityTypes()
The event type entity types.
|
default Object |
getEventVariables()
The event type event variables.
|
default Object |
getInline()
Indicates whether the resource is defined within this CloudFormation template and impacts the create, update, and delete behavior of the stack.
|
default Object |
getLabels()
The event type labels.
|
default String |
getLastUpdatedTime()
Timestamp of when the event type was last updated.
|
default String |
getName()
The event type name.
|
default List<CfnTag> |
getTags()
An array of key-value pairs to apply to this resource.
|
@Stability(value=Stable) @Nullable default String getArn()
@Stability(value=Stable) @Nullable default String getCreatedTime()
@Stability(value=Stable) @Nullable default String getDescription()
@Stability(value=Stable) @Nullable default Object getEntityTypes()
@Stability(value=Stable) @Nullable default Object getEventVariables()
@Stability(value=Stable) @Nullable default Object getInline()
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.
@Stability(value=Stable) @Nullable default Object getLabels()
@Stability(value=Stable) @Nullable default String getLastUpdatedTime()
@Stability(value=Stable) @Nullable default String getName()
@Stability(value=Stable) @Nullable default List<CfnTag> getTags()
For more information, see Tag .
@Stability(value=Stable) static CfnDetector.EventTypeProperty.Builder builder()
Copyright © 2022. All rights reserved.