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

****************************
delete_verified_access_group
****************************



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

  

  Delete an Amazon Web Services Verified Access group.

  

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


  **Request Syntax**
  ::

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

    The ID of the Verified Access group.

    

  
  :type ClientToken: string
  :param ClientToken: 

    A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see `Ensuring idempotency <https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html>`__.

    This field is autopopulated if not provided.

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

    
    ::

      {
          'VerifiedAccessGroup': {
              'VerifiedAccessGroupId': 'string',
              'VerifiedAccessInstanceId': 'string',
              'Description': 'string',
              'Owner': 'string',
              'VerifiedAccessGroupArn': 'string',
              'CreationTime': 'string',
              'LastUpdatedTime': 'string',
              'DeletionTime': 'string',
              'Tags': [
                  {
                      'Key': 'string',
                      'Value': 'string'
                  },
              ],
              'SseSpecification': {
                  'CustomerManagedKeyEnabled': True|False,
                  'KmsKeyArn': 'string'
              }
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **VerifiedAccessGroup** *(dict) --* 

        Details about the Verified Access group.

        
        

        - **VerifiedAccessGroupId** *(string) --* 

          The ID of the Verified Access group.

          
        

        - **VerifiedAccessInstanceId** *(string) --* 

          The ID of the Amazon Web Services Verified Access instance.

          
        

        - **Description** *(string) --* 

          A description for the Amazon Web Services Verified Access group.

          
        

        - **Owner** *(string) --* 

          The Amazon Web Services account number that owns the group.

          
        

        - **VerifiedAccessGroupArn** *(string) --* 

          The ARN of the Verified Access group.

          
        

        - **CreationTime** *(string) --* 

          The creation time.

          
        

        - **LastUpdatedTime** *(string) --* 

          The last updated time.

          
        

        - **DeletionTime** *(string) --* 

          The deletion time.

          
        

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

          The tags.

          
          

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

              
        
      
        

        - **SseSpecification** *(dict) --* 

          The options in use for server side encryption.

          
          

          - **CustomerManagedKeyEnabled** *(boolean) --* 

            Indicates whether customer managed KMS keys are in use for server side encryption.

             

            Valid values: ``True`` | ``False``

            
          

          - **KmsKeyArn** *(string) --* 

            The ARN of the KMS key.

            
      
    
  