Class: Aws::BedrockAgent::Types::S3DataSourceConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgent::Types::S3DataSourceConfiguration
- Defined in:
- gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb
Overview
The configuration information to connect to Amazon S3 as your data source.
Constant Summary collapse
- SENSITIVE =
[:inclusion_prefixes]
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.
7185 7186 7187 7188 7189 7190 7191 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 7185 class S3DataSourceConfiguration < Struct.new( :bucket_arn, :bucket_owner_account_id, :inclusion_prefixes) SENSITIVE = [:inclusion_prefixes] include Aws::Structure end |
#bucket_owner_account_id ⇒ String
The account ID for the owner of the S3 bucket.
7185 7186 7187 7188 7189 7190 7191 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 7185 class S3DataSourceConfiguration < Struct.new( :bucket_arn, :bucket_owner_account_id, :inclusion_prefixes) SENSITIVE = [:inclusion_prefixes] 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.
7185 7186 7187 7188 7189 7190 7191 |
# File 'gems/aws-sdk-bedrockagent/lib/aws-sdk-bedrockagent/types.rb', line 7185 class S3DataSourceConfiguration < Struct.new( :bucket_arn, :bucket_owner_account_id, :inclusion_prefixes) SENSITIVE = [:inclusion_prefixes] include Aws::Structure end |