Skip to content

List Service Templates

proton_list_service_templates R Documentation

List service templates with detail data

Description

List service templates with detail data.

Usage

proton_list_service_templates(maxResults, nextToken)

Arguments

maxResults

The maximum number of service templates to list.

nextToken

A token that indicates the location of the next service template in the array of service templates, after the list of service templates previously requested.

Value

A list with the following syntax:

list(
  nextToken = "string",
  templates = list(
    list(
      arn = "string",
      createdAt = as.POSIXct(
        "2015-01-01"
      ),
      description = "string",
      displayName = "string",
      lastModifiedAt = as.POSIXct(
        "2015-01-01"
      ),
      name = "string",
      pipelineProvisioning = "CUSTOMER_MANAGED",
      recommendedVersion = "string"
    )
  )
)

Request syntax

svc$list_service_templates(
  maxResults = 123,
  nextToken = "string"
)