Skip to content

List Connection Functions

cloudfront_list_connection_functions R Documentation

Lists connection functions

Description

Lists connection functions.

Usage

cloudfront_list_connection_functions(Marker, MaxItems, Stage)

Arguments

Marker

Use this field when paginating results to indicate where to begin in your list. The response includes items in the list that occur after the marker. To get the next page of the list, set this field's value to the value of NextMarker from the current page's response.

MaxItems

The maximum number of connection functions that you want returned in the response.

Stage

The connection function's stage.

Value

A list with the following syntax:

list(
  NextMarker = "string",
  ConnectionFunctions = list(
    list(
      Name = "string",
      Id = "string",
      ConnectionFunctionConfig = list(
        Comment = "string",
        Runtime = "cloudfront-js-1.0"|"cloudfront-js-2.0",
        KeyValueStoreAssociations = list(
          Quantity = 123,
          Items = list(
            list(
              KeyValueStoreARN = "string"
            )
          )
        )
      ),
      ConnectionFunctionArn = "string",
      Status = "string",
      Stage = "DEVELOPMENT"|"LIVE",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      LastModifiedTime = as.POSIXct(
        "2015-01-01"
      )
    )
  )
)

Request syntax

svc$list_connection_functions(
  Marker = "string",
  MaxItems = 123,
  Stage = "DEVELOPMENT"|"LIVE"
)