Interface CfnService.ServiceConnectAccessLogConfigurationProperty

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

@Stability(Stable) public static interface CfnService.ServiceConnectAccessLogConfigurationProperty extends software.amazon.jsii.JsiiSerializable
Configuration for Service Connect access logging.

Access logs provide detailed information about requests made to your service, including request patterns, response codes, and timing data for debugging and monitoring purposes.

To enable access logs, you must also specify a logConfiguration in the serviceConnectConfiguration .

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.ecs.*;
 ServiceConnectAccessLogConfigurationProperty serviceConnectAccessLogConfigurationProperty = ServiceConnectAccessLogConfigurationProperty.builder()
         .format("format")
         // the properties below are optional
         .includeQueryParameters("includeQueryParameters")
         .build();
 

See Also: