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

***********************************************
delete_transit_gateway_route_table_announcement
***********************************************



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

  

  Advertises to the transit gateway that a transit gateway route table is deleted.

  

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


  **Request Syntax**
  ::

    response = client.delete_transit_gateway_route_table_announcement(
        TransitGatewayRouteTableAnnouncementId='string',
        DryRun=True|False
    )
    
  :type TransitGatewayRouteTableAnnouncementId: string
  :param TransitGatewayRouteTableAnnouncementId: **[REQUIRED]** 

    The transit gateway route table ID that's being deleted.

    

  
  :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**

    
    ::

      {
          'TransitGatewayRouteTableAnnouncement': {
              'TransitGatewayRouteTableAnnouncementId': 'string',
              'TransitGatewayId': 'string',
              'CoreNetworkId': 'string',
              'PeerTransitGatewayId': 'string',
              'PeerCoreNetworkId': 'string',
              'PeeringAttachmentId': 'string',
              'AnnouncementDirection': 'outgoing'|'incoming',
              'TransitGatewayRouteTableId': 'string',
              'State': 'available'|'pending'|'failing'|'failed'|'deleting'|'deleted',
              'CreationTime': datetime(2015, 1, 1),
              'Tags': [
                  {
                      'Key': 'string',
                      'Value': 'string'
                  },
              ]
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TransitGatewayRouteTableAnnouncement** *(dict) --* 

        Provides details about a deleted transit gateway route table.

        
        

        - **TransitGatewayRouteTableAnnouncementId** *(string) --* 

          The ID of the transit gateway route table announcement.

          
        

        - **TransitGatewayId** *(string) --* 

          The ID of the transit gateway.

          
        

        - **CoreNetworkId** *(string) --* 

          The ID of the core network for the transit gateway route table announcement.

          
        

        - **PeerTransitGatewayId** *(string) --* 

          The ID of the peer transit gateway.

          
        

        - **PeerCoreNetworkId** *(string) --* 

          The ID of the core network ID for the peer.

          
        

        - **PeeringAttachmentId** *(string) --* 

          The ID of the peering attachment.

          
        

        - **AnnouncementDirection** *(string) --* 

          The direction for the route table announcement.

          
        

        - **TransitGatewayRouteTableId** *(string) --* 

          The ID of the transit gateway route table.

          
        

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

          The state of the transit gateway announcement.

          
        

        - **CreationTime** *(datetime) --* 

          The timestamp when the transit gateway route table announcement was created.

          
        

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

          The key-value pairs associated with the route table announcement.

          
          

          - *(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.

              
        
      
    
  