Package org.cdk8s.plus28.k8s
Interface VolumeAttachmentSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VolumeAttachmentSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-03T12:13:25.894Z") @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()nodeName represents 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()
nodeName represents 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
-
-