Package org.cdk8s.plus25.k8s
Interface TypedLocalObjectReference
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
TypedLocalObjectReference.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.843Z") @Stability(Stable) public interface TypedLocalObjectReference extends software.amazon.jsii.JsiiSerializable
TypedLocalObjectReference contains enough information to let you locate the typed referenced object inside the same namespace.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classTypedLocalObjectReference.BuilderA builder forTypedLocalObjectReferencestatic classTypedLocalObjectReference.Jsii$ProxyAn implementation forTypedLocalObjectReference
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static TypedLocalObjectReference.Builderbuilder()default StringgetApiGroup()APIGroup is the group for the resource being referenced.StringgetKind()Kind is the type of resource being referenced.StringgetName()Name is the name of resource being referenced.
-
-
-
Method Detail
-
getKind
@Stability(Stable) @NotNull String getKind()
Kind is the type of resource being referenced.
-
getName
@Stability(Stable) @NotNull String getName()
Name is the name of resource being referenced.
-
getApiGroup
@Stability(Stable) @Nullable default String getApiGroup()
APIGroup is the group for the resource being referenced.If APIGroup is not specified, the specified Kind must be in the core API group. For any other third-party types, APIGroup is required.
-
builder
@Stability(Stable) static TypedLocalObjectReference.Builder builder()
- Returns:
- a
TypedLocalObjectReference.BuilderofTypedLocalObjectReference
-
-