interface ELBLoadBalancerLoggingParametersProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryRule.ELBLoadBalancerLoggingParametersProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryRule_ELBLoadBalancerLoggingParametersProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryRule.ELBLoadBalancerLoggingParametersProperty |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryRule.ELBLoadBalancerLoggingParametersProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryRule » ELBLoadBalancerLoggingParametersProperty |
Configuration parameters for ELB load balancer logging, including output format and field delimiter settings.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_observabilityadmin as observabilityadmin } from 'aws-cdk-lib';
const eLBLoadBalancerLoggingParametersProperty: observabilityadmin.CfnTelemetryRule.ELBLoadBalancerLoggingParametersProperty = {
fieldDelimiter: 'fieldDelimiter',
outputFormat: 'outputFormat',
};
Properties
| Name | Type | Description |
|---|---|---|
| field | string | The delimiter character used to separate fields in ELB access log entries when using plain text format. |
| output | string | The format for ELB access log entries (plain text or JSON format). |
fieldDelimiter?
Type:
string
(optional)
The delimiter character used to separate fields in ELB access log entries when using plain text format.
outputFormat?
Type:
string
(optional)
The format for ELB access log entries (plain text or JSON format).

.NET
Go
Java
Python
TypeScript