Interface CfnTransformer.ParseToOCSFProperty

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

@Stability(Stable) public static interface CfnTransformer.ParseToOCSFProperty extends software.amazon.jsii.JsiiSerializable
This processor converts logs into Open Cybersecurity Schema Framework (OCSF) events.

For more information about this processor including examples, see parseToOSCF in the CloudWatch Logs User Guide .

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.logs.*;
 ParseToOCSFProperty parseToOCSFProperty = ParseToOCSFProperty.builder()
         .eventSource("eventSource")
         .ocsfVersion("ocsfVersion")
         // the properties below are optional
         .source("source")
         .build();
 

See Also: