Interface Subject.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Subject.Builder,Subject>,SdkBuilder<Subject.Builder,Subject>,SdkPojo
- Enclosing class:
- Subject
public static interface Subject.Builder extends SdkPojo, CopyableBuilder<Subject.Builder,Subject>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Subject.Buildernamespace(String namespace)The name of the Kubernetes namespace inside the cluster to create the association in.Subject.BuilderserviceAccount(String serviceAccount)The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
namespace
Subject.Builder namespace(String namespace)
The name of the Kubernetes namespace inside the cluster to create the association in. The service account and the pods that use the service account must be in this namespace.
- Parameters:
namespace- The name of the Kubernetes namespace inside the cluster to create the association in. The service account and the pods that use the service account must be in this namespace.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
serviceAccount
Subject.Builder serviceAccount(String serviceAccount)
The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.
- Parameters:
serviceAccount- The name of the Kubernetes service account inside the cluster to associate the IAM credentials with.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-