Class: Aws::GuardDuty::Types::CreateS3BucketResource
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::GuardDuty::Types::CreateS3BucketResource
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-guardduty/types.rb
 
Overview
Information about the protected S3 bucket resource.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the S3 bucket.
 - 
  
    
      #object_prefixes  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Information about the specified object prefixes.
 
Instance Attribute Details
#bucket_name ⇒ String
Name of the S3 bucket.
      1757 1758 1759 1760 1761 1762  | 
    
      # File 'lib/aws-sdk-guardduty/types.rb', line 1757 class CreateS3BucketResource < Struct.new( :bucket_name, :object_prefixes) SENSITIVE = [] include Aws::Structure end  | 
  
#object_prefixes ⇒ Array<String>
Information about the specified object prefixes. The S3 object will be scanned only if it belongs to any of the specified object prefixes.
      1757 1758 1759 1760 1761 1762  | 
    
      # File 'lib/aws-sdk-guardduty/types.rb', line 1757 class CreateS3BucketResource < Struct.new( :bucket_name, :object_prefixes) SENSITIVE = [] include Aws::Structure end  |