Interface CfnTelemetryPipelinesMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnTelemetryPipelinesMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:01.939Z")
@Stability(Stable)
public interface CfnTelemetryPipelinesMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnTelemetryPipelinesPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.observabilityadmin.*;
CfnTelemetryPipelinesMixinProps cfnTelemetryPipelinesMixinProps = CfnTelemetryPipelinesMixinProps.builder()
.configuration(TelemetryPipelineConfigurationProperty.builder()
.body("body")
.build())
.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 forCfnTelemetryPipelinesMixinPropsstatic final classAn implementation forCfnTelemetryPipelinesMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectThe 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
IResolvableorCfnTelemetryPipelinesPropsMixin.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
-