Package org.cdk8s.plus24.k8s
Interface SecretReference
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SecretReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.80.0 (build bce6a1d)", date="2023-05-05T16:22:34.259Z") @Stability(Stable) public interface SecretReference extends software.amazon.jsii.JsiiSerializable
SecretReference represents a Secret Reference.It has enough information to retrieve secret in any namespace
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
SecretReference.Builder
A builder forSecretReference
static class
SecretReference.Jsii$Proxy
An implementation forSecretReference
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static SecretReference.Builder
builder()
default String
getName()
name is unique within a namespace to reference a secret resource.default String
getNamespace()
namespace defines the space within which the secret name must be unique.
-
-
-
Method Detail
-
getName
@Stability(Stable) @Nullable default String getName()
name is unique within a namespace to reference a secret resource.
-
getNamespace
@Stability(Stable) @Nullable default String getNamespace()
namespace defines the space within which the secret name must be unique.
-
builder
@Stability(Stable) static SecretReference.Builder builder()
- Returns:
- a
SecretReference.Builder
ofSecretReference
-
-