Interface FargateProfileProps
- All Superinterfaces:
- FargateProfileOptions,- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- FargateProfileProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
           date="2023-06-19T16:30:46.602Z")
@Stability(Stable)
public interface FargateProfileProps
extends software.amazon.jsii.JsiiSerializable, FargateProfileOptions
Configuration props for EKS Fargate Profiles.
 
Example:
 Cluster cluster;
 FargateProfile.Builder.create(this, "MyProfile")
         .cluster(cluster)
         .selectors(List.of(Selector.builder().namespace("default").build()))
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFargateProfilePropsstatic final classAn implementation forFargateProfileProps
- 
Method SummaryModifier and TypeMethodDescriptionstatic FargateProfileProps.Builderbuilder()The EKS cluster to apply the Fargate profile to.Methods inherited from interface software.amazon.awscdk.services.eks.FargateProfileOptionsgetFargateProfileName, getPodExecutionRole, getSelectors, getSubnetSelection, getVpcMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
getClusterThe EKS cluster to apply the Fargate profile to.[disable-awslint:ref-via-interface] 
- 
builder- Returns:
- a FargateProfileProps.BuilderofFargateProfileProps
 
 
-