interface TelemetryPipelineConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnTelemetryPipelinesPropsMixin_TelemetryPipelineConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnTelemetryPipelinesPropsMixin » TelemetryPipelineConfigurationProperty |
Defines the configuration for a pipeline, including how data flows from sources through processors to destinations.
The configuration is specified in YAML format and must include a valid pipeline definition with required source and sink components. This pipeline enables end-to-end telemetry data collection, transformation, and delivery while supporting optional processing steps and extensions for enhanced functionality.
The primary pipeline configuration section are:
- Source: Defines where log data originates from (S3 buckets, CloudWatch Logs, third-party APIs). Each pipeline must have exactly one source.
- Processors (optional): Transform, parse, and enrich log data as it flows through the pipeline. Processors are applied sequentially in the order they are defined.
- Sink: Defines the destination where processed log data is sent. Each pipeline must have exactly one sink.
- Extensions (optional): Provide additional functionality such as AWS Secrets Manager integration for credential management.
For more details on each configuration section see CloudWatch pipelines User Guide . Additional comprehensive configuration examples can be found in the CreateTelemetryPipeline API docs .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as observabilityadmin_mixins } from '@aws-cdk/mixins-preview/aws-observabilityadmin';
const telemetryPipelineConfigurationProperty: observabilityadmin_mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineConfigurationProperty = {
body: 'body',
};
Properties
| Name | Type | Description |
|---|---|---|
| body? | string | The pipeline configuration body that defines the data processing rules and transformations. |
body?
Type:
string
(optional)
The pipeline configuration body that defines the data processing rules and transformations.

.NET
Go
Java
Python
TypeScript