Interface CfnRuntimePropsMixin.FilesystemConfigurationProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnRuntimePropsMixin.FilesystemConfigurationProperty.Jsii$Proxy
Enclosing class:
CfnRuntimePropsMixin

@Stability(Stable) public static interface CfnRuntimePropsMixin.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.cfnpropertymixins.services.bedrockagentcore.*;
 FilesystemConfigurationProperty filesystemConfigurationProperty = FilesystemConfigurationProperty.builder()
         .sessionStorage(SessionStorageConfigurationProperty.builder()
                 .mountPath("mountPath")
                 .build())
         .build();
 

See Also: