Learn R Programming

paws.management (version 0.1.10)

servicecatalog_provision_product: Provisions the specified product

Description

Provisions the specified product.

A provisioned product is a resourced instance of a product. For example, provisioning a product based on a CloudFormation template launches a CloudFormation stack and its underlying resources. You can check the status of this request using DescribeRecord.

If the request contains a tag key with an empty list of values, there is a tag conflict for that key. Do not include conflicted keys as tags, or this causes the error "Parameter validation failed: Missing required parameter in Tags[N]:Value".

Usage

servicecatalog_provision_product(AcceptLanguage, ProductId, ProductName,
  ProvisioningArtifactId, ProvisioningArtifactName, PathId, PathName,
  ProvisionedProductName, ProvisioningParameters, ProvisioningPreferences,
  Tags, NotificationArns, ProvisionToken)

Arguments

AcceptLanguage

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

ProductId

The product identifier. You must provide the name or ID, but not both.

ProductName

The name of the product. You must provide the name or ID, but not both.

ProvisioningArtifactId

The identifier of the provisioning artifact. You must provide the name or ID, but not both.

ProvisioningArtifactName

The name of the provisioning artifact. You must provide the name or ID, but not both.

PathId

The path identifier of the product. This value is optional if the product has a default path, and required if the product has more than one path. To list the paths for a product, use ListLaunchPaths. You must provide the name or ID, but not both.

PathName

The name of the path. You must provide the name or ID, but not both.

ProvisionedProductName

[required] A user-friendly name for the provisioned product. This value must be unique for the AWS account and cannot be updated after the product is provisioned.

ProvisioningParameters

Parameters specified by the administrator that are required for provisioning the product.

ProvisioningPreferences

An object that contains information about the provisioning preferences for a stack set.

Tags

One or more tags.

NotificationArns

Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.

ProvisionToken

[required] An idempotency token that uniquely identifies the provisioning request.

Request syntax

svc$provision_product(
  AcceptLanguage = "string",
  ProductId = "string",
  ProductName = "string",
  ProvisioningArtifactId = "string",
  ProvisioningArtifactName = "string",
  PathId = "string",
  PathName = "string",
  ProvisionedProductName = "string",
  ProvisioningParameters = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  ProvisioningPreferences = list(
    StackSetAccounts = list(
      "string"
    ),
    StackSetRegions = list(
      "string"
    ),
    StackSetFailureToleranceCount = 123,
    StackSetFailureTolerancePercentage = 123,
    StackSetMaxConcurrencyCount = 123,
    StackSetMaxConcurrencyPercentage = 123
  ),
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  NotificationArns = list(
    "string"
  ),
  ProvisionToken = "string"
)