Interface CfnHarness.FilesystemConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnHarness.FilesystemConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnHarness
@Stability(Stable)
public static interface CfnHarness.FilesystemConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
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 forCfnHarness.FilesystemConfigurationPropertystatic final classAn implementation forCfnHarness.FilesystemConfigurationProperty -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default ObjectConfiguration for an Amazon EFS access point to mount into the AgentCore Runtime.default ObjectConfiguration for an Amazon S3 Files access point to mount into the AgentCore Runtime.default ObjectReturns union: eitherIResolvableorCfnHarness.SessionStorageConfigurationPropertyMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getEfsAccessPoint
Configuration for an Amazon EFS access point to mount into the AgentCore Runtime.Returns union: either
IResolvableorCfnHarness.EfsAccessPointConfigurationProperty- See Also:
-
getS3FilesAccessPoint
Configuration for an Amazon S3 Files access point to mount into the AgentCore Runtime.Returns union: either
IResolvableorCfnHarness.S3FilesAccessPointConfigurationProperty- See Also:
-
getSessionStorage
Returns union: eitherIResolvableorCfnHarness.SessionStorageConfigurationProperty- See Also:
-
builder
-