interface TelemetryPipelineProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ObservabilityAdmin.Mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsobservabilityadmin/mixins#CfnTelemetryPipelinesPropsMixin_TelemetryPipelineProperty |
Java | software.amazon.awscdk.mixins.preview.services.observabilityadmin.mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineProperty |
Python | aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineProperty |
TypeScript | @aws-cdk/mixins-preview » aws_observabilityadmin » mixins » CfnTelemetryPipelinesPropsMixin » TelemetryPipelineProperty |
Represents a complete telemetry pipeline resource with configuration, status, and metadata for data processing and transformation.
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 telemetryPipelineProperty: observabilityadmin_mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineProperty = {
arn: 'arn',
configuration: {
body: 'body',
},
createdTimeStamp: 123,
lastUpdateTimeStamp: 123,
name: 'name',
status: 'status',
statusReason: {
description: 'description',
},
tags: [{
key: 'key',
value: 'value',
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| arn? | string | The Amazon Resource Name (ARN) of the telemetry pipeline. |
| configuration? | IResolvable | Telemetry | The configuration that defines how the telemetry pipeline processes data. |
| created | number | The timestamp when the telemetry pipeline was created. |
| last | number | The timestamp when the telemetry pipeline was last updated. |
| name? | string | The name of the telemetry pipeline. |
| status? | string | The current status of the telemetry pipeline. |
| status | IResolvable | Telemetry | Additional information about the pipeline status, including reasons for failure states. |
| tags? | Cfn[] | The key-value pairs associated with the telemetry pipeline resource. |
arn?
Type:
string
(optional)
The Amazon Resource Name (ARN) of the telemetry pipeline.
configuration?
Type:
IResolvable | Telemetry
(optional)
The configuration that defines how the telemetry pipeline processes data.
createdTimeStamp?
Type:
number
(optional)
The timestamp when the telemetry pipeline was created.
lastUpdateTimeStamp?
Type:
number
(optional)
The timestamp when the telemetry pipeline was last updated.
name?
Type:
string
(optional)
The name of the telemetry pipeline.
status?
Type:
string
(optional)
The current status of the telemetry pipeline.
statusReason?
Type:
IResolvable | Telemetry
(optional)
Additional information about the pipeline status, including reasons for failure states.
tags?
Type:
Cfn[]
(optional)
The key-value pairs associated with the telemetry pipeline resource.

.NET
Go
Java
Python
TypeScript