interface CfnTelemetryPipelinesMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnTelemetryPipelinesMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnTelemetryPipelinesMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnTelemetryPipelinesMixinProps |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnTelemetryPipelinesMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnTelemetryPipelinesMixinProps |
Properties for CfnTelemetryPipelinesPropsMixin.
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 cfnTelemetryPipelinesMixinProps: observabilityadmin_mixins.CfnTelemetryPipelinesMixinProps = {
configuration: {
body: 'body',
},
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
(optional)
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