Show / Hide Table of Contents

Class CfnScraper.SourceProperty

The source of collected metrics for a scraper.

Inheritance
object
CfnScraper.SourceProperty
Implements
CfnScraper.ISourceProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.APS
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnScraper.SourceProperty : CfnScraper.ISourceProperty
Syntax (vb)
Public Class CfnScraper.SourceProperty Implements CfnScraper.ISourceProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-source.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.APS;

             var sourceProperty = new SourceProperty {
                 EksConfiguration = new EksConfigurationProperty {
                     ClusterArn = "clusterArn",
                     SubnetIds = new [] { "subnetIds" },

                     // the properties below are optional
                     SecurityGroupIds = new [] { "securityGroupIds" }
                 }
             };

Synopsis

Constructors

SourceProperty()

The source of collected metrics for a scraper.

Properties

EksConfiguration

The Amazon EKS cluster from which a scraper collects metrics.

Constructors

SourceProperty()

The source of collected metrics for a scraper.

public SourceProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-source.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.APS;

             var sourceProperty = new SourceProperty {
                 EksConfiguration = new EksConfigurationProperty {
                     ClusterArn = "clusterArn",
                     SubnetIds = new [] { "subnetIds" },

                     // the properties below are optional
                     SecurityGroupIds = new [] { "securityGroupIds" }
                 }
             };

Properties

EksConfiguration

The Amazon EKS cluster from which a scraper collects metrics.

public object EksConfiguration { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-aps-scraper-source.html#cfn-aps-scraper-source-eksconfiguration

Implements

CfnScraper.ISourceProperty
Back to top Generated by DocFX