Class: AWSCDK::BedrockAgentCore::CfnRuntime::S3FilesAccessPointConfigurationProperty

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

Overview

Configuration for S3 Files access point filesystem.

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)

    ARN of the S3 Files access point.

  • mount_path (String)

    Mount path for filesystem configuration.



1349
1350
1351
1352
1353
1354
# File 'bedrock_agent_core/cfn_runtime.rb', line 1349

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 S3 Files access point.



1360
1361
1362
# File 'bedrock_agent_core/cfn_runtime.rb', line 1360

def access_point_arn
  @access_point_arn
end

#mount_pathString (readonly)

Mount path for filesystem configuration.



1365
1366
1367
# File 'bedrock_agent_core/cfn_runtime.rb', line 1365

def mount_path
  @mount_path
end

Class Method Details

.jsii_propertiesObject



1367
1368
1369
1370
1371
1372
# File 'bedrock_agent_core/cfn_runtime.rb', line 1367

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

Instance Method Details

#to_jsiiObject



1374
1375
1376
1377
1378
1379
1380
1381
# File 'bedrock_agent_core/cfn_runtime.rb', line 1374

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