Interface CfnScraperPropsMixin.EksConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnScraperPropsMixin.EksConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnScraperPropsMixin
@Stability(Stable)
public static interface CfnScraperPropsMixin.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.cfnpropertymixins.services.aps.*;
EksConfigurationProperty eksConfigurationProperty = EksConfigurationProperty.builder()
.clusterArn("clusterArn")
.securityGroupIds(List.of("securityGroupIds"))
.subnetIds(List.of("subnetIds"))
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnScraperPropsMixin.EksConfigurationPropertystatic final classAn implementation forCfnScraperPropsMixin.EksConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getClusterArn
ARN of the Amazon EKS cluster.- See Also:
-
getSecurityGroupIds
A list of the security group IDs for the Amazon EKS cluster VPC configuration.- See Also:
-
getSubnetIds
A list of subnet IDs for the Amazon EKS cluster VPC configuration.- See Also:
-
builder
-