Package org.cdk8s.plus24.k8s
Interface VolumeAttachmentSpec
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
VolumeAttachmentSpec.Jsii$Proxy
@Generated(value="jsii-pacmak/1.79.0 (build b22f628)", date="2023-03-31T02:28:42.085Z") @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 class
VolumeAttachmentSpec.Builder
A builder forVolumeAttachmentSpec
static class
VolumeAttachmentSpec.Jsii$Proxy
An implementation forVolumeAttachmentSpec
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description static VolumeAttachmentSpec.Builder
builder()
String
getAttacher()
Attacher indicates the name of the volume driver that MUST handle this request.String
getNodeName()
The node that the volume should be attached to.VolumeAttachmentSource
getSource()
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.Builder
ofVolumeAttachmentSpec
-
-