interface EksConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.APS.CfnScraper.EksConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnScraper_EksConfigurationProperty | 
|  Java | software.amazon.awscdk.services.aps.CfnScraper.EksConfigurationProperty | 
|  Python | aws_cdk.aws_aps.CfnScraper.EksConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_aps»CfnScraper»EksConfigurationProperty | 
The EksConfiguration structure describes the connection to the Amazon EKS cluster from which a scraper collects metrics.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_aps as aps } from 'aws-cdk-lib';
const eksConfigurationProperty: aps.CfnScraper.EksConfigurationProperty = {
  clusterArn: 'clusterArn',
  subnetIds: ['subnetIds'],
  // the properties below are optional
  securityGroupIds: ['securityGroupIds'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| cluster | string | ARN of the Amazon EKS cluster. | 
| subnet | string[] | A list of subnet IDs for the Amazon EKS cluster VPC configuration. | 
| security | string[] | A list of the security group IDs for the Amazon EKS cluster VPC configuration. | 
clusterArn
Type:
string
ARN of the Amazon EKS cluster.
subnetIds
Type:
string[]
A list of subnet IDs for the Amazon EKS cluster VPC configuration.
securityGroupIds?
Type:
string[]
(optional)
A list of the security group IDs for the Amazon EKS cluster VPC configuration.
