Class: AWSCDK::BedrockAgentCore::CfnHarness::SessionStorageConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::BedrockAgentCore::CfnHarness::SessionStorageConfigurationProperty
- Defined in:
- bedrock_agent_core/cfn_harness.rb
Overview
Instance Attribute Summary collapse
- #mount_path ⇒ String readonly
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.
2899 2900 2901 2902 |
# File 'bedrock_agent_core/cfn_harness.rb', line 2899 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)
2906 2907 2908 |
# File 'bedrock_agent_core/cfn_harness.rb', line 2906 def mount_path @mount_path end |
Class Method Details
.jsii_properties ⇒ Object
2908 2909 2910 2911 2912 |
# File 'bedrock_agent_core/cfn_harness.rb', line 2908 def self.jsii_properties { :mount_path => "mountPath", } end |
Instance Method Details
#to_jsii ⇒ Object
2914 2915 2916 2917 2918 2919 2920 |
# File 'bedrock_agent_core/cfn_harness.rb', line 2914 def to_jsii result = {} result.merge!({ "mountPath" => @mount_path, }) result.compact end |