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