Interface LoggingFormatConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
LoggingFormatConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.118.0 (build 02eec31)",
date="2025-11-04T09:27:34.281Z")
@Stability(Stable)
public interface LoggingFormatConfig
extends software.amazon.jsii.JsiiSerializable
All Properties for Envoy Access Logging Format for mesh endpoints.
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.*;
LoggingFormatConfig loggingFormatConfig = LoggingFormatConfig.builder()
.formatConfig(LoggingFormatProperty.builder()
.json(List.of(JsonFormatRefProperty.builder()
.key("key")
.value("value")
.build()))
.text("text")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forLoggingFormatConfigstatic final classAn implementation forLoggingFormatConfig -
Method Summary
Modifier and TypeMethodDescriptionstatic LoggingFormatConfig.Builderbuilder()CFN configuration for Access Logging Format.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getFormatConfig
CFN configuration for Access Logging Format.Default: - no access logging format
-
builder
- Returns:
- a
LoggingFormatConfig.BuilderofLoggingFormatConfig
-