You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::ServiceCatalog::Types::ProvisionProductInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing ProvisionProductInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  accept_language: "AcceptLanguage",
  product_id: "Id",
  product_name: "ProductViewName",
  provisioning_artifact_id: "Id",
  provisioning_artifact_name: "ProvisioningArtifactName",
  path_id: "Id",
  path_name: "PortfolioDisplayName",
  provisioned_product_name: "ProvisionedProductName", # required
  provisioning_parameters: [
    {
      key: "ParameterKey",
      value: "ParameterValue",
    },
  ],
  provisioning_preferences: {
    stack_set_accounts: ["AccountId"],
    stack_set_regions: ["Region"],
    stack_set_failure_tolerance_count: 1,
    stack_set_failure_tolerance_percentage: 1,
    stack_set_max_concurrency_count: 1,
    stack_set_max_concurrency_percentage: 1,
  },
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
  notification_arns: ["NotificationArn"],
  provision_token: "IdempotencyToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#accept_languageString

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

Returns:

  • (String)

    The language code.

#notification_arnsArray<String>

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

Returns:

  • (Array<String>)

    Passed to CloudFormation.

#path_idString

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.

Returns:

  • (String)

    The path identifier of the product.

#path_nameString

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

Returns:

  • (String)

    The name of the path.

#product_idString

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

Returns:

  • (String)

    The product identifier.

#product_nameString

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

Returns:

  • (String)

    The name of the product.

#provision_tokenString

An idempotency token that uniquely identifies the provisioning request.

Returns:

  • (String)

    An idempotency token that uniquely identifies the provisioning request.

#provisioned_product_nameString

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.

Returns:

  • (String)

    A user-friendly name for the provisioned product.

#provisioning_artifact_idString

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

Returns:

  • (String)

    The identifier of the provisioning artifact.

#provisioning_artifact_nameString

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

Returns:

  • (String)

    The name of the provisioning artifact.

#provisioning_parametersArray<Types::ProvisioningParameter>

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

Returns:

#provisioning_preferencesTypes::ProvisioningPreferences

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

Returns:

#tagsArray<Types::Tag>

One or more tags.

Returns: