Class AlbController
(experimental) Construct for installing the AWS ALB Contoller on EKS clusters.
Inheritance
Namespace: Amazon.CDK.AWS.Eks.V2.Alpha
Assembly: Amazon.CDK.AWS.Eks.V2.Alpha.dll
Syntax (csharp)
public class AlbController : Construct
Syntax (vb)
Public Class AlbController
Inherits Construct
Remarks
Use the factory functions get
and getOrCreate
to obtain/create instances of this controller.
Stability: Experimental
See: https://kubernetes-sigs.github.io/aws-load-balancer-controller
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Eks.V2.Alpha;
AlbControllerVersion albControllerVersion;
Cluster cluster;
var policy;
var albController = new AlbController(this, "MyAlbController", new AlbControllerProps {
Cluster = cluster,
Version = albControllerVersion,
// the properties below are optional
Policy = policy,
Repository = "repository"
});
Synopsis
Constructors
Alb |
Used by jsii to construct an instance of this class from a Javascript-owned object reference |
Alb |
Used by jsii to construct an instance of this class from DeputyProps |
Alb |
Methods
Create(Construct, IAlb |
(experimental) Create the controller construct associated with this cluster and scope. |
Constructors
AlbController(ByRefValue)
Used by jsii to construct an instance of this class from a Javascript-owned object reference
protected AlbController(ByRefValue reference)
Parameters
- reference Amazon.
JSII. Runtime. Deputy. By Ref Value The Javascript-owned object reference
AlbController(DeputyBase.DeputyProps)
Used by jsii to construct an instance of this class from DeputyProps
protected AlbController(DeputyBase.DeputyProps props)
Parameters
- props Amazon.
JSII. Runtime. Deputy. Deputy Base. Deputy Props The deputy props
AlbController(Construct, String, IAlbControllerProps)
public AlbController(Construct scope, string id, IAlbControllerProps props)
Parameters
- scope Constructs.
Construct - id System.
String - props IAlb
Controller Props
Remarks
Stability: Experimental
Methods
Create(Construct, IAlbControllerProps)
(experimental) Create the controller construct associated with this cluster and scope.
public static AlbController Create(Construct scope, IAlbControllerProps props)
Parameters
- scope Constructs.
Construct - props IAlb
Controller Props
Returns
Remarks
Singleton per stack/cluster.
Stability: Experimental