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

*************************************
modify_vpc_peering_connection_options
*************************************



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

  

  Modifies the VPC peering connection options on one side of a VPC peering connection.

   

  If the peered VPCs are in the same Amazon Web Services account, you can enable DNS resolution for queries from the local VPC. This ensures that queries from the local VPC resolve to private IP addresses in the peer VPC. This option is not available if the peered VPCs are in different Amazon Web Services accounts or different Regions. For peered VPCs in different Amazon Web Services accounts, each Amazon Web Services account owner must initiate a separate request to modify the peering connection options. For inter-region peering connections, you must use the Region for the requester VPC to modify the requester VPC peering options and the Region for the accepter VPC to modify the accepter VPC peering options. To verify which VPCs are the accepter and the requester for a VPC peering connection, use the  DescribeVpcPeeringConnections command.

  

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


  **Request Syntax**
  ::

    response = client.modify_vpc_peering_connection_options(
        AccepterPeeringConnectionOptions={
            'AllowDnsResolutionFromRemoteVpc': True|False,
            'AllowEgressFromLocalClassicLinkToRemoteVpc': True|False,
            'AllowEgressFromLocalVpcToRemoteClassicLink': True|False
        },
        DryRun=True|False,
        RequesterPeeringConnectionOptions={
            'AllowDnsResolutionFromRemoteVpc': True|False,
            'AllowEgressFromLocalClassicLinkToRemoteVpc': True|False,
            'AllowEgressFromLocalVpcToRemoteClassicLink': True|False
        },
        VpcPeeringConnectionId='string'
    )
    
  :type AccepterPeeringConnectionOptions: dict
  :param AccepterPeeringConnectionOptions: 

    The VPC peering connection options for the accepter VPC.

    

  
    - **AllowDnsResolutionFromRemoteVpc** *(boolean) --* 

      If true, enables a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.

      

    
    - **AllowEgressFromLocalClassicLinkToRemoteVpc** *(boolean) --* 

      Deprecated.

      

    
    - **AllowEgressFromLocalVpcToRemoteClassicLink** *(boolean) --* 

      Deprecated.

      

    
  
  :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 RequesterPeeringConnectionOptions: dict
  :param RequesterPeeringConnectionOptions: 

    The VPC peering connection options for the requester VPC.

    

  
    - **AllowDnsResolutionFromRemoteVpc** *(boolean) --* 

      If true, enables a local VPC to resolve public DNS hostnames to private IP addresses when queried from instances in the peer VPC.

      

    
    - **AllowEgressFromLocalClassicLinkToRemoteVpc** *(boolean) --* 

      Deprecated.

      

    
    - **AllowEgressFromLocalVpcToRemoteClassicLink** *(boolean) --* 

      Deprecated.

      

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

    The ID of the VPC peering connection.

    

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

    
    ::

      {
          'AccepterPeeringConnectionOptions': {
              'AllowDnsResolutionFromRemoteVpc': True|False,
              'AllowEgressFromLocalClassicLinkToRemoteVpc': True|False,
              'AllowEgressFromLocalVpcToRemoteClassicLink': True|False
          },
          'RequesterPeeringConnectionOptions': {
              'AllowDnsResolutionFromRemoteVpc': True|False,
              'AllowEgressFromLocalClassicLinkToRemoteVpc': True|False,
              'AllowEgressFromLocalVpcToRemoteClassicLink': True|False
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **AccepterPeeringConnectionOptions** *(dict) --* 

        Information about the VPC peering connection options for the accepter VPC.

        
        

        - **AllowDnsResolutionFromRemoteVpc** *(boolean) --* 

          If true, the public DNS hostnames of instances in the specified VPC resolve to private IP addresses when queried from instances in the peer VPC.

          
        

        - **AllowEgressFromLocalClassicLinkToRemoteVpc** *(boolean) --* 

          Deprecated.

          
        

        - **AllowEgressFromLocalVpcToRemoteClassicLink** *(boolean) --* 

          Deprecated.

          
    
      

      - **RequesterPeeringConnectionOptions** *(dict) --* 

        Information about the VPC peering connection options for the requester VPC.

        
        

        - **AllowDnsResolutionFromRemoteVpc** *(boolean) --* 

          If true, the public DNS hostnames of instances in the specified VPC resolve to private IP addresses when queried from instances in the peer VPC.

          
        

        - **AllowEgressFromLocalClassicLinkToRemoteVpc** *(boolean) --* 

          Deprecated.

          
        

        - **AllowEgressFromLocalVpcToRemoteClassicLink** *(boolean) --* 

          Deprecated.

          
    
  