interface TelemetryPipelineProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.ObservabilityAdmin.CfnTelemetryPipelines.TelemetryPipelineProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsobservabilityadmin#CfnTelemetryPipelines_TelemetryPipelineProperty |
Java | software.amazon.awscdk.services.observabilityadmin.CfnTelemetryPipelines.TelemetryPipelineProperty |
Python | aws_cdk.aws_observabilityadmin.CfnTelemetryPipelines.TelemetryPipelineProperty |
TypeScript | aws-cdk-lib » aws_observabilityadmin » CfnTelemetryPipelines » TelemetryPipelineProperty |
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 telemetryPipelineProperty: observabilityadmin.CfnTelemetryPipelines.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 | |
| configuration? | IResolvable | Telemetry | |
| created | number | |
| last | number | |
| name? | string | |
| status? | string | |
| status | IResolvable | Telemetry | |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
arn?
Type:
string
(optional)
configuration?
Type:
IResolvable | Telemetry
(optional)
createdTimeStamp?
Type:
number
(optional)
lastUpdateTimeStamp?
Type:
number
(optional)
name?
Type:
string
(optional)
status?
Type:
string
(optional)
statusReason?
Type:
IResolvable | Telemetry
(optional)
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript