ProductViewSummary

Summary information about a product view.

Cloud GovernanceComplianceIT GovernanceService Catalog

Properties

Name Type Description
Id string The product view identifier.
ProductId string The product identifier.
Name string The name of the product.
Owner string The owner of the product.
ShortDescription string Short description of the product.
Type string The product type.
View JSON Schema on GitHub

JSON Schema

amazon-service-catalog-product-view-summary-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-service-catalog/refs/heads/main/json-schema/amazon-service-catalog-product-view-summary-schema.json",
  "title": "ProductViewSummary",
  "description": "Summary information about a product view.",
  "type": "object",
  "properties": {
    "Id": {
      "type": "string",
      "description": "The product view identifier.",
      "example": "prodview-a1b2c3"
    },
    "ProductId": {
      "type": "string",
      "description": "The product identifier.",
      "example": "prod-a1b2c3"
    },
    "Name": {
      "type": "string",
      "description": "The name of the product.",
      "example": "EC2 Instance"
    },
    "Owner": {
      "type": "string",
      "description": "The owner of the product.",
      "example": "IT Team"
    },
    "ShortDescription": {
      "type": "string",
      "description": "Short description of the product."
    },
    "Type": {
      "type": "string",
      "description": "The product type.",
      "enum": [
        "CLOUD_FORMATION_TEMPLATE",
        "MARKETPLACE",
        "TERRAFORM_OPEN_SOURCE",
        "TERRAFORM_CLOUD",
        "EXTERNAL"
      ]
    }
  }
}