:doc:`Synthetics <../../synthetics>` / Client / get_group

*********
get_group
*********



.. py:method:: Synthetics.Client.get_group(**kwargs)

  

  Returns information about one group. Groups are a global resource, so you can use this operation from any Region.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/synthetics-2017-10-11/GetGroup>`_  


  **Request Syntax**
  ::

    response = client.get_group(
        GroupIdentifier='string'
    )
    
  :type GroupIdentifier: string
  :param GroupIdentifier: **[REQUIRED]** 

    Specifies the group to return information for. You can specify the group name, the ARN, or the group ID as the ``GroupIdentifier``.

    

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

    
    ::

      {
          'Group': {
              'Id': 'string',
              'Name': 'string',
              'Arn': 'string',
              'Tags': {
                  'string': 'string'
              },
              'CreatedTime': datetime(2015, 1, 1),
              'LastModifiedTime': datetime(2015, 1, 1)
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **Group** *(dict) --* 

        A structure that contains information about the group.

        
        

        - **Id** *(string) --* 

          The unique ID of the group.

          
        

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

          The name of the group.

          
        

        - **Arn** *(string) --* 

          The ARN of the group.

          
        

        - **Tags** *(dict) --* 

          The list of key-value pairs that are associated with the canary.

          
          

          - *(string) --* 
            

            - *(string) --* 
      
    
        

        - **CreatedTime** *(datetime) --* 

          The date and time that the group was created.

          
        

        - **LastModifiedTime** *(datetime) --* 

          The date and time that the group was most recently updated.

          
    
  
  **Exceptions**
  
  *   :py:class:`Synthetics.Client.exceptions.InternalServerException`

  
  *   :py:class:`Synthetics.Client.exceptions.ValidationException`

  
  *   :py:class:`Synthetics.Client.exceptions.ResourceNotFoundException`

  
  *   :py:class:`Synthetics.Client.exceptions.ConflictException`

  