Show / Hide Table of Contents

Class CfnScraperPropsMixin.EksConfigurationProperty

The EksConfiguration structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.

Inheritance
object
CfnScraperPropsMixin.EksConfigurationProperty
Implements
CfnScraperPropsMixin.IEksConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.APS.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnScraperPropsMixin.EksConfigurationProperty : CfnScraperPropsMixin.IEksConfigurationProperty
Syntax (vb)
Public Class CfnScraperPropsMixin.EksConfigurationProperty Implements CfnScraperPropsMixin.IEksConfigurationProperty
Remarks

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

             var eksConfigurationProperty = new EksConfigurationProperty {
                 ClusterArn = "clusterArn",
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 SubnetIds = new [] { "subnetIds" }
             };

Synopsis

Constructors

EksConfigurationProperty()

The EksConfiguration structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.

Properties

ClusterArn

ARN of the Amazon EKS cluster.

SecurityGroupIds

A list of the security group IDs for the Amazon EKS cluster VPC configuration.

SubnetIds

A list of subnet IDs for the Amazon EKS cluster VPC configuration.

Constructors

EksConfigurationProperty()

The EksConfiguration structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.

public EksConfigurationProperty()
Remarks

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

             var eksConfigurationProperty = new EksConfigurationProperty {
                 ClusterArn = "clusterArn",
                 SecurityGroupIds = new [] { "securityGroupIds" },
                 SubnetIds = new [] { "subnetIds" }
             };

Properties

ClusterArn

ARN of the Amazon EKS cluster.

public string? ClusterArn { get; set; }
Property Value

string

Remarks

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

SecurityGroupIds

A list of the security group IDs for the Amazon EKS cluster VPC configuration.

public string[]? SecurityGroupIds { get; set; }
Property Value

string[]

Remarks

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

SubnetIds

A list of subnet IDs for the Amazon EKS cluster VPC configuration.

public string[]? SubnetIds { get; set; }
Property Value

string[]

Remarks

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

Implements

CfnScraperPropsMixin.IEksConfigurationProperty
Back to top Generated by DocFX