Interface CfnScraper.EksConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnScraper.EksConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnScraper

@Stability(Stable) public static interface CfnScraper.EksConfigurationProperty extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.aps.*;
 EksConfigurationProperty eksConfigurationProperty = EksConfigurationProperty.builder()
         .clusterArn("clusterArn")
         .subnetIds(List.of("subnetIds"))
         // the properties below are optional
         .securityGroupIds(List.of("securityGroupIds"))
         .build();
 

See Also: