Class UpdateAccessEntryRequest
- java.lang.Object
-
- software.amazon.awssdk.core.SdkRequest
-
- software.amazon.awssdk.awscore.AwsRequest
-
- software.amazon.awssdk.services.eks.model.EksRequest
-
- software.amazon.awssdk.services.eks.model.UpdateAccessEntryRequest
-
- All Implemented Interfaces:
SdkPojo,ToCopyableBuilder<UpdateAccessEntryRequest.Builder,UpdateAccessEntryRequest>
@Generated("software.amazon.awssdk:codegen") public final class UpdateAccessEntryRequest extends EksRequest implements ToCopyableBuilder<UpdateAccessEntryRequest.Builder,UpdateAccessEntryRequest>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceUpdateAccessEntryRequest.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static UpdateAccessEntryRequest.Builderbuilder()StringclientRequestToken()A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.StringclusterName()The name of your cluster.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()booleanhasKubernetesGroups()For responses, this returns true if the service returned a value for the KubernetesGroups property.List<String>kubernetesGroups()The value fornamethat you've specified forkind: Groupas asubjectin a KubernetesRoleBindingorClusterRoleBindingobject.StringprincipalArn()The ARN of the IAM principal for theAccessEntry.List<SdkField<?>>sdkFields()static Class<? extends UpdateAccessEntryRequest.Builder>serializableBuilderClass()UpdateAccessEntryRequest.BuildertoBuilder()StringtoString()Returns a string representation of this object.Stringusername()The username to authenticate to Kubernetes with.-
Methods inherited from class software.amazon.awssdk.awscore.AwsRequest
overrideConfiguration
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
clusterName
public final String clusterName()
The name of your cluster.
- Returns:
- The name of your cluster.
-
principalArn
public final String principalArn()
The ARN of the IAM principal for the
AccessEntry.- Returns:
- The ARN of the IAM principal for the
AccessEntry.
-
hasKubernetesGroups
public final boolean hasKubernetesGroups()
For responses, this returns true if the service returned a value for the KubernetesGroups property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
kubernetesGroups
public final List<String> kubernetesGroups()
The value for
namethat you've specified forkind: Groupas asubjectin a KubernetesRoleBindingorClusterRoleBindingobject. Amazon EKS doesn't confirm that the value fornameexists in any bindings on your cluster. You can specify one or more names.Kubernetes authorizes the
principalArnof the access entry to access any cluster objects that you've specified in a KubernetesRoleorClusterRoleobject that is also specified in a binding'sroleRef. For more information about creating KubernetesRoleBinding,ClusterRoleBinding,Role, orClusterRoleobjects, see Using RBAC Authorization in the Kubernetes documentation.If you want Amazon EKS to authorize the
principalArn(instead of, or in addition to Kubernetes authorizing theprincipalArn), you can associate one or more access policies to the access entry usingAssociateAccessPolicy. If you associate any access policies, theprincipalARNhas all permissions assigned in the associated access policies and all permissions in any KubernetesRoleorClusterRoleobjects that the group names are bound to.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasKubernetesGroups()method.- Returns:
- The value for
namethat you've specified forkind: Groupas asubjectin a KubernetesRoleBindingorClusterRoleBindingobject. Amazon EKS doesn't confirm that the value fornameexists in any bindings on your cluster. You can specify one or more names.Kubernetes authorizes the
principalArnof the access entry to access any cluster objects that you've specified in a KubernetesRoleorClusterRoleobject that is also specified in a binding'sroleRef. For more information about creating KubernetesRoleBinding,ClusterRoleBinding,Role, orClusterRoleobjects, see Using RBAC Authorization in the Kubernetes documentation.If you want Amazon EKS to authorize the
principalArn(instead of, or in addition to Kubernetes authorizing theprincipalArn), you can associate one or more access policies to the access entry usingAssociateAccessPolicy. If you associate any access policies, theprincipalARNhas all permissions assigned in the associated access policies and all permissions in any KubernetesRoleorClusterRoleobjects that the group names are bound to.
-
clientRequestToken
public final String clientRequestToken()
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
- Returns:
- A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
-
username
public final String username()
The username to authenticate to Kubernetes with. We recommend not specifying a username and letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies for you, or constraints before specifying your own username, see Creating access entries in the Amazon EKS User Guide.
- Returns:
- The username to authenticate to Kubernetes with. We recommend not specifying a username and letting Amazon EKS specify it for you. For more information about the value Amazon EKS specifies for you, or constraints before specifying your own username, see Creating access entries in the Amazon EKS User Guide.
-
toBuilder
public UpdateAccessEntryRequest.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<UpdateAccessEntryRequest.Builder,UpdateAccessEntryRequest>- Specified by:
toBuilderin classEksRequest
-
builder
public static UpdateAccessEntryRequest.Builder builder()
-
serializableBuilderClass
public static Class<? extends UpdateAccessEntryRequest.Builder> serializableBuilderClass()
-
hashCode
public final int hashCode()
- Overrides:
hashCodein classAwsRequest
-
equals
public final boolean equals(Object obj)
- Overrides:
equalsin classAwsRequest
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
getValueForField
public final <T> Optional<T> getValueForField(String fieldName, Class<T> clazz)
- Overrides:
getValueForFieldin classSdkRequest
-
-