Interface FileSystemConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
FileSystemConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:23:58.649Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forFileSystemConfig
static final class
An implementation forFileSystemConfig
-
Method Summary
Modifier and TypeMethodDescriptionstatic FileSystemConfig.Builder
builder()
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.Builder
ofFileSystemConfig
-