Class: Aws::BedrockAgent::Types::CustomS3Location

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb

Overview

Contains information about the Amazon S3 location of the file containing the content to ingest into a knowledge base connected to a custom data source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_owner_account_idString

The identifier of the Amazon Web Services account that owns the S3 bucket containing the content to ingest.

Returns:

  • (String)


2750
2751
2752
2753
2754
2755
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2750

class CustomS3Location < Struct.new(
  :bucket_owner_account_id,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end

#uriString

The S3 URI of the file containing the content to ingest.

Returns:

  • (String)


2750
2751
2752
2753
2754
2755
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 2750

class CustomS3Location < Struct.new(
  :bucket_owner_account_id,
  :uri)
  SENSITIVE = []
  include Aws::Structure
end