Interface CfnTelemetryPipelines.TelemetryPipelineProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnTelemetryPipelines.TelemetryPipelineProperty.Jsii$Proxy
Enclosing class:
CfnTelemetryPipelines

@Stability(Stable) public static interface CfnTelemetryPipelines.TelemetryPipelineProperty extends software.amazon.jsii.JsiiSerializable
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.*;
 TelemetryPipelineProperty telemetryPipelineProperty = TelemetryPipelineProperty.builder()
         .arn("arn")
         .configuration(TelemetryPipelineConfigurationProperty.builder()
                 .body("body")
                 .build())
         .createdTimeStamp(123)
         .lastUpdateTimeStamp(123)
         .name("name")
         .status("status")
         .statusReason(TelemetryPipelineStatusReasonProperty.builder()
                 .description("description")
                 .build())
         .tags(List.of(CfnTag.builder()
                 .key("key")
                 .value("value")
                 .build()))
         .build();
 

See Also: