Interface FargateProfileProps

All Superinterfaces:
FargateProfileOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
FargateProfileProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.126.0 (build 206d44b)", date="2026-02-09T14:39:10.752Z") @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();