Interface FargateProfileProps

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

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-17T05:10:10.799Z") @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();