Class FileSystemLocation
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.codebuild.FileSystemLocation
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)",
date="2024-09-24T10:56:28.991Z")
@Stability(Stable)
public class FileSystemLocation
extends software.amazon.jsii.JsiiObject
FileSystemLocation provider definition for a CodeBuild Project.
Example:
Project.Builder.create(this, "MyProject") .buildSpec(BuildSpec.fromObject(Map.of( "version", "0.2"))) .fileSystemLocations(List.of(FileSystemLocation.efs(EfsFileSystemLocationProps.builder() .identifier("myidentifier2") .location("myclodation.mydnsroot.com:/loc") .mountPoint("/media") .mountOptions("opts") .build()))) .build();
-
Nested Class Summary
Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Constructor Summary
ModifierConstructorDescriptionprotected
FileSystemLocation
(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) protected
FileSystemLocation
(software.amazon.jsii.JsiiObjectRef objRef) -
Method Summary
Modifier and TypeMethodDescriptionstatic IFileSystemLocation
efs
(EfsFileSystemLocationProps props) EFS file system provider.Methods inherited from class software.amazon.jsii.JsiiObject
jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Constructor Details
-
FileSystemLocation
protected FileSystemLocation(software.amazon.jsii.JsiiObjectRef objRef) -
FileSystemLocation
protected FileSystemLocation(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
FileSystemLocation
@Stability(Stable) public FileSystemLocation()
-
-
Method Details
-
efs
@Stability(Stable) @NotNull public static IFileSystemLocation efs(@NotNull EfsFileSystemLocationProps props) EFS file system provider.- Parameters:
props
- the EFS File System location property. This parameter is required.
-