Interface CfnEventType.EventVariableProperty

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

@Stability(Stable) public static interface CfnEventType.EventVariableProperty extends software.amazon.jsii.JsiiSerializable
The variables associated with this event type.

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.*;
 EventVariableProperty eventVariableProperty = 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();
 

See Also: