Skip to content

List Template Shares

wellarchitected_list_template_shares R Documentation

List review template shares

Description

List review template shares.

Usage

wellarchitected_list_template_shares(TemplateArn, SharedWithPrefix,
  NextToken, MaxResults, Status)

Arguments

TemplateArn

[required] The review template ARN.

SharedWithPrefix

The Amazon Web Services account ID, organization ID, or organizational unit (OU) ID with which the profile is shared.

NextToken

The token to use to retrieve the next set of results.

MaxResults

The maximum number of results to return for this request.

Status

The status of the share request.

Value

A list with the following syntax:

list(
  TemplateArn = "string",
  TemplateShareSummaries = list(
    list(
      ShareId = "string",
      SharedWith = "string",
      Status = "ACCEPTED"|"REJECTED"|"PENDING"|"REVOKED"|"EXPIRED"|"ASSOCIATING"|"ASSOCIATED"|"FAILED",
      StatusMessage = "string"
    )
  ),
  NextToken = "string"
)

Request syntax

svc$list_template_shares(
  TemplateArn = "string",
  SharedWithPrefix = "string",
  NextToken = "string",
  MaxResults = 123,
  Status = "ACCEPTED"|"REJECTED"|"PENDING"|"REVOKED"|"EXPIRED"|"ASSOCIATING"|"ASSOCIATED"|"FAILED"
)