Interface CfnVirtualGateway.LoggingFormatProperty

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

@Stability(Stable) public static interface CfnVirtualGateway.LoggingFormatProperty extends software.amazon.jsii.JsiiSerializable
An object that represents the format for the logs.

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.appmesh.*;
 LoggingFormatProperty loggingFormatProperty = LoggingFormatProperty.builder()
         .json(List.of(JsonFormatRefProperty.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .text("text")
         .build();
 

See Also: