:doc:`WorkSpaces <../../workspaces>` / Client / deploy_workspace_applications

*****************************
deploy_workspace_applications
*****************************



.. py:method:: WorkSpaces.Client.deploy_workspace_applications(**kwargs)

  

  Deploys associated applications to the specified WorkSpace

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/workspaces-2015-04-08/DeployWorkspaceApplications>`_  


  **Request Syntax**
  ::

    response = client.deploy_workspace_applications(
        WorkspaceId='string',
        Force=True|False
    )
    
  :type WorkspaceId: string
  :param WorkspaceId: **[REQUIRED]** 

    The identifier of the WorkSpace.

    

  
  :type Force: boolean
  :param Force: 

    Indicates whether the force flag is applied for the specified WorkSpace. When the force flag is enabled, it allows previously failed deployments to be retried.

    

  
  
  :rtype: dict
  :returns: 
    
    **Response Syntax**

    
    ::

      {
          'Deployment': {
              'Associations': [
                  {
                      'AssociatedResourceId': 'string',
                      'AssociatedResourceType': 'APPLICATION',
                      'Created': datetime(2015, 1, 1),
                      'LastUpdatedTime': datetime(2015, 1, 1),
                      'State': 'PENDING_INSTALL'|'PENDING_INSTALL_DEPLOYMENT'|'PENDING_UNINSTALL'|'PENDING_UNINSTALL_DEPLOYMENT'|'INSTALLING'|'UNINSTALLING'|'ERROR'|'COMPLETED'|'REMOVED',
                      'StateReason': {
                          'ErrorCode': 'ValidationError.InsufficientDiskSpace'|'ValidationError.InsufficientMemory'|'ValidationError.UnsupportedOperatingSystem'|'DeploymentError.InternalServerError'|'DeploymentError.WorkspaceUnreachable'|'ValidationError.ApplicationOldVersionExists',
                          'ErrorMessage': 'string'
                      },
                      'WorkspaceId': 'string'
                  },
              ]
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Deployment** *(dict) --* 

        The list of deployed associations and information about them.

        
        

        - **Associations** *(list) --* 

          The associations between the applications and the associated resources.

          
          

          - *(dict) --* 

            Describes the association between an application and a WorkSpace resource.

            
            

            - **AssociatedResourceId** *(string) --* 

              The identifier of the associated resource.

              
            

            - **AssociatedResourceType** *(string) --* 

              The resource types of the associated resource.

              
            

            - **Created** *(datetime) --* 

              The time the association is created.

              
            

            - **LastUpdatedTime** *(datetime) --* 

              The time the association status was last updated.

              
            

            - **State** *(string) --* 

              The status of the WorkSpace resource association.

              
            

            - **StateReason** *(dict) --* 

              The reason the association deployment failed.

              
              

              - **ErrorCode** *(string) --* 

                The error code of the association deployment failure.

                
              

              - **ErrorMessage** *(string) --* 

                The error message of the association deployment failure.

                
          
            

            - **WorkspaceId** *(string) --* 

              The identifier of the WorkSpace.

              
        
      
    
  
  **Exceptions**
  
  *   :py:class:`WorkSpaces.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`WorkSpaces.Client.exceptions.InvalidParameterValuesException`

  
  *   :py:class:`WorkSpaces.Client.exceptions.OperationNotSupportedException`

  
  *   :py:class:`WorkSpaces.Client.exceptions.ResourceInUseException`

  
  *   :py:class:`WorkSpaces.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`WorkSpaces.Client.exceptions.IncompatibleApplicationsException`

  