Interface CfnRuntime.FilesystemConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnRuntime.FilesystemConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnRuntime
@Stability(Stable)
public static interface CfnRuntime.FilesystemConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Filesystem configuration for the runtime.
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.bedrockagentcore.*;
FilesystemConfigurationProperty filesystemConfigurationProperty = FilesystemConfigurationProperty.builder()
.efsAccessPoint(EfsAccessPointConfigurationProperty.builder()
.accessPointArn("accessPointArn")
.mountPath("mountPath")
.build())
.s3FilesAccessPoint(S3FilesAccessPointConfigurationProperty.builder()
.accessPointArn("accessPointArn")
.mountPath("mountPath")
.build())
.sessionStorage(SessionStorageConfigurationProperty.builder()
.mountPath("mountPath")
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnRuntime.FilesystemConfigurationPropertystatic final classAn implementation forCfnRuntime.FilesystemConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsAccessPoint
Configuration for EFS access point filesystem.Returns union: either
IResolvableorCfnRuntime.EfsAccessPointConfigurationProperty- See Also:
-
getS3FilesAccessPoint
Configuration for S3 Files access point filesystem.Returns union: either
IResolvableorCfnRuntime.S3FilesAccessPointConfigurationProperty- See Also:
-
getSessionStorage
Configuration for session storage.Returns union: either
IResolvableorCfnRuntime.SessionStorageConfigurationProperty- See Also:
-
builder
-