Class: AWSCDK::BedrockAgentCore::CfnHarness::EFSAccessPointConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::BedrockAgentCore::CfnHarness::EFSAccessPointConfigurationProperty
- 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
- #access_point_arn ⇒ String readonly
- #mount_path ⇒ String readonly
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(access_point_arn:, mount_path:) ⇒ EFSAccessPointConfigurationProperty
constructor
A new instance of EFSAccessPointConfigurationProperty.
- #to_jsii ⇒ Object
Constructor Details
#initialize(access_point_arn:, mount_path:) ⇒ EFSAccessPointConfigurationProperty
Returns a new instance of EFSAccessPointConfigurationProperty.
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_arn ⇒ String (readonly)
1061 1062 1063 |
# File 'bedrock_agent_core/cfn_harness.rb', line 1061 def access_point_arn @access_point_arn end |
#mount_path ⇒ String (readonly)
1064 1065 1066 |
# File 'bedrock_agent_core/cfn_harness.rb', line 1064 def mount_path @mount_path end |
Class Method Details
.jsii_properties ⇒ Object
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_jsii ⇒ Object
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 |