Class: AWSCDK::BedrockAgentCore::CfnRuntime::EFSAccessPointConfigurationProperty
- Inherits:
-
Jsii::Struct
- Object
- Jsii::Struct
- AWSCDK::BedrockAgentCore::CfnRuntime::EFSAccessPointConfigurationProperty
- Defined in:
- bedrock_agent_core/cfn_runtime.rb
Overview
Configuration for EFS access point filesystem.
Instance Attribute Summary collapse
-
#access_point_arn ⇒ String
readonly
ARN of the EFS access point.
-
#mount_path ⇒ String
readonly
Mount path for filesystem configuration.
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.
1134 1135 1136 1137 1138 1139 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1134 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)
ARN of the EFS access point.
1145 1146 1147 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1145 def access_point_arn @access_point_arn end |
#mount_path ⇒ String (readonly)
Mount path for filesystem configuration.
1150 1151 1152 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1150 def mount_path @mount_path end |
Class Method Details
.jsii_properties ⇒ Object
1152 1153 1154 1155 1156 1157 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1152 def self.jsii_properties { :access_point_arn => "accessPointArn", :mount_path => "mountPath", } end |
Instance Method Details
#to_jsii ⇒ Object
1159 1160 1161 1162 1163 1164 1165 1166 |
# File 'bedrock_agent_core/cfn_runtime.rb', line 1159 def to_jsii result = {} result.merge!({ "accessPointArn" => @access_point_arn, "mountPath" => @mount_path, }) result.compact end |