Show / Hide Table of Contents

Interface IFargateProfileProps

Configuration props for EKS Fargate Profiles.

Inherited Members
IFargateProfileOptions.Selectors
IFargateProfileOptions.FargateProfileName
IFargateProfileOptions.PodExecutionRole
IFargateProfileOptions.RemovalPolicy
IFargateProfileOptions.SubnetSelection
IFargateProfileOptions.Vpc
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

Cluster

Remarks

[disable-awslint:ref-via-interface]

Back to top Generated by DocFX