Interface CfnVirtualNode.LoggingProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNode.LoggingProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualNode
@Stability(Stable)
public static interface CfnVirtualNode.LoggingProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the logging information for a virtual node.
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.*; LoggingProperty loggingProperty = LoggingProperty.builder() .accessLog(AccessLogProperty.builder() .file(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()) .build()) .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnVirtualNode.LoggingProperty
static final class
An implementation forCfnVirtualNode.LoggingProperty
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAccessLog
The access log configuration for a virtual node.- See Also:
-
builder
-