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)


3260
3261
3262
3263
3264
3265
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3260

class S3DataSourceConfiguration < Struct.new(
  :bucket_arn,
  :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>)


3260
3261
3262
3263
3264
3265
# File 'lib/aws-sdk-bedrockagent/types.rb', line 3260

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