Interface CfnDetector.OutcomeProperty

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

@Stability(Stable) public static interface CfnDetector.OutcomeProperty extends software.amazon.jsii.JsiiSerializable
The outcome.

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.*;
 OutcomeProperty outcomeProperty = OutcomeProperty.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: