Show / Hide Table of Contents

Interface CfnLink.ILinkConfigurationProperty

Use this structure to optionally create filters that specify that only some metric namespaces or log groups are to be shared from the source account to the monitoring account.

Namespace: Amazon.CDK.AWS.Oam
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnLink.ILinkConfigurationProperty
Syntax (vb)
Public Interface CfnLink.ILinkConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.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.Oam;

             var linkConfigurationProperty = new LinkConfigurationProperty {
                 LogGroupConfiguration = new LinkFilterProperty {
                     Filter = "filter"
                 },
                 MetricConfiguration = new LinkFilterProperty {
                     Filter = "filter"
                 }
             };

Synopsis

Properties

LogGroupConfiguration

Use this structure to filter which log groups are to share log events from this source account to the monitoring account.

MetricConfiguration

Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.

Properties

LogGroupConfiguration

Use this structure to filter which log groups are to share log events from this source account to the monitoring account.

object? LogGroupConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html#cfn-oam-link-linkconfiguration-loggroupconfiguration

Type union: either IResolvable or CfnLink.ILinkFilterProperty

MetricConfiguration

Use this structure to filter which metric namespaces are to be shared from the source account to the monitoring account.

object? MetricConfiguration { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-oam-link-linkconfiguration.html#cfn-oam-link-linkconfiguration-metricconfiguration

Type union: either IResolvable or CfnLink.ILinkFilterProperty

Back to top Generated by DocFX