Class: AWSCDK::BedrockAgentCore::CfnHarness::EFSAccessPointConfigurationProperty

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

Overview

Configuration for an Amazon EFS access point to mount into the AgentCore Runtime.

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access_point_arn:, mount_path:) ⇒ EFSAccessPointConfigurationProperty

Returns a new instance of EFSAccessPointConfigurationProperty.

Parameters:

  • access_point_arn (String)
  • mount_path (String)


1052
1053
1054
1055
1056
1057
# File 'bedrock_agent_core/cfn_harness.rb', line 1052

def initialize(access_point_arn:, mount_path:)
  @access_point_arn = access_point_arn
  Jsii::Type.check_type(@access_point_arn, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "accessPointArn")
  @mount_path = mount_path
  Jsii::Type.check_type(@mount_path, JSON.parse(Base64.strict_decode64("eyJwcmltaXRpdmUiOiJzdHJpbmcifQ==")), "mountPath")
end

Instance Attribute Details

#access_point_arnString (readonly)



1061
1062
1063
# File 'bedrock_agent_core/cfn_harness.rb', line 1061

def access_point_arn
  @access_point_arn
end

#mount_pathString (readonly)



1064
1065
1066
# File 'bedrock_agent_core/cfn_harness.rb', line 1064

def mount_path
  @mount_path
end

Class Method Details

.jsii_propertiesObject



1066
1067
1068
1069
1070
1071
# File 'bedrock_agent_core/cfn_harness.rb', line 1066

def self.jsii_properties
  {
    :access_point_arn => "accessPointArn",
    :mount_path => "mountPath",
  }
end

Instance Method Details

#to_jsiiObject



1073
1074
1075
1076
1077
1078
1079
1080
# File 'bedrock_agent_core/cfn_harness.rb', line 1073

def to_jsii
  result = {}
  result.merge!({
    "accessPointArn" => @access_point_arn,
    "mountPath" => @mount_path,
  })
  result.compact
end