Package org.cdk8s.plus25.k8s
Interface BoundObjectReference
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
BoundObjectReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.459Z") @Stability(Stable) public interface BoundObjectReference extends software.amazon.jsii.JsiiSerializable
BoundObjectReference is a reference to an object that a token is bound to.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classBoundObjectReference.BuilderA builder forBoundObjectReferencestatic classBoundObjectReference.Jsii$ProxyAn implementation forBoundObjectReference
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static BoundObjectReference.Builderbuilder()default StringgetApiVersion()API version of the referent.default StringgetKind()Kind of the referent.default StringgetName()Name of the referent.default StringgetUid()UID of the referent.
-
-
-
Method Detail
-
getApiVersion
@Stability(Stable) @Nullable default String getApiVersion()
API version of the referent.
-
getKind
@Stability(Stable) @Nullable default String getKind()
Kind of the referent.Valid kinds are 'Pod' and 'Secret'.
-
getName
@Stability(Stable) @Nullable default String getName()
Name of the referent.
-
getUid
@Stability(Stable) @Nullable default String getUid()
UID of the referent.
-
builder
@Stability(Stable) static BoundObjectReference.Builder builder()
- Returns:
- a
BoundObjectReference.BuilderofBoundObjectReference
-
-