Interface FileSystemConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FileSystemConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.119.0 (build 1634eac)",
date="2025-11-17T14:40:47.507Z")
@Stability(Stable)
public interface FileSystemConfig
extends software.amazon.jsii.JsiiSerializable
The type returned from
IFileSystemLocation#bind.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.codebuild.*;
FileSystemConfig fileSystemConfig = FileSystemConfig.builder()
.location(ProjectFileSystemLocationProperty.builder()
.identifier("identifier")
.location("location")
.mountPoint("mountPoint")
.type("type")
// the properties below are optional
.mountOptions("mountOptions")
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forFileSystemConfigstatic final classAn implementation forFileSystemConfig -
Method Summary
Modifier and TypeMethodDescriptionstatic FileSystemConfig.Builderbuilder()File system location wrapper property.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getLocation
File system location wrapper property.- See Also:
-
builder
- Returns:
- a
FileSystemConfig.BuilderofFileSystemConfig
-