Interface FargateProfileProps

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

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:29.634Z") @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();