Class: Aws::Connect::Types::PhoneNumberStatus
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::Connect::Types::PhoneNumberStatus
 
 
- Defined in:
 - gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb
 
Overview
The status of the phone number.
CLAIMEDmeans the previous ClaimPhoneNumber or UpdatePhoneNumber operation succeeded.IN_PROGRESSmeans a ClaimPhoneNumber, UpdatePhoneNumber, or UpdatePhoneNumberMetadata operation is still in progress and has not yet completed. You can call DescribePhoneNumber at a later time to verify if the previous operation has completed.FAILEDindicates that the previous ClaimPhoneNumber or UpdatePhoneNumber operation has failed. It will include a message indicating the failure reason. A common reason for a failure may be that theTargetArnvalue you are claiming or updating a phone number to has reached its limit of total claimed numbers. If you received aFAILEDstatus from aClaimPhoneNumberAPI call, you have one day to retry claiming the phone number before the number is released back to the inventory for other customers to claim.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status message.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The status.
 
Instance Attribute Details
#message ⇒ String
The status message.
      18788 18789 18790 18791 18792 18793  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18788 class PhoneNumberStatus < Struct.new( :status, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
The status.
      18788 18789 18790 18791 18792 18793  | 
    
      # File 'gems/aws-sdk-connect/lib/aws-sdk-connect/types.rb', line 18788 class PhoneNumberStatus < Struct.new( :status, :message) SENSITIVE = [] include Aws::Structure end  |