:doc:`Glue <../../glue>` / Paginator / GetSecurityConfigurations

*************************
GetSecurityConfigurations
*************************



.. py:class:: Glue.Paginator.GetSecurityConfigurations

  ::

    
    paginator = client.get_paginator('get_security_configurations')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`Glue.Client.get_security_configurations`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/glue-2017-03-31/GetSecurityConfigurations>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type PaginationConfig: dict
    :param PaginationConfig: 

      A dictionary that provides parameters to control pagination.

      

    
      - **MaxItems** *(integer) --* 

        The total number of items to return. If the total number of items available is more than the value specified in max-items then a ``NextToken`` will be provided in the output that you can use to resume pagination.

        

      
      - **PageSize** *(integer) --* 

        The size of each page.

        

      
      - **StartingToken** *(string) --* 

        A token to specify where to start paginating. This is the ``NextToken`` from a previous response.

        

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

      
      ::

        {
            'SecurityConfigurations': [
                {
                    'Name': 'string',
                    'CreatedTimeStamp': datetime(2015, 1, 1),
                    'EncryptionConfiguration': {
                        'S3Encryption': [
                            {
                                'S3EncryptionMode': 'DISABLED'|'SSE-KMS'|'SSE-S3',
                                'KmsKeyArn': 'string'
                            },
                        ],
                        'CloudWatchEncryption': {
                            'CloudWatchEncryptionMode': 'DISABLED'|'SSE-KMS',
                            'KmsKeyArn': 'string'
                        },
                        'JobBookmarksEncryption': {
                            'JobBookmarksEncryptionMode': 'DISABLED'|'CSE-KMS',
                            'KmsKeyArn': 'string'
                        },
                        'DataQualityEncryption': {
                            'DataQualityEncryptionMode': 'DISABLED'|'SSE-KMS',
                            'KmsKeyArn': 'string'
                        }
                    }
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **SecurityConfigurations** *(list) --* 

          A list of security configurations.

          
          

          - *(dict) --* 

            Specifies a security configuration.

            
            

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

              The name of the security configuration.

              
            

            - **CreatedTimeStamp** *(datetime) --* 

              The time at which this security configuration was created.

              
            

            - **EncryptionConfiguration** *(dict) --* 

              The encryption configuration associated with this security configuration.

              
              

              - **S3Encryption** *(list) --* 

                The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.

                
                

                - *(dict) --* 

                  Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.

                  
                  

                  - **S3EncryptionMode** *(string) --* 

                    The encryption mode to use for Amazon S3 data.

                    
                  

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

                    The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

                    
              
            
              

              - **CloudWatchEncryption** *(dict) --* 

                The encryption configuration for Amazon CloudWatch.

                
                

                - **CloudWatchEncryptionMode** *(string) --* 

                  The encryption mode to use for CloudWatch data.

                  
                

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

                  The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

                  
            
              

              - **JobBookmarksEncryption** *(dict) --* 

                The encryption configuration for job bookmarks.

                
                

                - **JobBookmarksEncryptionMode** *(string) --* 

                  The encryption mode to use for job bookmarks data.

                  
                

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

                  The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

                  
            
              

              - **DataQualityEncryption** *(dict) --* 

                The encryption configuration for Glue Data Quality assets.

                
                

                - **DataQualityEncryptionMode** *(string) --* 

                  The encryption mode to use for encrypting Data Quality assets. These assets include data quality rulesets, results, statistics, anomaly detection models and observations.

                   

                  Valid values are ``SSEKMS`` for encryption using a customer-managed KMS key, or ``DISABLED``.

                  
                

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

                  The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.

                  
            
          
        
      
    