Interface CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty.Jsii$Proxy
- Enclosing class:
CfnVirtualGatewayPropsMixin
@Stability(Stable)
public static interface CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty
extends software.amazon.jsii.JsiiSerializable
The access log configuration for a virtual gateway.
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.*;
VirtualGatewayAccessLogProperty virtualGatewayAccessLogProperty = VirtualGatewayAccessLogProperty.builder()
.file(VirtualGatewayFileAccessLogProperty.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 classstatic final classAn implementation forCfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFile
The file object to send virtual gateway access logs to.Returns union: either
IResolvableorCfnVirtualGatewayPropsMixin.VirtualGatewayFileAccessLogProperty- See Also:
-
builder
@Stability(Stable) static CfnVirtualGatewayPropsMixin.VirtualGatewayAccessLogProperty.Builder builder()
-