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 =
 [: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.
      6492 6493 6494 6495 6496 6497 6498  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6492 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.
      6492 6493 6494 6495 6496 6497 6498  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6492 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].
[1]: docs.aws.amazon.com/AmazonS3/latest/userguide/using-prefixes.html
      6492 6493 6494 6495 6496 6497 6498  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 6492 class S3DataSourceConfiguration < Struct.new( :bucket_arn, :bucket_owner_account_id, :inclusion_prefixes) SENSITIVE = [:inclusion_prefixes] include Aws::Structure end  |