CfnTelemetryPipelinesMixinProps
- class aws_cdk.mixins_preview.aws_observabilityadmin.mixins.CfnTelemetryPipelinesMixinProps(*, configuration=None, name=None, tags=None)
Bases:
objectProperties for CfnTelemetryPipelinesPropsMixin.
- Parameters:
configuration (
Union[IResolvable,TelemetryPipelineConfigurationProperty,Dict[str,Any],None]) – 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:
- 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.mixins_preview.aws_observabilityadmin import mixins as observabilityadmin_mixins cfn_telemetry_pipelines_mixin_props = observabilityadmin_mixins.CfnTelemetryPipelinesMixinProps( configuration=observabilityadmin_mixins.CfnTelemetryPipelinesPropsMixin.TelemetryPipelineConfigurationProperty( body="body" ), 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 .
- name
The name of the telemetry pipeline to create.
The name must be unique within your account.
- tags
The key-value pairs to associate with the telemetry pipeline resource for categorization and management purposes.