Class: AWSCDK::BedrockAgentCore::CfnHarness::S3FilesAccessPointConfigurationProperty

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

Overview

Configuration for an Amazon S3 Files 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:) ⇒ S3FilesAccessPointConfigurationProperty

Returns a new instance of S3FilesAccessPointConfigurationProperty.

Parameters:

  • access_point_arn (String)
  • mount_path (String)


2832
2833
2834
2835
2836
2837
# File 'bedrock_agent_core/cfn_harness.rb', line 2832

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)



2841
2842
2843
# File 'bedrock_agent_core/cfn_harness.rb', line 2841

def access_point_arn
  @access_point_arn
end

#mount_pathString (readonly)



2844
2845
2846
# File 'bedrock_agent_core/cfn_harness.rb', line 2844

def mount_path
  @mount_path
end

Class Method Details

.jsii_propertiesObject



2846
2847
2848
2849
2850
2851
# File 'bedrock_agent_core/cfn_harness.rb', line 2846

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

Instance Method Details

#to_jsiiObject



2853
2854
2855
2856
2857
2858
2859
2860
# File 'bedrock_agent_core/cfn_harness.rb', line 2853

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