Class: Aws::BedrockAgent::Types::S3DataSourceConfiguration

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

Overview

The configuration information to connect to Amazon S3 as your data source.

Constant Summary collapse

SENSITIVE =
[:inclusion_prefixes]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_arnString

The Amazon Resource Name (ARN) of the S3 bucket that contains your data.

Returns:

  • (String)


6423
6424
6425
6426
6427
6428
6429
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6423

class S3DataSourceConfiguration < Struct.new(
  :bucket_arn,
  :bucket_owner_account_id,
  :inclusion_prefixes)
  SENSITIVE = [:inclusion_prefixes]
  include Aws::Structure
end

#bucket_owner_account_idString

The account ID for the owner of the S3 bucket.

Returns:

  • (String)


6423
6424
6425
6426
6427
6428
6429
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6423

class S3DataSourceConfiguration < Struct.new(
  :bucket_arn,
  :bucket_owner_account_id,
  :inclusion_prefixes)
  SENSITIVE = [:inclusion_prefixes]
  include Aws::Structure
end

#inclusion_prefixesArray<String>

A list of S3 prefixes to include certain files or content. For more information, see Organizing objects using prefixes.

Returns:

  • (Array<String>)


6423
6424
6425
6426
6427
6428
6429
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 6423

class S3DataSourceConfiguration < Struct.new(
  :bucket_arn,
  :bucket_owner_account_id,
  :inclusion_prefixes)
  SENSITIVE = [:inclusion_prefixes]
  include Aws::Structure
end