CfnTelemetryPipelinesProps

class aws_cdk.aws_observabilityadmin.CfnTelemetryPipelinesProps(*, configuration, name=None, tags=None)

Bases: object

Properties for defining a CfnTelemetryPipelines.

Parameters:
  • configuration (Union[IResolvable, TelemetryPipelineConfigurationProperty, Dict[str, Any]]) – The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations. For more information, see the Amazon CloudWatch User Guide .

  • name (Optional[str]) – The name of the telemetry pipeline to create. The name must be unique within your account.

  • tags (Optional[Sequence[Union[CfnTag, Dict[str, Any]]]]) – The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html

ExampleMetadata:

fixture=_generated

Example:

from aws_cdk import CfnTag
# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_observabilityadmin as observabilityadmin

cfn_telemetry_pipelines_props = observabilityadmin.CfnTelemetryPipelinesProps(
    configuration=observabilityadmin.CfnTelemetryPipelines.TelemetryPipelineConfigurationProperty(
        body="body"
    ),

    # the properties below are optional
    name="name",
    tags=[CfnTag(
        key="key",
        value="value"
    )]
)

Attributes

configuration

The configuration that defines how the telemetry pipeline processes data, including sources, processors, and destinations.

For more information, see the Amazon CloudWatch User Guide .

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-configuration

name

The name of the telemetry pipeline to create.

The name must be unique within your account.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-name

tags

The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-observabilityadmin-telemetrypipelines.html#cfn-observabilityadmin-telemetrypipelines-tags