Class: Aws::Drs::Types::UpdateRecoveryPlanExecutionStepRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Drs::Types::UpdateRecoveryPlanExecutionStepRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-drs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#recovery_plan_execution_step_arn ⇒ String
The ARN of the execution step to update.
-
#servers ⇒ Array<Types::RecoveryPlanServer>
Full replacement of the server list.
-
#status ⇒ String
Only SKIPPED is accepted.
-
#wait_duration_minutes ⇒ Integer
Updated wait duration.
Instance Attribute Details
#recovery_plan_execution_step_arn ⇒ String
The ARN of the execution step to update.
4987 4988 4989 4990 4991 4992 4993 4994 |
# File 'lib/aws-sdk-drs/types.rb', line 4987 class UpdateRecoveryPlanExecutionStepRequest < Struct.new( :recovery_plan_execution_step_arn, :status, :servers, :wait_duration_minutes) SENSITIVE = [] include Aws::Structure end |
#servers ⇒ Array<Types::RecoveryPlanServer>
Full replacement of the server list. Only allowed when the step is in NOT_STARTED status (Server type steps only).
4987 4988 4989 4990 4991 4992 4993 4994 |
# File 'lib/aws-sdk-drs/types.rb', line 4987 class UpdateRecoveryPlanExecutionStepRequest < Struct.new( :recovery_plan_execution_step_arn, :status, :servers, :wait_duration_minutes) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
Only SKIPPED is accepted. Step must be in NOT_STARTED or FAILED status.
4987 4988 4989 4990 4991 4992 4993 4994 |
# File 'lib/aws-sdk-drs/types.rb', line 4987 class UpdateRecoveryPlanExecutionStepRequest < Struct.new( :recovery_plan_execution_step_arn, :status, :servers, :wait_duration_minutes) SENSITIVE = [] include Aws::Structure end |
#wait_duration_minutes ⇒ Integer
Updated wait duration. Only allowed when the step is in NOT_STARTED status (Wait type steps only).
4987 4988 4989 4990 4991 4992 4993 4994 |
# File 'lib/aws-sdk-drs/types.rb', line 4987 class UpdateRecoveryPlanExecutionStepRequest < Struct.new( :recovery_plan_execution_step_arn, :status, :servers, :wait_duration_minutes) SENSITIVE = [] include Aws::Structure end |