interface EksConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.APS.CfnScraperPropsMixin.EksConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsaps#CfnScraperPropsMixin_EksConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.aps.CfnScraperPropsMixin.EksConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_aps.CfnScraperPropsMixin.EksConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_aps » 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 { aws_aps as aps } from '@aws-cdk/cfn-property-mixins';
const eksConfigurationProperty: aps.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