Class: AWSCDK::BedrockAgentCore::CfnRuntime::SessionStorageConfigurationProperty

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

Overview

Configuration for session storage.

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)

    Mount path for filesystem configuration.



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_pathString (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_propertiesObject



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_jsiiObject



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