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

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

Overview

Contains information about the S3 configuration of the data source.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#bucket_arnString

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

Returns:

  • (String)


3436
3437
3438
3439
3440
3441
3442
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3436

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)


3436
3437
3438
3439
3440
3441
3442
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3436

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 that define the object containing the data sources. For more information, see [Organizing objects using prefixes].

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

Returns:

  • (Array<String>)


3436
3437
3438
3439
3440
3441
3442
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3436

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