Skip to content

Describe Portfolio

servicecatalog_describe_portfolio R Documentation

Gets information about the specified portfolio

Description

Gets information about the specified portfolio.

A delegated admin is authorized to invoke this command.

Usage

servicecatalog_describe_portfolio(AcceptLanguage, Id)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

Id

[required] The portfolio identifier.

Value

A list with the following syntax:

list(
  PortfolioDetail = list(
    Id = "string",
    ARN = "string",
    DisplayName = "string",
    Description = "string",
    CreatedTime = as.POSIXct(
      "2015-01-01"
    ),
    ProviderName = "string"
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  TagOptions = list(
    list(
      Key = "string",
      Value = "string",
      Active = TRUE|FALSE,
      Id = "string",
      Owner = "string"
    )
  ),
  Budgets = list(
    list(
      BudgetName = "string"
    )
  )
)

Request syntax

svc$describe_portfolio(
  AcceptLanguage = "string",
  Id = "string"
)