Class: Aws::RoboMaker::Types::DeploymentConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RoboMaker::Types::DeploymentConfig
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-robomaker/types.rb
 
Overview
Information about a deployment configuration.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #concurrent_deployment_percentage  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The percentage of robots receiving the deployment at the same time.
 - 
  
    
      #download_condition_file  ⇒ Types::S3Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The download condition file.
 - 
  
    
      #failure_threshold_percentage  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The percentage of deployments that need to fail before stopping deployment.
 - 
  
    
      #robot_deployment_timeout_in_seconds  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The amount of time, in seconds, to wait for deployment to a single robot to complete.
 
Instance Attribute Details
#concurrent_deployment_percentage ⇒ Integer
The percentage of robots receiving the deployment at the same time.
      1749 1750 1751 1752 1753 1754 1755 1756  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 1749 class DeploymentConfig < Struct.new( :concurrent_deployment_percentage, :failure_threshold_percentage, :robot_deployment_timeout_in_seconds, :download_condition_file) SENSITIVE = [] include Aws::Structure end  | 
  
#download_condition_file ⇒ Types::S3Object
The download condition file.
      1749 1750 1751 1752 1753 1754 1755 1756  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 1749 class DeploymentConfig < Struct.new( :concurrent_deployment_percentage, :failure_threshold_percentage, :robot_deployment_timeout_in_seconds, :download_condition_file) SENSITIVE = [] include Aws::Structure end  | 
  
#failure_threshold_percentage ⇒ Integer
The percentage of deployments that need to fail before stopping deployment.
      1749 1750 1751 1752 1753 1754 1755 1756  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 1749 class DeploymentConfig < Struct.new( :concurrent_deployment_percentage, :failure_threshold_percentage, :robot_deployment_timeout_in_seconds, :download_condition_file) SENSITIVE = [] include Aws::Structure end  | 
  
#robot_deployment_timeout_in_seconds ⇒ Integer
The amount of time, in seconds, to wait for deployment to a single robot to complete. Choose a time between 1 minute and 7 days. The default is 5 hours.
      1749 1750 1751 1752 1753 1754 1755 1756  | 
    
      # File 'lib/aws-sdk-robomaker/types.rb', line 1749 class DeploymentConfig < Struct.new( :concurrent_deployment_percentage, :failure_threshold_percentage, :robot_deployment_timeout_in_seconds, :download_condition_file) SENSITIVE = [] include Aws::Structure end  |