Class: Aws::Signer::Types::S3Source
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Signer::Types::S3Source
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-signer/types.rb
 
Overview
Information about the Amazon S3 bucket where you saved your unsigned code.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the S3 bucket.
 - 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Key name of the bucket object that contains your unsigned code.
 - 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Version of your source image in your version enabled S3 bucket.
 
Instance Attribute Details
#bucket_name ⇒ String
Name of the S3 bucket.
      1113 1114 1115 1116 1117 1118 1119  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 1113 class S3Source < Struct.new( :bucket_name, :key, :version) SENSITIVE = [] include Aws::Structure end  |