Glue.Paginator.
GetSecurityConfigurations
¶paginator = client.get_paginator('get_security_configurations')
paginate
(**kwargs)¶Creates an iterator that will paginate through responses from Glue.Client.get_security_configurations()
.
See also: AWS API Documentation
Request Syntax
response_iterator = paginator.paginate(
PaginationConfig={
'MaxItems': 123,
'PageSize': 123,
'StartingToken': 'string'
}
)
A dictionary that provides parameters to control pagination.
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.
The size of each page.
A token to specify where to start paginating. This is the NextToken
from a previous response.
{
'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'
}
}
},
],
}
Response Structure
A list of security configurations.
Specifies a security configuration.
The name of the security configuration.
The time at which this security configuration was created.
The encryption configuration associated with this security configuration.
The encryption configuration for Amazon Simple Storage Service (Amazon S3) data.
Specifies how Amazon Simple Storage Service (Amazon S3) data should be encrypted.
The encryption mode to use for Amazon S3 data.
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
The encryption configuration for Amazon CloudWatch.
The encryption mode to use for CloudWatch data.
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.
The encryption configuration for job bookmarks.
The encryption mode to use for job bookmarks data.
The Amazon Resource Name (ARN) of the KMS key to be used to encrypt the data.