Interface IFargateProfileProps
Configuration props for EKS Fargate Profiles.
Inherited Members
Namespace: Amazon.CDK.AWS.EKSv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IFargateProfileProps : IFargateProfileOptions
Syntax (vb)
Public Interface IFargateProfileProps Inherits IFargateProfileOptions
Remarks
ExampleMetadata: infused
Examples
Cluster cluster;
new FargateProfile(this, "MyProfile", new FargateProfileProps {
Cluster = cluster,
Selectors = new [] { new Selector { Namespace = "default" } }
});
Synopsis
Properties
| Cluster | The EKS cluster to apply the Fargate profile to. |
Properties
Cluster
The EKS cluster to apply the Fargate profile to.
Cluster Cluster { get; }
Property Value
Remarks
[disable-awslint:ref-via-interface]