:doc:`RedshiftServerless <../../redshift-serverless>` / Client / list_snapshot_copy_configurations

*********************************
list_snapshot_copy_configurations
*********************************



.. py:method:: RedshiftServerless.Client.list_snapshot_copy_configurations(**kwargs)

  

  Returns a list of snapshot copy configurations.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/redshift-serverless-2021-04-21/ListSnapshotCopyConfigurations>`_  


  **Request Syntax**
  ::

    response = client.list_snapshot_copy_configurations(
        maxResults=123,
        namespaceName='string',
        nextToken='string'
    )
    
  :type maxResults: integer
  :param maxResults: 

    An optional parameter that specifies the maximum number of results to return. You can use ``nextToken`` to display the next page of results.

    

  
  :type namespaceName: string
  :param namespaceName: 

    The namespace from which to list all snapshot copy configurations.

    

  
  :type nextToken: string
  :param nextToken: 

    If ``nextToken`` is returned, there are more results available. The value of ``nextToken`` is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.

    

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

    
    ::

      {
          'nextToken': 'string',
          'snapshotCopyConfigurations': [
              {
                  'destinationKmsKeyId': 'string',
                  'destinationRegion': 'string',
                  'namespaceName': 'string',
                  'snapshotCopyConfigurationArn': 'string',
                  'snapshotCopyConfigurationId': 'string',
                  'snapshotRetentionPeriod': 123
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **nextToken** *(string) --* 

        If ``nextToken`` is returned, there are more results available. The value of ``nextToken`` is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page.

        
      

      - **snapshotCopyConfigurations** *(list) --* 

        All of the returned snapshot copy configurations.

        
        

        - *(dict) --* 

          The object that you configure to copy snapshots from one namespace to a namespace in another Amazon Web Services Region.

          
          

          - **destinationKmsKeyId** *(string) --* 

            The ID of the KMS key to use to encrypt your snapshots in the destination Amazon Web Services Region.

            
          

          - **destinationRegion** *(string) --* 

            The destination Amazon Web Services Region to copy snapshots to.

            
          

          - **namespaceName** *(string) --* 

            The name of the namespace to copy snapshots from in the source Amazon Web Services Region.

            
          

          - **snapshotCopyConfigurationArn** *(string) --* 

            The ARN of the snapshot copy configuration object.

            
          

          - **snapshotCopyConfigurationId** *(string) --* 

            The ID of the snapshot copy configuration object.

            
          

          - **snapshotRetentionPeriod** *(integer) --* 

            The retention period of snapshots that are copied to the destination Amazon Web Services Region.

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

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

  
  *   :py:class:`RedshiftServerless.Client.exceptions.InvalidPaginationException`

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

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

  