Class: Aws::ECS::Types::GetTaskProtectionResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::ECS::Types::GetTaskProtectionResponse
 
- Defined in:
- gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #failures  ⇒ Array<Types::Failure> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Any failures associated with the call. 
- 
  
    
      #protected_tasks  ⇒ Array<Types::ProtectedTask> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A list of tasks with the following information. 
Instance Attribute Details
#failures ⇒ Array<Types::Failure>
Any failures associated with the call.
| 5813 5814 5815 5816 5817 5818 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5813 class GetTaskProtectionResponse < Struct.new( :protected_tasks, :failures) SENSITIVE = [] include Aws::Structure end | 
#protected_tasks ⇒ Array<Types::ProtectedTask>
A list of tasks with the following information.
- taskArn: The task ARN.
- protectionEnabled: The protection status of the task. If scale-in protection is turned on for a task, the value is- true. Otherwise, it is- false.
- expirationDate: The epoch time when protection for the task will expire.
| 5813 5814 5815 5816 5817 5818 | # File 'gems/aws-sdk-ecs/lib/aws-sdk-ecs/types.rb', line 5813 class GetTaskProtectionResponse < Struct.new( :protected_tasks, :failures) SENSITIVE = [] include Aws::Structure end |