Interface CfnVirtualNode.FileAccessLogProperty

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

@Stability(Stable) public static interface CfnVirtualNode.FileAccessLogProperty extends software.amazon.jsii.JsiiSerializable
An object that represents an access log file.

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.*;
 FileAccessLogProperty fileAccessLogProperty = FileAccessLogProperty.builder()
         .path("path")
         // the properties below are optional
         .format(LoggingFormatProperty.builder()
                 .json(List.of(JsonFormatRefProperty.builder()
                         .key("key")
                         .value("value")
                         .build()))
                 .text("text")
                 .build())
         .build();
 

See Also: