Skip to content

List Access Points For Object Lambda

s3control_list_access_points_for_object_lambda R Documentation

This operation is not supported by directory buckets

Description

This operation is not supported by directory buckets.

Returns some or all (up to 1,000) access points associated with the Object Lambda Access Point per call. If there are more access points than what can be returned in one call, the response will include a continuation token that you can use to list the additional access points.

The following actions are related to list_access_points_for_object_lambda:

  • create_access_point_for_object_lambda

  • delete_access_point_for_object_lambda

  • get_access_point_for_object_lambda

Usage

s3control_list_access_points_for_object_lambda(AccountId, NextToken,
  MaxResults)

Arguments

AccountId

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

NextToken

If the list has more access points than can be returned in one call to this API, this field contains a continuation token that you can provide in subsequent calls to this API to retrieve additional access points.

MaxResults

The maximum number of access points that you want to include in the list. The response may contain fewer access points but will never contain more. If there are more than this number of access points, then the response will include a continuation token in the NextToken field that you can use to retrieve the next page of access points.

Value

A list with the following syntax:

list(
  ObjectLambdaAccessPointList = list(
    list(
      Name = "string",
      ObjectLambdaAccessPointArn = "string",
      Alias = list(
        Value = "string",
        Status = "PROVISIONING"|"READY"
      )
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_access_points_for_object_lambda(
  AccountId = "string",
  NextToken = "string",
  MaxResults = 123
)