ListAccessPointsForObjectLambda

class S3Control.Paginator.ListAccessPointsForObjectLambda
paginator = client.get_paginator('list_access_points_for_object_lambda')
paginate(**kwargs)

Creates an iterator that will paginate through responses from S3Control.Client.list_access_points_for_object_lambda().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    AccountId='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters
  • AccountId (string) --

    [REQUIRED]

    The account ID for the account that owns the specified Object Lambda Access Point.

  • 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 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.

Return type

dict

Returns

Response Syntax

{
    'ObjectLambdaAccessPointList': [
        {
            'Name': 'string',
            'ObjectLambdaAccessPointArn': 'string',
            'Alias': {
                'Value': 'string',
                'Status': 'PROVISIONING'|'READY'
            }
        },
    ],

}

Response Structure

  • (dict) --

    • ObjectLambdaAccessPointList (list) --

      Returns list of Object Lambda Access Points.

      • (dict) --

        An access point with an attached Lambda function used to access transformed data from an Amazon S3 bucket.

        • Name (string) --

          The name of the Object Lambda Access Point.

        • ObjectLambdaAccessPointArn (string) --

          Specifies the ARN for the Object Lambda Access Point.

        • Alias (dict) --

          The alias of the Object Lambda Access Point.

          • Value (string) --

            The alias value of the Object Lambda Access Point.

          • Status (string) --

            The status of the Object Lambda Access Point alias. If the status is PROVISIONING , the Object Lambda Access Point is provisioning the alias and the alias is not ready for use yet. If the status is READY , the Object Lambda Access Point alias is successfully provisioned and ready for use.