Interface AlbControllerProps
- All Superinterfaces:
AlbControllerOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AlbControllerProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:46.479Z")
@Stability(Stable)
public interface AlbControllerProps
extends software.amazon.jsii.JsiiSerializable, AlbControllerOptions
Properties for
AlbController.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.eks.*;
AlbControllerVersion albControllerVersion;
Cluster cluster;
Object policy;
AlbControllerProps albControllerProps = AlbControllerProps.builder()
.cluster(cluster)
.version(albControllerVersion)
// the properties below are optional
.policy(policy)
.repository("repository")
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forAlbControllerPropsstatic final classAn implementation forAlbControllerProps -
Method Summary
Modifier and TypeMethodDescriptionstatic AlbControllerProps.Builderbuilder()[disable-awslint:ref-via-interface] Cluster to install the controller onto.Methods inherited from interface software.amazon.awscdk.services.eks.AlbControllerOptions
getPolicy, getRepository, getVersionMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCluster
[disable-awslint:ref-via-interface] Cluster to install the controller onto. -
builder
- Returns:
- a
AlbControllerProps.BuilderofAlbControllerProps
-