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 bucket account owner ID for 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.
      3587 3588 3589 3590 3591 3592 3593  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 3587 class S3DataSourceConfiguration < Struct.new( :bucket_arn, :bucket_owner_account_id, :inclusion_prefixes) SENSITIVE = [] include Aws::Structure end  | 
  
#bucket_owner_account_id ⇒ String
The bucket account owner ID for the S3 bucket.
      3587 3588 3589 3590 3591 3592 3593  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 3587 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
      3587 3588 3589 3590 3591 3592 3593  | 
    
      # File 'lib/aws-sdk-bedrockagent/types.rb', line 3587 class S3DataSourceConfiguration < Struct.new( :bucket_arn, :bucket_owner_account_id, :inclusion_prefixes) SENSITIVE = [] include Aws::Structure end  |