Interface FargateProfileProps

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-07-12T19:34:01.700Z") @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();