ElastiCache / Paginator / DescribeServiceUpdates
DescribeServiceUpdates#
- class ElastiCache.Paginator.DescribeServiceUpdates#
- paginator = client.get_paginator('describe_service_updates') - paginate(**kwargs)#
- Creates an iterator that will paginate through responses from - ElastiCache.Client.describe_service_updates().- See also: AWS API Documentation - Request Syntax- response_iterator = paginator.paginate( ServiceUpdateName='string', ServiceUpdateStatus=[ 'available'|'cancelled'|'expired', ], PaginationConfig={ 'MaxItems': 123, 'PageSize': 123, 'StartingToken': 'string' } ) - Parameters:
- ServiceUpdateName (string) – The unique ID of the service update 
- ServiceUpdateStatus (list) – - The status of the service update - (string) – 
 
- PaginationConfig (dict) – - 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 - NextTokenwill 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 - NextTokenfrom a previous response.
 
 
- Return type:
- dict 
- Returns:
- Response Syntax- { 'ServiceUpdates': [ { 'ServiceUpdateName': 'string', 'ServiceUpdateReleaseDate': datetime(2015, 1, 1), 'ServiceUpdateEndDate': datetime(2015, 1, 1), 'ServiceUpdateSeverity': 'critical'|'important'|'medium'|'low', 'ServiceUpdateRecommendedApplyByDate': datetime(2015, 1, 1), 'ServiceUpdateStatus': 'available'|'cancelled'|'expired', 'ServiceUpdateDescription': 'string', 'ServiceUpdateType': 'security-update', 'Engine': 'string', 'EngineVersion': 'string', 'AutoUpdateAfterRecommendedApplyByDate': True|False, 'EstimatedUpdateTime': 'string' }, ], 'NextToken': 'string' } - Response Structure- (dict) – - ServiceUpdates (list) – - A list of service updates - (dict) – - An update that you can apply to your Valkey or Redis OSS clusters. - ServiceUpdateName (string) – - The unique ID of the service update 
- ServiceUpdateReleaseDate (datetime) – - The date when the service update is initially available 
- ServiceUpdateEndDate (datetime) – - The date after which the service update is no longer available 
- ServiceUpdateSeverity (string) – - The severity of the service update 
- ServiceUpdateRecommendedApplyByDate (datetime) – - The recommendend date to apply the service update in order to ensure compliance. For information on compliance, see Self-Service Security Updates for Compliance. 
- ServiceUpdateStatus (string) – - The status of the service update 
- ServiceUpdateDescription (string) – - Provides details of the service update 
- ServiceUpdateType (string) – - Reflects the nature of the service update 
- Engine (string) – - The Elasticache engine to which the update applies. Either Valkey, Redis OSS or Memcached. 
- EngineVersion (string) – - The Elasticache engine version to which the update applies. Either Valkey, Redis OSS or Memcached engine version. 
- AutoUpdateAfterRecommendedApplyByDate (boolean) – - Indicates whether the service update will be automatically applied once the recommended apply-by date has expired. 
- EstimatedUpdateTime (string) – - The estimated length of time the service update will take 
 
 
- NextToken (string) – - A token to resume pagination.