:doc:`SageMaker <../../sagemaker>` / Client / describe_model_package_group

****************************
describe_model_package_group
****************************



.. py:method:: SageMaker.Client.describe_model_package_group(**kwargs)

  

  Gets a description for the specified model group.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/sagemaker-2017-07-24/DescribeModelPackageGroup>`_  


  **Request Syntax**
  ::

    response = client.describe_model_package_group(
        ModelPackageGroupName='string'
    )
    
  :type ModelPackageGroupName: string
  :param ModelPackageGroupName: **[REQUIRED]** 

    The name of the model group to describe.

    

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

    
    ::

      {
          'ModelPackageGroupName': 'string',
          'ModelPackageGroupArn': 'string',
          'ModelPackageGroupDescription': 'string',
          'CreationTime': datetime(2015, 1, 1),
          'CreatedBy': {
              'UserProfileArn': 'string',
              'UserProfileName': 'string',
              'DomainId': 'string',
              'IamIdentity': {
                  'Arn': 'string',
                  'PrincipalId': 'string',
                  'SourceIdentity': 'string'
              }
          },
          'ModelPackageGroupStatus': 'Pending'|'InProgress'|'Completed'|'Failed'|'Deleting'|'DeleteFailed'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **ModelPackageGroupName** *(string) --* 

        The name of the model group.

        
      

      - **ModelPackageGroupArn** *(string) --* 

        The Amazon Resource Name (ARN) of the model group.

        
      

      - **ModelPackageGroupDescription** *(string) --* 

        A description of the model group.

        
      

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

        The time that the model group was created.

        
      

      - **CreatedBy** *(dict) --* 

        Information about the user who created or modified a SageMaker resource.

        
        

        - **UserProfileArn** *(string) --* 

          The Amazon Resource Name (ARN) of the user's profile.

          
        

        - **UserProfileName** *(string) --* 

          The name of the user's profile.

          
        

        - **DomainId** *(string) --* 

          The domain associated with the user.

          
        

        - **IamIdentity** *(dict) --* 

          The IAM Identity details associated with the user. These details are associated with model package groups, model packages, and project entities only.

          
          

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

            The Amazon Resource Name (ARN) of the IAM identity.

            
          

          - **PrincipalId** *(string) --* 

            The ID of the principal that assumes the IAM identity.

            
          

          - **SourceIdentity** *(string) --* 

            The person or application which assumes the IAM identity.

            
      
    
      

      - **ModelPackageGroupStatus** *(string) --* 

        The status of the model group.

        
  