Skip to content

Describe Portfolio Share Status

servicecatalog_describe_portfolio_share_status R Documentation

Gets the status of the specified portfolio share operation

Description

Gets the status of the specified portfolio share operation. This API can only be called by the management account in the organization or by a delegated admin.

Usage

servicecatalog_describe_portfolio_share_status(PortfolioShareToken)

Arguments

PortfolioShareToken

[required] The token for the portfolio share operation. This token is returned either by CreatePortfolioShare or by DeletePortfolioShare.

Value

A list with the following syntax:

list(
  PortfolioShareToken = "string",
  PortfolioId = "string",
  OrganizationNodeValue = "string",
  Status = "NOT_STARTED"|"IN_PROGRESS"|"COMPLETED"|"COMPLETED_WITH_ERRORS"|"ERROR",
  ShareDetails = list(
    SuccessfulShares = list(
      "string"
    ),
    ShareErrors = list(
      list(
        Accounts = list(
          "string"
        ),
        Message = "string",
        Error = "string"
      )
    )
  )
)

Request syntax

svc$describe_portfolio_share_status(
  PortfolioShareToken = "string"
)