interface CfnTelemetryPipelinesProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryPipelinesProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryPipelinesProps |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryPipelinesProps |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryPipelinesProps |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryPipelinesProps |
Properties for defining a CfnTelemetryPipelines.
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 cfnTelemetryPipelinesProps: observabilityadmin.CfnTelemetryPipelinesProps = {
configuration: {
body: 'body',
},
// the properties below are optional
name: 'name',
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| configuration | IResolvable | Telemetry | The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations. |
| name? | string | The name of the telemetry pipeline to create. |
| tags? | Cfn[] | The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes. |
configuration
Type:
IResolvable | Telemetry
The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations.
For more information, see the Amazon CloudWatch User Guide .
name?
Type:
string
(optional)
The name of the telemetry pipeline to create.
The name must be unique within your account.
tags?
Type:
Cfn[]
(optional)
The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.

.NET
Go
Java
Python
TypeScript