Learn R Programming

paws.management (version 0.1.12)

servicecatalog_describe_provisioning_artifact: Gets information about the specified provisioning artifact (also known as a version) for the specified product

Description

Gets information about the specified provisioning artifact (also known as a version) for the specified product.

Usage

servicecatalog_describe_provisioning_artifact(AcceptLanguage,
  ProvisioningArtifactId, ProductId, ProvisioningArtifactName,
  ProductName, Verbose)

Value

A list with the following syntax:

list(
  ProvisioningArtifactDetail = list(
    Id = "string",
    Name = "string",
    Description = "string",
    Type = "CLOUD_FORMATION_TEMPLATE"|"MARKETPLACE_AMI"|"MARKETPLACE_CAR",
    CreatedTime = as.POSIXct(
      "2015-01-01"
    ),
    Active = TRUE|FALSE,
    Guidance = "DEFAULT"|"DEPRECATED"
  ),
  Info = list(
    "string"
  ),
  Status = "AVAILABLE"|"CREATING"|"FAILED"
)

Arguments

AcceptLanguage

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

ProvisioningArtifactId

The identifier of the provisioning artifact.

ProductId

The product identifier.

ProvisioningArtifactName

The provisioning artifact name.

ProductName

The product name.

Verbose

Indicates whether a verbose level of detail is enabled.

Request syntax

svc$describe_provisioning_artifact(
  AcceptLanguage = "string",
  ProvisioningArtifactId = "string",
  ProductId = "string",
  ProvisioningArtifactName = "string",
  ProductName = "string",
  Verbose = TRUE|FALSE
)