Class: Aws::Signer::Types::S3Destination
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Signer::Types::S3Destination
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-signer/types.rb
 
Overview
The name and prefix of the Amazon S3 bucket where AWS Signer saves your signed objects.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the S3 bucket.
 - 
  
    
      #prefix  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An S3 prefix that you can use to limit responses to those that begin with the specified prefix.
 
Instance Attribute Details
#bucket_name ⇒ String
Name of the S3 bucket.
      1068 1069 1070 1071 1072 1073  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 1068 class S3Destination < Struct.new( :bucket_name, :prefix) SENSITIVE = [] include Aws::Structure end  | 
  
#prefix ⇒ String
An S3 prefix that you can use to limit responses to those that begin with the specified prefix.
      1068 1069 1070 1071 1072 1073  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 1068 class S3Destination < Struct.new( :bucket_name, :prefix) SENSITIVE = [] include Aws::Structure end  |