Interface CfnVirtualNodePropsMixin.AccessLogProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualNodePropsMixin.AccessLogProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualNodePropsMixin
@Stability(Stable)
public static interface CfnVirtualNodePropsMixin.AccessLogProperty
extends software.amazon.jsii.JsiiSerializable
An object that represents the access 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.cfnpropertymixins.services.appmesh.*;
AccessLogProperty accessLogProperty = AccessLogProperty.builder()
.file(FileAccessLogProperty.builder()
.format(LoggingFormatProperty.builder()
.json(List.of(JsonFormatRefProperty.builder()
.key("key")
.value("value")
.build()))
.text("text")
.build())
.path("path")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnVirtualNodePropsMixin.AccessLogPropertystatic final classAn implementation forCfnVirtualNodePropsMixin.AccessLogProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFile
The file object to send virtual node access logs to.Returns union: either
IResolvableorCfnVirtualNodePropsMixin.FileAccessLogProperty- See Also:
-
builder
-