Class: Aws::Signer::Types::S3SignedObject
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Signer::Types::S3SignedObject
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-signer/types.rb
 
Overview
The Amazon S3 bucket name and key where Signer saved your signed code image.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Name of the S3 bucket.
 - 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Key name that uniquely identifies a signed code image in your bucket.
 
Instance Attribute Details
#bucket_name ⇒ String
Name of the S3 bucket.
      1089 1090 1091 1092 1093 1094  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 1089 class S3SignedObject < Struct.new( :bucket_name, :key) SENSITIVE = [] include Aws::Structure end  | 
  
#key ⇒ String
Key name that uniquely identifies a signed code image in your bucket.
      1089 1090 1091 1092 1093 1094  | 
    
      # File 'lib/aws-sdk-signer/types.rb', line 1089 class S3SignedObject < Struct.new( :bucket_name, :key) SENSITIVE = [] include Aws::Structure end  |