1. Packages
  2. AWS Classic
  3. API Docs
  4. servicecatalog
  5. ProvisionedProduct

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

aws.servicecatalog.ProvisionedProduct

Explore with Pulumi AI

aws logo

Try AWS Native preview for resources not in the classic version.

AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi

    This resource provisions and manages a Service Catalog provisioned 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.

    Like this resource, the aws_servicecatalog_record data source also provides information about a provisioned product. Although a Service Catalog record provides some overlapping information with this resource, a record is tied to a provisioned product event, such as provisioning, termination, and updating.

    Tip: If you include conflicted keys as tags, AWS will report an error, “Parameter validation failed: Missing required parameter in Tags[N]:Value”.

    Tip: A “provisioning artifact” is also referred to as a “version.” A “distributor” is also referred to as a “vendor.”

    Example Usage

    Basic Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.servicecatalog.ProvisionedProduct("example", {
        name: "example",
        productName: "Example product",
        provisioningArtifactName: "Example version",
        provisioningParameters: [{
            key: "foo",
            value: "bar",
        }],
        tags: {
            foo: "bar",
        },
    });
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.servicecatalog.ProvisionedProduct("example",
        name="example",
        product_name="Example product",
        provisioning_artifact_name="Example version",
        provisioning_parameters=[aws.servicecatalog.ProvisionedProductProvisioningParameterArgs(
            key="foo",
            value="bar",
        )],
        tags={
            "foo": "bar",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/servicecatalog"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := servicecatalog.NewProvisionedProduct(ctx, "example", &servicecatalog.ProvisionedProductArgs{
    			Name:                     pulumi.String("example"),
    			ProductName:              pulumi.String("Example product"),
    			ProvisioningArtifactName: pulumi.String("Example version"),
    			ProvisioningParameters: servicecatalog.ProvisionedProductProvisioningParameterArray{
    				&servicecatalog.ProvisionedProductProvisioningParameterArgs{
    					Key:   pulumi.String("foo"),
    					Value: pulumi.String("bar"),
    				},
    			},
    			Tags: pulumi.StringMap{
    				"foo": pulumi.String("bar"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.ServiceCatalog.ProvisionedProduct("example", new()
        {
            Name = "example",
            ProductName = "Example product",
            ProvisioningArtifactName = "Example version",
            ProvisioningParameters = new[]
            {
                new Aws.ServiceCatalog.Inputs.ProvisionedProductProvisioningParameterArgs
                {
                    Key = "foo",
                    Value = "bar",
                },
            },
            Tags = 
            {
                { "foo", "bar" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.servicecatalog.ProvisionedProduct;
    import com.pulumi.aws.servicecatalog.ProvisionedProductArgs;
    import com.pulumi.aws.servicecatalog.inputs.ProvisionedProductProvisioningParameterArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new ProvisionedProduct("example", ProvisionedProductArgs.builder()        
                .name("example")
                .productName("Example product")
                .provisioningArtifactName("Example version")
                .provisioningParameters(ProvisionedProductProvisioningParameterArgs.builder()
                    .key("foo")
                    .value("bar")
                    .build())
                .tags(Map.of("foo", "bar"))
                .build());
    
        }
    }
    
    resources:
      example:
        type: aws:servicecatalog:ProvisionedProduct
        properties:
          name: example
          productName: Example product
          provisioningArtifactName: Example version
          provisioningParameters:
            - key: foo
              value: bar
          tags:
            foo: bar
    

    Create ProvisionedProduct Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ProvisionedProduct(name: string, args?: ProvisionedProductArgs, opts?: CustomResourceOptions);
    @overload
    def ProvisionedProduct(resource_name: str,
                           args: Optional[ProvisionedProductArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ProvisionedProduct(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           accept_language: Optional[str] = None,
                           ignore_errors: Optional[bool] = None,
                           name: Optional[str] = None,
                           notification_arns: Optional[Sequence[str]] = None,
                           path_id: Optional[str] = None,
                           path_name: Optional[str] = None,
                           product_id: Optional[str] = None,
                           product_name: Optional[str] = None,
                           provisioning_artifact_id: Optional[str] = None,
                           provisioning_artifact_name: Optional[str] = None,
                           provisioning_parameters: Optional[Sequence[ProvisionedProductProvisioningParameterArgs]] = None,
                           retain_physical_resources: Optional[bool] = None,
                           stack_set_provisioning_preferences: Optional[ProvisionedProductStackSetProvisioningPreferencesArgs] = None,
                           tags: Optional[Mapping[str, str]] = None)
    func NewProvisionedProduct(ctx *Context, name string, args *ProvisionedProductArgs, opts ...ResourceOption) (*ProvisionedProduct, error)
    public ProvisionedProduct(string name, ProvisionedProductArgs? args = null, CustomResourceOptions? opts = null)
    public ProvisionedProduct(String name, ProvisionedProductArgs args)
    public ProvisionedProduct(String name, ProvisionedProductArgs args, CustomResourceOptions options)
    
    type: aws:servicecatalog:ProvisionedProduct
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProvisionedProductArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var provisionedProductResource = new Aws.ServiceCatalog.ProvisionedProduct("provisionedProductResource", new()
    {
        AcceptLanguage = "string",
        IgnoreErrors = false,
        Name = "string",
        NotificationArns = new[]
        {
            "string",
        },
        PathId = "string",
        PathName = "string",
        ProductId = "string",
        ProductName = "string",
        ProvisioningArtifactId = "string",
        ProvisioningArtifactName = "string",
        ProvisioningParameters = new[]
        {
            new Aws.ServiceCatalog.Inputs.ProvisionedProductProvisioningParameterArgs
            {
                Key = "string",
                UsePreviousValue = false,
                Value = "string",
            },
        },
        RetainPhysicalResources = false,
        StackSetProvisioningPreferences = new Aws.ServiceCatalog.Inputs.ProvisionedProductStackSetProvisioningPreferencesArgs
        {
            Accounts = new[]
            {
                "string",
            },
            FailureToleranceCount = 0,
            FailureTolerancePercentage = 0,
            MaxConcurrencyCount = 0,
            MaxConcurrencyPercentage = 0,
            Regions = new[]
            {
                "string",
            },
        },
        Tags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := servicecatalog.NewProvisionedProduct(ctx, "provisionedProductResource", &servicecatalog.ProvisionedProductArgs{
    	AcceptLanguage: pulumi.String("string"),
    	IgnoreErrors:   pulumi.Bool(false),
    	Name:           pulumi.String("string"),
    	NotificationArns: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	PathId:                   pulumi.String("string"),
    	PathName:                 pulumi.String("string"),
    	ProductId:                pulumi.String("string"),
    	ProductName:              pulumi.String("string"),
    	ProvisioningArtifactId:   pulumi.String("string"),
    	ProvisioningArtifactName: pulumi.String("string"),
    	ProvisioningParameters: servicecatalog.ProvisionedProductProvisioningParameterArray{
    		&servicecatalog.ProvisionedProductProvisioningParameterArgs{
    			Key:              pulumi.String("string"),
    			UsePreviousValue: pulumi.Bool(false),
    			Value:            pulumi.String("string"),
    		},
    	},
    	RetainPhysicalResources: pulumi.Bool(false),
    	StackSetProvisioningPreferences: &servicecatalog.ProvisionedProductStackSetProvisioningPreferencesArgs{
    		Accounts: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    		FailureToleranceCount:      pulumi.Int(0),
    		FailureTolerancePercentage: pulumi.Int(0),
    		MaxConcurrencyCount:        pulumi.Int(0),
    		MaxConcurrencyPercentage:   pulumi.Int(0),
    		Regions: pulumi.StringArray{
    			pulumi.String("string"),
    		},
    	},
    	Tags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var provisionedProductResource = new ProvisionedProduct("provisionedProductResource", ProvisionedProductArgs.builder()        
        .acceptLanguage("string")
        .ignoreErrors(false)
        .name("string")
        .notificationArns("string")
        .pathId("string")
        .pathName("string")
        .productId("string")
        .productName("string")
        .provisioningArtifactId("string")
        .provisioningArtifactName("string")
        .provisioningParameters(ProvisionedProductProvisioningParameterArgs.builder()
            .key("string")
            .usePreviousValue(false)
            .value("string")
            .build())
        .retainPhysicalResources(false)
        .stackSetProvisioningPreferences(ProvisionedProductStackSetProvisioningPreferencesArgs.builder()
            .accounts("string")
            .failureToleranceCount(0)
            .failureTolerancePercentage(0)
            .maxConcurrencyCount(0)
            .maxConcurrencyPercentage(0)
            .regions("string")
            .build())
        .tags(Map.of("string", "string"))
        .build());
    
    provisioned_product_resource = aws.servicecatalog.ProvisionedProduct("provisionedProductResource",
        accept_language="string",
        ignore_errors=False,
        name="string",
        notification_arns=["string"],
        path_id="string",
        path_name="string",
        product_id="string",
        product_name="string",
        provisioning_artifact_id="string",
        provisioning_artifact_name="string",
        provisioning_parameters=[aws.servicecatalog.ProvisionedProductProvisioningParameterArgs(
            key="string",
            use_previous_value=False,
            value="string",
        )],
        retain_physical_resources=False,
        stack_set_provisioning_preferences=aws.servicecatalog.ProvisionedProductStackSetProvisioningPreferencesArgs(
            accounts=["string"],
            failure_tolerance_count=0,
            failure_tolerance_percentage=0,
            max_concurrency_count=0,
            max_concurrency_percentage=0,
            regions=["string"],
        ),
        tags={
            "string": "string",
        })
    
    const provisionedProductResource = new aws.servicecatalog.ProvisionedProduct("provisionedProductResource", {
        acceptLanguage: "string",
        ignoreErrors: false,
        name: "string",
        notificationArns: ["string"],
        pathId: "string",
        pathName: "string",
        productId: "string",
        productName: "string",
        provisioningArtifactId: "string",
        provisioningArtifactName: "string",
        provisioningParameters: [{
            key: "string",
            usePreviousValue: false,
            value: "string",
        }],
        retainPhysicalResources: false,
        stackSetProvisioningPreferences: {
            accounts: ["string"],
            failureToleranceCount: 0,
            failureTolerancePercentage: 0,
            maxConcurrencyCount: 0,
            maxConcurrencyPercentage: 0,
            regions: ["string"],
        },
        tags: {
            string: "string",
        },
    });
    
    type: aws:servicecatalog:ProvisionedProduct
    properties:
        acceptLanguage: string
        ignoreErrors: false
        name: string
        notificationArns:
            - string
        pathId: string
        pathName: string
        productId: string
        productName: string
        provisioningArtifactId: string
        provisioningArtifactName: string
        provisioningParameters:
            - key: string
              usePreviousValue: false
              value: string
        retainPhysicalResources: false
        stackSetProvisioningPreferences:
            accounts:
                - string
            failureToleranceCount: 0
            failureTolerancePercentage: 0
            maxConcurrencyCount: 0
            maxConcurrencyPercentage: 0
            regions:
                - string
        tags:
            string: string
    

    ProvisionedProduct Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ProvisionedProduct resource accepts the following input properties:

    AcceptLanguage string
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    IgnoreErrors bool
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    Name string

    User-friendly name of the provisioned product.

    The following arguments are optional:

    NotificationArns List<string>
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    PathId string
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    PathName string
    Name of the path. You must provide path_id or path_name, but not both.
    ProductId string
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    ProductName string
    Name of the product. You must provide product_id or product_name, but not both.
    ProvisioningArtifactId string
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningArtifactName string
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningParameters List<ProvisionedProductProvisioningParameter>
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    RetainPhysicalResources bool
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    StackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferences
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    Tags Dictionary<string, string>
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    AcceptLanguage string
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    IgnoreErrors bool
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    Name string

    User-friendly name of the provisioned product.

    The following arguments are optional:

    NotificationArns []string
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    PathId string
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    PathName string
    Name of the path. You must provide path_id or path_name, but not both.
    ProductId string
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    ProductName string
    Name of the product. You must provide product_id or product_name, but not both.
    ProvisioningArtifactId string
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningArtifactName string
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningParameters []ProvisionedProductProvisioningParameterArgs
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    RetainPhysicalResources bool
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    StackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferencesArgs
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    Tags map[string]string
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    acceptLanguage String
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    ignoreErrors Boolean
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    name String

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notificationArns List<String>
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    pathId String
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    pathName String
    Name of the path. You must provide path_id or path_name, but not both.
    productId String
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    productName String
    Name of the product. You must provide product_id or product_name, but not both.
    provisioningArtifactId String
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningArtifactName String
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningParameters List<ProvisionedProductProvisioningParameter>
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retainPhysicalResources Boolean
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferences
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    tags Map<String,String>
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    acceptLanguage string
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    ignoreErrors boolean
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    name string

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notificationArns string[]
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    pathId string
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    pathName string
    Name of the path. You must provide path_id or path_name, but not both.
    productId string
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    productName string
    Name of the product. You must provide product_id or product_name, but not both.
    provisioningArtifactId string
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningArtifactName string
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningParameters ProvisionedProductProvisioningParameter[]
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retainPhysicalResources boolean
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferences
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    tags {[key: string]: string}
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    accept_language str
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    ignore_errors bool
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    name str

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notification_arns Sequence[str]
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    path_id str
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    path_name str
    Name of the path. You must provide path_id or path_name, but not both.
    product_id str
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    product_name str
    Name of the product. You must provide product_id or product_name, but not both.
    provisioning_artifact_id str
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioning_artifact_name str
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioning_parameters Sequence[ProvisionedProductProvisioningParameterArgs]
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retain_physical_resources bool
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stack_set_provisioning_preferences ProvisionedProductStackSetProvisioningPreferencesArgs
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    tags Mapping[str, str]
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    acceptLanguage String
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    ignoreErrors Boolean
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    name String

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notificationArns List<String>
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    pathId String
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    pathName String
    Name of the path. You must provide path_id or path_name, but not both.
    productId String
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    productName String
    Name of the product. You must provide product_id or product_name, but not both.
    provisioningArtifactId String
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningArtifactName String
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningParameters List<Property Map>
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retainPhysicalResources Boolean
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stackSetProvisioningPreferences Property Map
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    tags Map<String>
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ProvisionedProduct resource produces the following output properties:

    Arn string
    ARN of the provisioned product.
    CloudwatchDashboardNames List<string>
    Set of CloudWatch dashboards that were created when provisioning the product.
    CreatedTime string
    Time when the provisioned product was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastProvisioningRecordId string
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LastRecordId string
    Record identifier of the last request performed on this provisioned product.
    LastSuccessfulProvisioningRecordId string
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LaunchRoleArn string
    ARN of the launch role associated with the provisioned product.
    Outputs List<ProvisionedProductOutput>
    The set of outputs for the product created.
    Status string
    Current status of the provisioned product. See meanings below.
    StatusMessage string
    Current status message of the provisioned product.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Type string
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    Arn string
    ARN of the provisioned product.
    CloudwatchDashboardNames []string
    Set of CloudWatch dashboards that were created when provisioning the product.
    CreatedTime string
    Time when the provisioned product was created.
    Id string
    The provider-assigned unique ID for this managed resource.
    LastProvisioningRecordId string
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LastRecordId string
    Record identifier of the last request performed on this provisioned product.
    LastSuccessfulProvisioningRecordId string
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LaunchRoleArn string
    ARN of the launch role associated with the provisioned product.
    Outputs []ProvisionedProductOutputType
    The set of outputs for the product created.
    Status string
    Current status of the provisioned product. See meanings below.
    StatusMessage string
    Current status message of the provisioned product.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Type string
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    arn String
    ARN of the provisioned product.
    cloudwatchDashboardNames List<String>
    Set of CloudWatch dashboards that were created when provisioning the product.
    createdTime String
    Time when the provisioned product was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastProvisioningRecordId String
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    lastRecordId String
    Record identifier of the last request performed on this provisioned product.
    lastSuccessfulProvisioningRecordId String
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launchRoleArn String
    ARN of the launch role associated with the provisioned product.
    outputs List<ProvisionedProductOutput>
    The set of outputs for the product created.
    status String
    Current status of the provisioned product. See meanings below.
    statusMessage String
    Current status message of the provisioned product.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type String
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    arn string
    ARN of the provisioned product.
    cloudwatchDashboardNames string[]
    Set of CloudWatch dashboards that were created when provisioning the product.
    createdTime string
    Time when the provisioned product was created.
    id string
    The provider-assigned unique ID for this managed resource.
    lastProvisioningRecordId string
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    lastRecordId string
    Record identifier of the last request performed on this provisioned product.
    lastSuccessfulProvisioningRecordId string
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launchRoleArn string
    ARN of the launch role associated with the provisioned product.
    outputs ProvisionedProductOutput[]
    The set of outputs for the product created.
    status string
    Current status of the provisioned product. See meanings below.
    statusMessage string
    Current status message of the provisioned product.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type string
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    arn str
    ARN of the provisioned product.
    cloudwatch_dashboard_names Sequence[str]
    Set of CloudWatch dashboards that were created when provisioning the product.
    created_time str
    Time when the provisioned product was created.
    id str
    The provider-assigned unique ID for this managed resource.
    last_provisioning_record_id str
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    last_record_id str
    Record identifier of the last request performed on this provisioned product.
    last_successful_provisioning_record_id str
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launch_role_arn str
    ARN of the launch role associated with the provisioned product.
    outputs Sequence[ProvisionedProductOutput]
    The set of outputs for the product created.
    status str
    Current status of the provisioned product. See meanings below.
    status_message str
    Current status message of the provisioned product.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type str
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    arn String
    ARN of the provisioned product.
    cloudwatchDashboardNames List<String>
    Set of CloudWatch dashboards that were created when provisioning the product.
    createdTime String
    Time when the provisioned product was created.
    id String
    The provider-assigned unique ID for this managed resource.
    lastProvisioningRecordId String
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    lastRecordId String
    Record identifier of the last request performed on this provisioned product.
    lastSuccessfulProvisioningRecordId String
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launchRoleArn String
    ARN of the launch role associated with the provisioned product.
    outputs List<Property Map>
    The set of outputs for the product created.
    status String
    Current status of the provisioned product. See meanings below.
    statusMessage String
    Current status message of the provisioned product.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type String
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.

    Look up Existing ProvisionedProduct Resource

    Get an existing ProvisionedProduct resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ProvisionedProductState, opts?: CustomResourceOptions): ProvisionedProduct
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_language: Optional[str] = None,
            arn: Optional[str] = None,
            cloudwatch_dashboard_names: Optional[Sequence[str]] = None,
            created_time: Optional[str] = None,
            ignore_errors: Optional[bool] = None,
            last_provisioning_record_id: Optional[str] = None,
            last_record_id: Optional[str] = None,
            last_successful_provisioning_record_id: Optional[str] = None,
            launch_role_arn: Optional[str] = None,
            name: Optional[str] = None,
            notification_arns: Optional[Sequence[str]] = None,
            outputs: Optional[Sequence[ProvisionedProductOutputArgs]] = None,
            path_id: Optional[str] = None,
            path_name: Optional[str] = None,
            product_id: Optional[str] = None,
            product_name: Optional[str] = None,
            provisioning_artifact_id: Optional[str] = None,
            provisioning_artifact_name: Optional[str] = None,
            provisioning_parameters: Optional[Sequence[ProvisionedProductProvisioningParameterArgs]] = None,
            retain_physical_resources: Optional[bool] = None,
            stack_set_provisioning_preferences: Optional[ProvisionedProductStackSetProvisioningPreferencesArgs] = None,
            status: Optional[str] = None,
            status_message: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            type: Optional[str] = None) -> ProvisionedProduct
    func GetProvisionedProduct(ctx *Context, name string, id IDInput, state *ProvisionedProductState, opts ...ResourceOption) (*ProvisionedProduct, error)
    public static ProvisionedProduct Get(string name, Input<string> id, ProvisionedProductState? state, CustomResourceOptions? opts = null)
    public static ProvisionedProduct get(String name, Output<String> id, ProvisionedProductState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AcceptLanguage string
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    Arn string
    ARN of the provisioned product.
    CloudwatchDashboardNames List<string>
    Set of CloudWatch dashboards that were created when provisioning the product.
    CreatedTime string
    Time when the provisioned product was created.
    IgnoreErrors bool
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    LastProvisioningRecordId string
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LastRecordId string
    Record identifier of the last request performed on this provisioned product.
    LastSuccessfulProvisioningRecordId string
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LaunchRoleArn string
    ARN of the launch role associated with the provisioned product.
    Name string

    User-friendly name of the provisioned product.

    The following arguments are optional:

    NotificationArns List<string>
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    Outputs List<ProvisionedProductOutput>
    The set of outputs for the product created.
    PathId string
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    PathName string
    Name of the path. You must provide path_id or path_name, but not both.
    ProductId string
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    ProductName string
    Name of the product. You must provide product_id or product_name, but not both.
    ProvisioningArtifactId string
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningArtifactName string
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningParameters List<ProvisionedProductProvisioningParameter>
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    RetainPhysicalResources bool
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    StackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferences
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    Status string
    Current status of the provisioned product. See meanings below.
    StatusMessage string
    Current status message of the provisioned product.
    Tags Dictionary<string, string>
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll Dictionary<string, string>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Type string
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    AcceptLanguage string
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    Arn string
    ARN of the provisioned product.
    CloudwatchDashboardNames []string
    Set of CloudWatch dashboards that were created when provisioning the product.
    CreatedTime string
    Time when the provisioned product was created.
    IgnoreErrors bool
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    LastProvisioningRecordId string
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LastRecordId string
    Record identifier of the last request performed on this provisioned product.
    LastSuccessfulProvisioningRecordId string
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    LaunchRoleArn string
    ARN of the launch role associated with the provisioned product.
    Name string

    User-friendly name of the provisioned product.

    The following arguments are optional:

    NotificationArns []string
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    Outputs []ProvisionedProductOutputTypeArgs
    The set of outputs for the product created.
    PathId string
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    PathName string
    Name of the path. You must provide path_id or path_name, but not both.
    ProductId string
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    ProductName string
    Name of the product. You must provide product_id or product_name, but not both.
    ProvisioningArtifactId string
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningArtifactName string
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    ProvisioningParameters []ProvisionedProductProvisioningParameterArgs
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    RetainPhysicalResources bool
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    StackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferencesArgs
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    Status string
    Current status of the provisioned product. See meanings below.
    StatusMessage string
    Current status message of the provisioned product.
    Tags map[string]string
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    TagsAll map[string]string
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    Type string
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    acceptLanguage String
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    arn String
    ARN of the provisioned product.
    cloudwatchDashboardNames List<String>
    Set of CloudWatch dashboards that were created when provisioning the product.
    createdTime String
    Time when the provisioned product was created.
    ignoreErrors Boolean
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    lastProvisioningRecordId String
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    lastRecordId String
    Record identifier of the last request performed on this provisioned product.
    lastSuccessfulProvisioningRecordId String
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launchRoleArn String
    ARN of the launch role associated with the provisioned product.
    name String

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notificationArns List<String>
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    outputs List<ProvisionedProductOutput>
    The set of outputs for the product created.
    pathId String
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    pathName String
    Name of the path. You must provide path_id or path_name, but not both.
    productId String
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    productName String
    Name of the product. You must provide product_id or product_name, but not both.
    provisioningArtifactId String
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningArtifactName String
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningParameters List<ProvisionedProductProvisioningParameter>
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retainPhysicalResources Boolean
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferences
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    status String
    Current status of the provisioned product. See meanings below.
    statusMessage String
    Current status message of the provisioned product.
    tags Map<String,String>
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String,String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type String
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    acceptLanguage string
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    arn string
    ARN of the provisioned product.
    cloudwatchDashboardNames string[]
    Set of CloudWatch dashboards that were created when provisioning the product.
    createdTime string
    Time when the provisioned product was created.
    ignoreErrors boolean
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    lastProvisioningRecordId string
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    lastRecordId string
    Record identifier of the last request performed on this provisioned product.
    lastSuccessfulProvisioningRecordId string
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launchRoleArn string
    ARN of the launch role associated with the provisioned product.
    name string

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notificationArns string[]
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    outputs ProvisionedProductOutput[]
    The set of outputs for the product created.
    pathId string
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    pathName string
    Name of the path. You must provide path_id or path_name, but not both.
    productId string
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    productName string
    Name of the product. You must provide product_id or product_name, but not both.
    provisioningArtifactId string
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningArtifactName string
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningParameters ProvisionedProductProvisioningParameter[]
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retainPhysicalResources boolean
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stackSetProvisioningPreferences ProvisionedProductStackSetProvisioningPreferences
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    status string
    Current status of the provisioned product. See meanings below.
    statusMessage string
    Current status message of the provisioned product.
    tags {[key: string]: string}
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll {[key: string]: string}
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type string
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    accept_language str
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    arn str
    ARN of the provisioned product.
    cloudwatch_dashboard_names Sequence[str]
    Set of CloudWatch dashboards that were created when provisioning the product.
    created_time str
    Time when the provisioned product was created.
    ignore_errors bool
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    last_provisioning_record_id str
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    last_record_id str
    Record identifier of the last request performed on this provisioned product.
    last_successful_provisioning_record_id str
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launch_role_arn str
    ARN of the launch role associated with the provisioned product.
    name str

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notification_arns Sequence[str]
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    outputs Sequence[ProvisionedProductOutputArgs]
    The set of outputs for the product created.
    path_id str
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    path_name str
    Name of the path. You must provide path_id or path_name, but not both.
    product_id str
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    product_name str
    Name of the product. You must provide product_id or product_name, but not both.
    provisioning_artifact_id str
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioning_artifact_name str
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioning_parameters Sequence[ProvisionedProductProvisioningParameterArgs]
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retain_physical_resources bool
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stack_set_provisioning_preferences ProvisionedProductStackSetProvisioningPreferencesArgs
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    status str
    Current status of the provisioned product. See meanings below.
    status_message str
    Current status message of the provisioned product.
    tags Mapping[str, str]
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tags_all Mapping[str, str]
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type str
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.
    acceptLanguage String
    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.
    arn String
    ARN of the provisioned product.
    cloudwatchDashboardNames List<String>
    Set of CloudWatch dashboards that were created when provisioning the product.
    createdTime String
    Time when the provisioned product was created.
    ignoreErrors Boolean
    Only applies to deleting. If set to true, AWS Service Catalog stops managing the specified provisioned product even if it cannot delete the underlying resources. The default value is false.
    lastProvisioningRecordId String
    Record identifier of the last request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    lastRecordId String
    Record identifier of the last request performed on this provisioned product.
    lastSuccessfulProvisioningRecordId String
    Record identifier of the last successful request performed on this provisioned product of the following types: ProvisionedProduct, UpdateProvisionedProduct, ExecuteProvisionedProductPlan, TerminateProvisionedProduct.
    launchRoleArn String
    ARN of the launch role associated with the provisioned product.
    name String

    User-friendly name of the provisioned product.

    The following arguments are optional:

    notificationArns List<String>
    Passed to CloudFormation. The SNS topic ARNs to which to publish stack-related events.
    outputs List<Property Map>
    The set of outputs for the product created.
    pathId String
    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 aws.servicecatalog.getLaunchPaths. When required, you must provide path_id or path_name, but not both.
    pathName String
    Name of the path. You must provide path_id or path_name, but not both.
    productId String
    Product identifier. For example, prod-abcdzk7xy33qa. You must provide product_id or product_name, but not both.
    productName String
    Name of the product. You must provide product_id or product_name, but not both.
    provisioningArtifactId String
    Identifier of the provisioning artifact. For example, pa-4abcdjnxjj6ne. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningArtifactName String
    Name of the provisioning artifact. You must provide the provisioning_artifact_id or provisioning_artifact_name, but not both.
    provisioningParameters List<Property Map>
    Configuration block with parameters specified by the administrator that are required for provisioning the product. See details below.
    retainPhysicalResources Boolean
    Only applies to deleting. Whether to delete the Service Catalog provisioned product but leave the CloudFormation stack, stack set, or the underlying resources of the deleted provisioned product. The default value is false.
    stackSetProvisioningPreferences Property Map
    Configuration block with information about the provisioning preferences for a stack set. See details below.
    status String
    Current status of the provisioned product. See meanings below.
    statusMessage String
    Current status message of the provisioned product.
    tags Map<String>
    Tags to apply to the provisioned product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.
    tagsAll Map<String>
    Map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated: Please use tags instead.

    type String
    Type of provisioned product. Valid values are CFN_STACK and CFN_STACKSET.

    Supporting Types

    ProvisionedProductOutput, ProvisionedProductOutputArgs

    Description string
    The description of the output.
    Key string
    Parameter key.
    Value string
    Parameter value.
    Description string
    The description of the output.
    Key string
    Parameter key.
    Value string
    Parameter value.
    description String
    The description of the output.
    key String
    Parameter key.
    value String
    Parameter value.
    description string
    The description of the output.
    key string
    Parameter key.
    value string
    Parameter value.
    description str
    The description of the output.
    key str
    Parameter key.
    value str
    Parameter value.
    description String
    The description of the output.
    key String
    Parameter key.
    value String
    Parameter value.

    ProvisionedProductProvisioningParameter, ProvisionedProductProvisioningParameterArgs

    Key string
    Parameter key.
    UsePreviousValue bool
    Whether to ignore value and keep the previous parameter value. Ignored when initially provisioning a product.
    Value string
    Parameter value.
    Key string
    Parameter key.
    UsePreviousValue bool
    Whether to ignore value and keep the previous parameter value. Ignored when initially provisioning a product.
    Value string
    Parameter value.
    key String
    Parameter key.
    usePreviousValue Boolean
    Whether to ignore value and keep the previous parameter value. Ignored when initially provisioning a product.
    value String
    Parameter value.
    key string
    Parameter key.
    usePreviousValue boolean
    Whether to ignore value and keep the previous parameter value. Ignored when initially provisioning a product.
    value string
    Parameter value.
    key str
    Parameter key.
    use_previous_value bool
    Whether to ignore value and keep the previous parameter value. Ignored when initially provisioning a product.
    value str
    Parameter value.
    key String
    Parameter key.
    usePreviousValue Boolean
    Whether to ignore value and keep the previous parameter value. Ignored when initially provisioning a product.
    value String
    Parameter value.

    ProvisionedProductStackSetProvisioningPreferences, ProvisionedProductStackSetProvisioningPreferencesArgs

    Accounts List<string>
    One or more AWS accounts that will have access to the provisioned product. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all accounts from the STACKSET constraint.
    FailureToleranceCount int
    Number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both. The default value is 0 if no value is specified.
    FailureTolerancePercentage int
    Percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both.
    MaxConcurrencyCount int
    Maximum number of accounts in which to perform this operation at one time. This is dependent on the value of failure_tolerance_count. max_concurrency_count is at most one more than the failure_tolerance_count. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    MaxConcurrencyPercentage int
    Maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    Regions List<string>
    One or more AWS Regions where the provisioned product will be available. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all regions from the STACKSET constraint.
    Accounts []string
    One or more AWS accounts that will have access to the provisioned product. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all accounts from the STACKSET constraint.
    FailureToleranceCount int
    Number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both. The default value is 0 if no value is specified.
    FailureTolerancePercentage int
    Percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both.
    MaxConcurrencyCount int
    Maximum number of accounts in which to perform this operation at one time. This is dependent on the value of failure_tolerance_count. max_concurrency_count is at most one more than the failure_tolerance_count. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    MaxConcurrencyPercentage int
    Maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    Regions []string
    One or more AWS Regions where the provisioned product will be available. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all regions from the STACKSET constraint.
    accounts List<String>
    One or more AWS accounts that will have access to the provisioned product. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all accounts from the STACKSET constraint.
    failureToleranceCount Integer
    Number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both. The default value is 0 if no value is specified.
    failureTolerancePercentage Integer
    Percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both.
    maxConcurrencyCount Integer
    Maximum number of accounts in which to perform this operation at one time. This is dependent on the value of failure_tolerance_count. max_concurrency_count is at most one more than the failure_tolerance_count. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    maxConcurrencyPercentage Integer
    Maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    regions List<String>
    One or more AWS Regions where the provisioned product will be available. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all regions from the STACKSET constraint.
    accounts string[]
    One or more AWS accounts that will have access to the provisioned product. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all accounts from the STACKSET constraint.
    failureToleranceCount number
    Number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both. The default value is 0 if no value is specified.
    failureTolerancePercentage number
    Percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both.
    maxConcurrencyCount number
    Maximum number of accounts in which to perform this operation at one time. This is dependent on the value of failure_tolerance_count. max_concurrency_count is at most one more than the failure_tolerance_count. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    maxConcurrencyPercentage number
    Maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    regions string[]
    One or more AWS Regions where the provisioned product will be available. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all regions from the STACKSET constraint.
    accounts Sequence[str]
    One or more AWS accounts that will have access to the provisioned product. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all accounts from the STACKSET constraint.
    failure_tolerance_count int
    Number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both. The default value is 0 if no value is specified.
    failure_tolerance_percentage int
    Percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both.
    max_concurrency_count int
    Maximum number of accounts in which to perform this operation at one time. This is dependent on the value of failure_tolerance_count. max_concurrency_count is at most one more than the failure_tolerance_count. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    max_concurrency_percentage int
    Maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    regions Sequence[str]
    One or more AWS Regions where the provisioned product will be available. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all regions from the STACKSET constraint.
    accounts List<String>
    One or more AWS accounts that will have access to the provisioned product. The AWS accounts specified should be within the list of accounts in the STACKSET constraint. To get the list of accounts in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all accounts from the STACKSET constraint.
    failureToleranceCount Number
    Number of accounts, per region, for which this operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both. The default value is 0 if no value is specified.
    failureTolerancePercentage Number
    Percentage of accounts, per region, for which this stack operation can fail before AWS Service Catalog stops the operation in that region. If the operation is stopped in a region, AWS Service Catalog doesn't attempt the operation in any subsequent regions. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. You must specify either failure_tolerance_count or failure_tolerance_percentage, but not both.
    maxConcurrencyCount Number
    Maximum number of accounts in which to perform this operation at one time. This is dependent on the value of failure_tolerance_count. max_concurrency_count is at most one more than the failure_tolerance_count. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    maxConcurrencyPercentage Number
    Maximum percentage of accounts in which to perform this operation at one time. When calculating the number of accounts based on the specified percentage, AWS Service Catalog rounds down to the next whole number. This is true except in cases where rounding down would result is zero. In this case, AWS Service Catalog sets the number as 1 instead. Note that this setting lets you specify the maximum for operations. For large deployments, under certain circumstances the actual number of accounts acted upon concurrently may be lower due to service throttling. You must specify either max_concurrency_count or max_concurrency_percentage, but not both.
    regions List<String>
    One or more AWS Regions where the provisioned product will be available. The specified regions should be within the list of regions from the STACKSET constraint. To get the list of regions in the STACKSET constraint, use the aws_servicecatalog_provisioning_parameters data source. If no values are specified, the default value is all regions from the STACKSET constraint.

    Import

    Using pulumi import, import aws_servicecatalog_provisioned_product using the provisioned product ID. For example:

    $ pulumi import aws:servicecatalog/provisionedProduct:ProvisionedProduct example pp-dnigbtea24ste
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    AWS Classic pulumi/pulumi-aws
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aws Terraform Provider.
    aws logo

    Try AWS Native preview for resources not in the classic version.

    AWS Classic v6.31.0 published on Monday, Apr 15, 2024 by Pulumi