:doc:`ivsrealtime <../../ivs-realtime>` / Client / get_storage_configuration

*************************
get_storage_configuration
*************************



.. py:method:: ivsrealtime.Client.get_storage_configuration(**kwargs)

  

  Gets the storage configuration for the specified ARN.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ivs-realtime-2020-07-14/GetStorageConfiguration>`_  


  **Request Syntax**
  ::

    response = client.get_storage_configuration(
        arn='string'
    )
    
  :type arn: string
  :param arn: **[REQUIRED]** 

    ARN of the storage configuration to be retrieved.

    

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

    
    ::

      {
          'storageConfiguration': {
              'arn': 'string',
              'name': 'string',
              's3': {
                  'bucketName': 'string'
              },
              'tags': {
                  'string': 'string'
              }
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **storageConfiguration** *(dict) --* 

        The StorageConfiguration that was returned.

        
        

        - **arn** *(string) --* 

          ARN of the storage configuration.

          
        

        - **name** *(string) --* 

          Name of the storage configuration.

          
        

        - **s3** *(dict) --* 

          An S3 destination configuration where recorded videos will be stored.

          
          

          - **bucketName** *(string) --* 

            Location (S3 bucket name) where recorded videos will be stored. Note that the StorageConfiguration and S3 bucket must be in the same region as the Composition.

            
      
        

        - **tags** *(dict) --* 

          Tags attached to the resource. Array of maps, each of the form ``string:string (key:value)``. See `Best practices and strategies <https://docs.aws.amazon.com/tag-editor/latest/userguide/best-practices-and-strats.html>`__ in *Tagging AWS Resources and Tag Editor* for details, including restrictions that apply to tags and "Tag naming limits and requirements"; Amazon IVS has no constraints on tags beyond what is documented there.

          
          

          - *(string) --* 
            

            - *(string) --* 
      
    
    
  
  **Exceptions**
  
  *   :py:class:`ivsrealtime.Client.exceptions.ResourceNotFoundException`

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

  
  *   :py:class:`ivsrealtime.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`ivsrealtime.Client.exceptions.InternalServerException`

  
  *   :py:class:`ivsrealtime.Client.exceptions.ServiceQuotaExceededException`

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

  