Class: Aws::S3::Types::CommonPrefix
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::S3::Types::CommonPrefix
 
- Defined in:
- gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb
Overview
Container for all (if there are any) keys between Prefix and the next occurrence of the string specified by a delimiter. CommonPrefixes lists keys that act like subdirectories in the directory specified by Prefix. For example, if the prefix is notes/ and the delimiter is a slash (/) as in notes/summer/july, the common prefix is notes/summer/.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Container for the specified common prefix. 
Instance Attribute Details
#prefix ⇒ String
Container for the specified common prefix.
| 827 828 829 830 831 | # File 'gems/aws-sdk-s3/lib/aws-sdk-s3/types.rb', line 827 class CommonPrefix < Struct.new( :prefix) SENSITIVE = [] include Aws::Structure end |