Interface CfnTelemetryPipelinesProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTelemetryPipelinesProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.125.0 (build fdbe357)",
date="2026-01-23T11:19:50.708Z")
@Stability(Stable)
public interface CfnTelemetryPipelinesProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.observabilityadmin.*;
CfnTelemetryPipelinesProps cfnTelemetryPipelinesProps = CfnTelemetryPipelinesProps.builder()
.configuration(TelemetryPipelineConfigurationProperty.builder()
.body("body")
.build())
// the properties below are optional
.name("name")
.tags(List.of(CfnTag.builder()
.key("key")
.value("value")
.build()))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnTelemetryPipelinesPropsstatic final classAn implementation forCfnTelemetryPipelinesProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations.default StringgetName()The name of the telemetry pipeline to create.getTags()The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getConfiguration
The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations.For more information, see the Amazon CloudWatch User Guide .
Returns union: either
IResolvableorCfnTelemetryPipelines.TelemetryPipelineConfigurationProperty- See Also:
-
getName
The name of the telemetry pipeline to create.The name must be unique within your account.
- See Also:
-
getTags
The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.- See Also:
-
builder
- Returns:
- a
CfnTelemetryPipelinesProps.BuilderofCfnTelemetryPipelinesProps
-