Class: AWSCDK::BedrockAgentCore::CfnRuntime::EFSAccessPointConfigurationProperty

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

Overview

Configuration for EFS access point filesystem.

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)

    ARN of the EFS access point.

  • mount_path (String)

    Mount path for filesystem configuration.



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



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_jsiiObject



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