Class: Aws::CodePipeline::Types::S3Location
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::CodePipeline::Types::S3Location
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codepipeline/types.rb
Overview
The Amazon S3 artifact location for an action’s artifacts.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #bucket  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon S3 artifact bucket for an action’s artifacts. 
- 
  
    
      #key  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The artifact name. 
Instance Attribute Details
#bucket ⇒ String
The Amazon S3 artifact bucket for an action’s artifacts.
| 4869 4870 4871 4872 4873 4874 | # File 'lib/aws-sdk-codepipeline/types.rb', line 4869 class S3Location < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end | 
#key ⇒ String
The artifact name.
| 4869 4870 4871 4872 4873 4874 | # File 'lib/aws-sdk-codepipeline/types.rb', line 4869 class S3Location < Struct.new( :bucket, :key) SENSITIVE = [] include Aws::Structure end |