Show / Hide Table of Contents

Interface ICfnTelemetryPipelinesProps

Properties for defining a CfnTelemetryPipelines.

Namespace: Amazon.CDK.AWS.ObservabilityAdmin
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnTelemetryPipelinesProps
Syntax (vb)
Public Interface ICfnTelemetryPipelinesProps
Remarks

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

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.ObservabilityAdmin;

             var cfnTelemetryPipelinesProps = new CfnTelemetryPipelinesProps {
                 Configuration = new TelemetryPipelineConfigurationProperty {
                     Body = "body"
                 },

                 // the properties below are optional
                 Name = "name",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

Configuration

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

Name

The name of the telemetry pipeline to create.

Tags

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

Properties

Configuration

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

object Configuration { get; }
Property Value

object

Remarks

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

Type union: either IResolvable or CfnTelemetryPipelines.ITelemetryPipelineConfigurationProperty

Name

The name of the telemetry pipeline to create.

string? Name { get; }
Property Value

string

Remarks

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.

ICfnTag[]? Tags { get; }
Property Value

ICfnTag[]

Remarks

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

Back to top Generated by DocFX