Interface CfnEventType.EntityTypeProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnEventType.EntityTypeProperty.Jsii$Proxy
Enclosing class:
CfnEventType

@Stability(Stable) public static interface CfnEventType.EntityTypeProperty extends software.amazon.jsii.JsiiSerializable
The entity 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.*;
 EntityTypeProperty entityTypeProperty = 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();
 

See Also: