Interface EksSecret.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<EksSecret.Builder,EksSecret>
,SdkBuilder<EksSecret.Builder,EksSecret>
,SdkPojo
- Enclosing class:
- EksSecret
public static interface EksSecret.Builder extends SdkPojo, CopyableBuilder<EksSecret.Builder,EksSecret>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description EksSecret.Builder
optional(Boolean optional)
Specifies whether the secret or the secret's keys must be defined.EksSecret.Builder
secretName(String secretName)
The name of the secret.-
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, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
secretName
EksSecret.Builder secretName(String secretName)
The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.
- Parameters:
secretName
- The name of the secret. The name must be allowed as a DNS subdomain name. For more information, see DNS subdomain names in the Kubernetes documentation.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
optional
EksSecret.Builder optional(Boolean optional)
Specifies whether the secret or the secret's keys must be defined.
- Parameters:
optional
- Specifies whether the secret or the secret's keys must be defined.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-