Class: Aws::BedrockAgent::Types::S3DataSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::S3DataSourceConfiguration
- 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
-
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
-
#bucket_owner_account_id ⇒ String
The account ID for the owner of the S3 bucket.
-
#inclusion_prefixes ⇒ Array<String>
A list of S3 prefixes to include certain files or content.
Instance Attribute Details
#bucket_arn ⇒ String
The Amazon Resource Name (ARN) of the S3 bucket that contains your data.
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_id ⇒ String
The account ID for the owner of the S3 bucket.
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_prefixes ⇒ Array<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
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 |