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

**********************************
disassociate_instance_event_window
**********************************



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

  

  Disassociates one or more targets from an event window.

   

  For more information, see `Define event windows for scheduled events <https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/event-windows.html>`__ in the *Amazon EC2 User Guide*.

  

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


  **Request Syntax**
  ::

    response = client.disassociate_instance_event_window(
        DryRun=True|False,
        InstanceEventWindowId='string',
        AssociationTarget={
            'InstanceIds': [
                'string',
            ],
            'InstanceTags': [
                {
                    'Key': 'string',
                    'Value': 'string'
                },
            ],
            'DedicatedHostIds': [
                'string',
            ]
        }
    )
    
  :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``.

    

  
  :type InstanceEventWindowId: string
  :param InstanceEventWindowId: **[REQUIRED]** 

    The ID of the event window.

    

  
  :type AssociationTarget: dict
  :param AssociationTarget: **[REQUIRED]** 

    One or more targets to disassociate from the specified event window.

    

  
    - **InstanceIds** *(list) --* 

      The IDs of the instances to disassociate from the event window.

      

    
      - *(string) --* 

      
  
    - **InstanceTags** *(list) --* 

      The instance tags to disassociate from the event window. Any instances associated with the tags will be disassociated from the event window.

      

    
      - *(dict) --* 

        Describes a tag.

        

      
        - **Key** *(string) --* 

          The key of the tag.

           

          Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.

          

        
        - **Value** *(string) --* 

          The value of the tag.

           

          Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.

          

        
      
  
    - **DedicatedHostIds** *(list) --* 

      The IDs of the Dedicated Hosts to disassociate from the event window.

      

    
      - *(string) --* 

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

    
    ::

      {
          'InstanceEventWindow': {
              'InstanceEventWindowId': 'string',
              'TimeRanges': [
                  {
                      'StartWeekDay': 'sunday'|'monday'|'tuesday'|'wednesday'|'thursday'|'friday'|'saturday',
                      'StartHour': 123,
                      'EndWeekDay': 'sunday'|'monday'|'tuesday'|'wednesday'|'thursday'|'friday'|'saturday',
                      'EndHour': 123
                  },
              ],
              'Name': 'string',
              'CronExpression': 'string',
              'AssociationTarget': {
                  'InstanceIds': [
                      'string',
                  ],
                  'Tags': [
                      {
                          'Key': 'string',
                          'Value': 'string'
                      },
                  ],
                  'DedicatedHostIds': [
                      'string',
                  ]
              },
              'State': 'creating'|'deleting'|'active'|'deleted',
              'Tags': [
                  {
                      'Key': 'string',
                      'Value': 'string'
                  },
              ]
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **InstanceEventWindow** *(dict) --* 

        Information about the event window.

        
        

        - **InstanceEventWindowId** *(string) --* 

          The ID of the event window.

          
        

        - **TimeRanges** *(list) --* 

          One or more time ranges defined for the event window.

          
          

          - *(dict) --* 

            The start day and time and the end day and time of the time range, in UTC.

            
            

            - **StartWeekDay** *(string) --* 

              The day on which the time range begins.

              
            

            - **StartHour** *(integer) --* 

              The hour when the time range begins.

              
            

            - **EndWeekDay** *(string) --* 

              The day on which the time range ends.

              
            

            - **EndHour** *(integer) --* 

              The hour when the time range ends.

              
        
      
        

        - **Name** *(string) --* 

          The name of the event window.

          
        

        - **CronExpression** *(string) --* 

          The cron expression defined for the event window.

          
        

        - **AssociationTarget** *(dict) --* 

          One or more targets associated with the event window.

          
          

          - **InstanceIds** *(list) --* 

            The IDs of the instances associated with the event window.

            
            

            - *(string) --* 
        
          

          - **Tags** *(list) --* 

            The instance tags associated with the event window. Any instances associated with the tags will be associated with the event window.

             

            Note that while you can't create tag keys beginning with ``aws:``, you can specify existing Amazon Web Services managed tag keys (with the ``aws:`` prefix) when specifying them as targets to associate with the event window.

            
            

            - *(dict) --* 

              Describes a tag.

              
              

              - **Key** *(string) --* 

                The key of the tag.

                 

                Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.

                
              

              - **Value** *(string) --* 

                The value of the tag.

                 

                Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.

                
          
        
          

          - **DedicatedHostIds** *(list) --* 

            The IDs of the Dedicated Hosts associated with the event window.

            
            

            - *(string) --* 
        
      
        

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

          The current state of the event window.

          
        

        - **Tags** *(list) --* 

          The instance tags associated with the event window.

          
          

          - *(dict) --* 

            Describes a tag.

            
            

            - **Key** *(string) --* 

              The key of the tag.

               

              Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.

              
            

            - **Value** *(string) --* 

              The value of the tag.

               

              Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.

              
        
      
    
  