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

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

Overview

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

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_arnString

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

Returns:

  • (String)


6410
6411
6412
6413
6414
6415
6416
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6410

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

#bucket_owner_account_idString

The account ID for the owner of the S3 bucket.

Returns:

  • (String)


6410
6411
6412
6413
6414
6415
6416
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6410

class S3DataSourceConfiguration < Struct.new(
  :bucket_arn,
  :bucket_owner_account_id,
  :inclusion_prefixes)
  SENSITIVE = []
  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].

[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html

Returns:

  • (Array<String>)


6410
6411
6412
6413
6414
6415
6416
# File 'lib/aws-sdk-bedrockagent/types.rb', line 6410

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