Package org.cdk8s.plus25.k8s
Interface VolumeAttachmentSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VolumeAttachmentSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.850Z") @Stability(Stable) public interface VolumeAttachmentSpec extends software.amazon.jsii.JsiiSerializable
VolumeAttachmentSpec is the specification of a VolumeAttachment request.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classVolumeAttachmentSpec.BuilderA builder forVolumeAttachmentSpecstatic classVolumeAttachmentSpec.Jsii$ProxyAn implementation forVolumeAttachmentSpec
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static VolumeAttachmentSpec.Builderbuilder()StringgetAttacher()Attacher indicates the name of the volume driver that MUST handle this request.StringgetNodeName()The node that the volume should be attached to.VolumeAttachmentSourcegetSource()Source represents the volume that should be attached.
-
-
-
Method Detail
-
getAttacher
@Stability(Stable) @NotNull String getAttacher()
Attacher indicates the name of the volume driver that MUST handle this request.This is the name returned by GetPluginName().
-
getNodeName
@Stability(Stable) @NotNull String getNodeName()
The node that the volume should be attached to.
-
getSource
@Stability(Stable) @NotNull VolumeAttachmentSource getSource()
Source represents the volume that should be attached.
-
builder
@Stability(Stable) static VolumeAttachmentSpec.Builder builder()
- Returns:
- a
VolumeAttachmentSpec.BuilderofVolumeAttachmentSpec
-
-