Class CfnScraperPropsMixin.EksConfigurationProperty
The EksConfiguration structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.
Implements
Inherited Members
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
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 |
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
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
Remarks
SecurityGroupIds
A list of the security group IDs for the Amazon EKS cluster VPC configuration.
public string[]? SecurityGroupIds { get; set; }
Property Value
string[]
Remarks
SubnetIds
A list of subnet IDs for the Amazon EKS cluster VPC configuration.
public string[]? SubnetIds { get; set; }
Property Value
string[]