:doc:`EC2 <../../ec2>` / Client / enable_serial_console_access

****************************
enable_serial_console_access
****************************



.. py:method:: EC2.Client.enable_serial_console_access(**kwargs)

  

  Enables access to the EC2 serial console of all instances for your account. By default, access to the EC2 serial console is disabled for your account. For more information, see `Manage account access to the EC2 serial console <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/configure-access-to-serial-console.html#serial-console-account-access>`__ in the *Amazon EC2 User Guide*.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/EnableSerialConsoleAccess>`_  


  **Request Syntax**
  ::

    response = client.enable_serial_console_access(
        DryRun=True|False
    )
    
  :type DryRun: boolean
  :param DryRun: 

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ``DryRunOperation``. Otherwise, it is ``UnauthorizedOperation``.

    

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

    
    ::

      {
          'SerialConsoleAccessEnabled': True|False
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **SerialConsoleAccessEnabled** *(boolean) --* 

        If ``true``, access to the EC2 serial console of all instances is enabled for your account. If ``false``, access to the EC2 serial console of all instances is disabled for your account.

        
  