Class: Aws::CodePipeline::Types::S3ArtifactLocation
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::CodePipeline::Types::S3ArtifactLocation
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-codepipeline/types.rb
 
Overview
The location of the S3 bucket that contains a revision.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #bucket_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the S3 bucket.
 - 
  
    
      #object_key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
 
Instance Attribute Details
#bucket_name ⇒ String
The name of the S3 bucket.
      4755 4756 4757 4758 4759 4760  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 4755 class S3ArtifactLocation < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end  | 
  
#object_key ⇒ String
The key of the object in the S3 bucket, which uniquely identifies the object in the bucket.
      4755 4756 4757 4758 4759 4760  | 
    
      # File 'lib/aws-sdk-codepipeline/types.rb', line 4755 class S3ArtifactLocation < Struct.new( :bucket_name, :object_key) SENSITIVE = [] include Aws::Structure end  |