Class: Aws::RoboMaker::Types::DeploymentConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::RoboMaker::Types::DeploymentConfig
- Defined in:
- gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb
Overview
Note:
When making an API call, you may pass DeploymentConfig data as a hash:
{
concurrent_deployment_percentage: 1,
failure_threshold_percentage: 1,
robot_deployment_timeout_in_seconds: 1,
download_condition_file: {
bucket: "S3Bucket", # required
key: "S3Key", # required
etag: "S3Etag",
},
}
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.
2206 2207 2208 2209 2210 2211 2212 2213 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2206 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.
2206 2207 2208 2209 2210 2211 2212 2213 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2206 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.
2206 2207 2208 2209 2210 2211 2212 2213 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2206 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.
2206 2207 2208 2209 2210 2211 2212 2213 |
# File 'gems/aws-sdk-robomaker/lib/aws-sdk-robomaker/types.rb', line 2206 class DeploymentConfig < Struct.new( :concurrent_deployment_percentage, :failure_threshold_percentage, :robot_deployment_timeout_in_seconds, :download_condition_file) SENSITIVE = [] include Aws::Structure end |