Package org.cdk8s.plus25.k8s
Interface SecretReference
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SecretReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.815Z") @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 classSecretReference.BuilderA builder forSecretReferencestatic classSecretReference.Jsii$ProxyAn implementation forSecretReference
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static SecretReference.Builderbuilder()default StringgetName()name is unique within a namespace to reference a secret resource.default StringgetNamespace()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.BuilderofSecretReference
-
-