Class: Aws::GameLift::Types::UpdateBuildInput
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::GameLift::Types::UpdateBuildInput
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-gamelift/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #build_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A unique identifier for the build to update. 
- 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A descriptive label associated with a build. 
- 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Version information associated with a build or script. 
Instance Attribute Details
#build_id ⇒ String
A unique identifier for the build to update. You can use either the build ID or ARN value.
| 10206 10207 10208 10209 10210 10211 10212 | # File 'lib/aws-sdk-gamelift/types.rb', line 10206 class UpdateBuildInput < Struct.new( :build_id, :name, :version) SENSITIVE = [] include Aws::Structure end | 
#name ⇒ String
A descriptive label associated with a build. Build names don’t need to be unique.
| 10206 10207 10208 10209 10210 10211 10212 | # File 'lib/aws-sdk-gamelift/types.rb', line 10206 class UpdateBuildInput < Struct.new( :build_id, :name, :version) SENSITIVE = [] include Aws::Structure end | 
#version ⇒ String
Version information associated with a build or script. Version strings don’t need to be unique.
| 10206 10207 10208 10209 10210 10211 10212 | # File 'lib/aws-sdk-gamelift/types.rb', line 10206 class UpdateBuildInput < Struct.new( :build_id, :name, :version) SENSITIVE = [] include Aws::Structure end |