Class: AWSCDK::BedrockAgentCore::CfnHarness::SessionStorageConfigurationProperty

Inherits:
Jsii::Struct
  • Object
show all
Defined in:
bedrock_agent_core/cfn_harness.rb

Overview

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(mount_path:) ⇒ SessionStorageConfigurationProperty

Returns a new instance of SessionStorageConfigurationProperty.

Parameters:

  • mount_path (String)


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_pathString (readonly)



2906
2907
2908
# File 'bedrock_agent_core/cfn_harness.rb', line 2906

def mount_path
  @mount_path
end

Class Method Details

.jsii_propertiesObject



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_jsiiObject



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