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 | |
| name? | string | |
| tags? | Cfn[] | An array of key-value pairs to apply to this resource. |
configuration
Type:
IResolvable | Telemetry
name?
Type:
string
(optional)
tags?
Type:
Cfn[]
(optional)
An array of key-value pairs to apply to this resource.

.NET
Go
Java
Python
TypeScript