:doc:`S3Control <../../s3control>` / Client / delete_multi_region_access_point

********************************
delete_multi_region_access_point
********************************



.. py:method:: S3Control.Client.delete_multi_region_access_point(**kwargs)

  

  .. note::

    

    This operation is not supported by directory buckets.

    

   

  Deletes a Multi-Region Access Point. This action does not delete the buckets associated with the Multi-Region Access Point, only the Multi-Region Access Point itself.

   

  This action will always be routed to the US West (Oregon) Region. For more information about the restrictions around working with Multi-Region Access Points, see `Multi-Region Access Point restrictions and limitations <https://docs.aws.amazon.com/AmazonS3/latest/userguide/MultiRegionAccessPointRestrictions.html>`__ in the *Amazon S3 User Guide*.

   

  This request is asynchronous, meaning that you might receive a response before the command has completed. When this request provides a response, it provides a token that you can use to monitor the status of the request with ``DescribeMultiRegionAccessPointOperation``.

   

  The following actions are related to ``DeleteMultiRegionAccessPoint``:

   

  
  * `CreateMultiRegionAccessPoint <https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_CreateMultiRegionAccessPoint.html>`__
   
  * `DescribeMultiRegionAccessPointOperation <https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html>`__
   
  * `GetMultiRegionAccessPoint <https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_GetMultiRegionAccessPoint.html>`__
   
  * `ListMultiRegionAccessPoints <https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_ListMultiRegionAccessPoints.html>`__
  

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/s3control-2018-08-20/DeleteMultiRegionAccessPoint>`_  


  **Request Syntax**
  ::

    response = client.delete_multi_region_access_point(
        AccountId='string',
        ClientToken='string',
        Details={
            'Name': 'string'
        }
    )
    
  :type AccountId: string
  :param AccountId: **[REQUIRED]** 

    The Amazon Web Services account ID for the owner of the Multi-Region Access Point.

    

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

    An idempotency token used to identify the request and guarantee that requests are unique.

    This field is autopopulated if not provided.

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

    A container element containing details about the Multi-Region Access Point.

    

  
    - **Name** *(string) --* **[REQUIRED]** 

      The name of the Multi-Region Access Point associated with this request.

      

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

    
    ::

      {
          'RequestTokenARN': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **RequestTokenARN** *(string) --* 

        The request token associated with the request. You can use this token with `DescribeMultiRegionAccessPointOperation <https://docs.aws.amazon.com/AmazonS3/latest/API/API_control_DescribeMultiRegionAccessPointOperation.html>`__ to determine the status of asynchronous requests.

        
  