interface EksConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.APS.Mixins.CfnScraperPropsMixin.EksConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsaps/mixins#CfnScraperPropsMixin_EksConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.aps.mixins.CfnScraperPropsMixin.EksConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_aps.mixins.CfnScraperPropsMixin.EksConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_aps » mixins » CfnScraperPropsMixin » 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 { mixins as aps_mixins } from '@aws-cdk/mixins-preview/aws-aps';
const eksConfigurationProperty: aps_mixins.CfnScraperPropsMixin.EksConfigurationProperty = {
clusterArn: 'clusterArn',
securityGroupIds: ['securityGroupIds'],
subnetIds: ['subnetIds'],
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | ARN of the Amazon EKS cluster. |
| security | string[] | A list of the security group IDs for the Amazon EKS cluster VPC configuration. |
| subnet | string[] | A list of subnet IDs for the Amazon EKS cluster VPC configuration. |
clusterArn?
Type:
string
(optional)
ARN of the Amazon EKS cluster.
securityGroupIds?
Type:
string[]
(optional)
A list of the security group IDs for the Amazon EKS cluster VPC configuration.
subnetIds?
Type:
string[]
(optional)
A list of subnet IDs for the Amazon EKS cluster VPC configuration.

.NET
Go
Java
Python
TypeScript