Class: AWSCDK::BedrockAgentCore::CfnRuntime::SessionStorageConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::BedrockAgentCore::CfnRuntime::SessionStorageConfigurationProperty
- Defined in:
- bedrock_agent_core/cfn_runtime.rb
Overview
Configuration for session storage.
Instance Attribute Summary collapse
-
#mount_path ⇒ String
readonly
Mount path for filesystem configuration.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(mount_path:) ⇒ SessionStorageConfigurationProperty
constructor
A new instance of SessionStorageConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(mount_path:) ⇒ SessionStorageConfigurationProperty
Returns a new instance of SessionStorageConfigurationProperty.
1444 1445 1446 1447 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1444 def initialize(mount_path:) @mount_path = mount_path Jsii::Type.check_type(@mount_path, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "mountPath") end |
Instance Attribute Details
#mount_path ⇒ String (readonly)
Mount path for filesystem configuration.
1453 1454 1455 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1453 def mount_path @mount_path end |
Class Method Details
.jsii_properties ⇒ Object
1455 1456 1457 1458 1459 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1455 def self.jsii_properties { :mount_path => "mountPath", } end |
Instance Method Details
#to_jsii ⇒ Object
1461 1462 1463 1464 1465 1466 1467 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1461 def to_jsii result = {} result.merge!({ "mountPath" => @mount_path, }) result.compact end |