Skip to content

List Cloud Front Origin Access Identities

cloudfront_list_cloud_front_origin_access_identities R Documentation

Lists origin access identities

Description

Lists origin access identities.

Usage

cloudfront_list_cloud_front_origin_access_identities(Marker, MaxItems)

Arguments

Marker

Use this when paginating results to indicate where to begin in your list of origin access identities. The results include identities in the list that occur after the marker. To get the next page of results, set the Marker to the value of the NextMarker from the current page's response (which is also the ID of the last identity on that page).

MaxItems

The maximum number of origin access identities you want in the response body.

Value

A list with the following syntax:

list(
  CloudFrontOriginAccessIdentityList = list(
    Marker = "string",
    NextMarker = "string",
    MaxItems = 123,
    IsTruncated = TRUE|FALSE,
    Quantity = 123,
    Items = list(
      list(
        Id = "string",
        S3CanonicalUserId = "string",
        Comment = "string"
      )
    )
  )
)

Request syntax

svc$list_cloud_front_origin_access_identities(
  Marker = "string",
  MaxItems = "string"
)