Skip to content

Describe Product View

servicecatalog_describe_product_view R Documentation

Gets information about the specified product

Description

Gets information about the specified product.

Usage

servicecatalog_describe_product_view(AcceptLanguage, Id)

Arguments

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

Id

[required] The product view identifier.

Value

A list with the following syntax:

list(
  ProductViewSummary = list(
    Id = "string",
    ProductId = "string",
    Name = "string",
    Owner = "string",
    ShortDescription = "string",
    Type = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE"|"TERRAFORM_OPEN_SOURCE"|"TERRAFORM_CLOUD"|"EXTERNAL",
    Distributor = "string",
    HasDefaultPath = TRUE|FALSE,
    SupportEmail = "string",
    SupportDescription = "string",
    SupportUrl = "string"
  ),
  ProvisioningArtifacts = list(
    list(
      Id = "string",
      Name = "string",
      Description = "string",
      CreatedTime = as.POSIXct(
        "2015-01-01"
      ),
      Guidance = "DEFAULT"|"DEPRECATED"
    )
  )
)

Request syntax

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