interface EksConfigurationProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.APS.CfnScraper.EksConfigurationProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsaps#CfnScraper_EksConfigurationProperty |
![]() | software.amazon.awscdk.services.aps.CfnScraper.EksConfigurationProperty |
![]() | aws_cdk.aws_aps.CfnScraper.EksConfigurationProperty |
![]() | 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.