ECR / Client / list_pull_time_update_exclusions

list_pull_time_update_exclusions

ECR.Client.list_pull_time_update_exclusions(**kwargs)

Lists the IAM principals that are excluded from having their image pull times recorded.

See also: AWS API Documentation

Request Syntax

response = client.list_pull_time_update_exclusions(
    maxResults=123,
    nextToken='string'
)
Parameters:
  • maxResults (integer) – The maximum number of pull time update exclusion results returned by ListPullTimeUpdateExclusions in paginated output. When this parameter is used, ListPullTimeUpdateExclusions only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another ListPullTimeUpdateExclusions request with the returned nextToken value. This value can be between 1 and 1000. If this parameter is not used, then ListPullTimeUpdateExclusions returns up to 100 results and a nextToken value, if applicable.

  • nextToken (string) –

    The nextToken value returned from a previous paginated ListPullTimeUpdateExclusions request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

    Note

    This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

Return type:

dict

Returns:

Response Syntax

{
    'pullTimeUpdateExclusions': [
        'string',
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • pullTimeUpdateExclusions (list) –

      The list of IAM principal ARNs that are excluded from having their image pull times recorded.

      • (string) –

    • nextToken (string) –

      The nextToken value to include in a future ListPullTimeUpdateExclusions request. When the results of a ListPullTimeUpdateExclusions request exceed maxResults, this value can be used to retrieve the next page of results. This value is null when there are no more results to return.

Exceptions

  • ECR.Client.exceptions.InvalidParameterException

  • ECR.Client.exceptions.ValidationException

  • ECR.Client.exceptions.LimitExceededException

  • ECR.Client.exceptions.ServerException