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

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

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

aws.servicecatalog.Product

Explore with Pulumi AI

aws logo

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

AWS Classic v6.2.1 published on Friday, Sep 22, 2023 by Pulumi

    Manages a Service Catalog Product.

    NOTE: The user or role that uses this resources must have the cloudformation:GetTemplate IAM policy permission. This policy permission is required when using the template_physical_id argument.

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

    Example Usage

    Basic Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aws = Pulumi.Aws;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aws.ServiceCatalog.Product("example", new()
        {
            Owner = "example-owner",
            ProvisioningArtifactParameters = new Aws.ServiceCatalog.Inputs.ProductProvisioningArtifactParametersArgs
            {
                TemplateUrl = "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json",
            },
            Tags = 
            {
                { "foo", "bar" },
            },
            Type = "CLOUD_FORMATION_TEMPLATE",
        });
    
    });
    
    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.NewProduct(ctx, "example", &servicecatalog.ProductArgs{
    			Owner: pulumi.String("example-owner"),
    			ProvisioningArtifactParameters: &servicecatalog.ProductProvisioningArtifactParametersArgs{
    				TemplateUrl: pulumi.String("https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json"),
    			},
    			Tags: pulumi.StringMap{
    				"foo": pulumi.String("bar"),
    			},
    			Type: pulumi.String("CLOUD_FORMATION_TEMPLATE"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aws.servicecatalog.Product;
    import com.pulumi.aws.servicecatalog.ProductArgs;
    import com.pulumi.aws.servicecatalog.inputs.ProductProvisioningArtifactParametersArgs;
    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 Product("example", ProductArgs.builder()        
                .owner("example-owner")
                .provisioningArtifactParameters(ProductProvisioningArtifactParametersArgs.builder()
                    .templateUrl("https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json")
                    .build())
                .tags(Map.of("foo", "bar"))
                .type("CLOUD_FORMATION_TEMPLATE")
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_aws as aws
    
    example = aws.servicecatalog.Product("example",
        owner="example-owner",
        provisioning_artifact_parameters=aws.servicecatalog.ProductProvisioningArtifactParametersArgs(
            template_url="https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json",
        ),
        tags={
            "foo": "bar",
        },
        type="CLOUD_FORMATION_TEMPLATE")
    
    import * as pulumi from "@pulumi/pulumi";
    import * as aws from "@pulumi/aws";
    
    const example = new aws.servicecatalog.Product("example", {
        owner: "example-owner",
        provisioningArtifactParameters: {
            templateUrl: "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json",
        },
        tags: {
            foo: "bar",
        },
        type: "CLOUD_FORMATION_TEMPLATE",
    });
    
    resources:
      example:
        type: aws:servicecatalog:Product
        properties:
          owner: example-owner
          provisioningArtifactParameters:
            templateUrl: https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json
          tags:
            foo: bar
          type: CLOUD_FORMATION_TEMPLATE
    

    Create Product Resource

    new Product(name: string, args: ProductArgs, opts?: CustomResourceOptions);
    @overload
    def Product(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                accept_language: Optional[str] = None,
                description: Optional[str] = None,
                distributor: Optional[str] = None,
                name: Optional[str] = None,
                owner: Optional[str] = None,
                provisioning_artifact_parameters: Optional[ProductProvisioningArtifactParametersArgs] = None,
                support_description: Optional[str] = None,
                support_email: Optional[str] = None,
                support_url: Optional[str] = None,
                tags: Optional[Mapping[str, str]] = None,
                type: Optional[str] = None)
    @overload
    def Product(resource_name: str,
                args: ProductArgs,
                opts: Optional[ResourceOptions] = None)
    func NewProduct(ctx *Context, name string, args ProductArgs, opts ...ResourceOption) (*Product, error)
    public Product(string name, ProductArgs args, CustomResourceOptions? opts = null)
    public Product(String name, ProductArgs args)
    public Product(String name, ProductArgs args, CustomResourceOptions options)
    
    type: aws:servicecatalog:Product
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ProductArgs
    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 ProductArgs
    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 ProductArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ProductArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ProductArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Product 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 Product resource accepts the following input properties:

    Owner string

    Owner of the product.

    ProvisioningArtifactParameters ProductProvisioningArtifactParameters

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    Type string

    Type of product. See AWS Docs for valid list of values.

    The following arguments are optional:

    AcceptLanguage string

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    Description string

    Description of the product.

    Distributor string

    Distributor (i.e., vendor) of the product.

    Name string

    Name of the product.

    SupportDescription string

    Support information about the product.

    SupportEmail string

    Contact email for product support.

    SupportUrl string

    Contact URL for product support.

    Tags Dictionary<string, string>

    Tags to apply to the product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    Owner string

    Owner of the product.

    ProvisioningArtifactParameters ProductProvisioningArtifactParametersArgs

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    Type string

    Type of product. See AWS Docs for valid list of values.

    The following arguments are optional:

    AcceptLanguage string

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    Description string

    Description of the product.

    Distributor string

    Distributor (i.e., vendor) of the product.

    Name string

    Name of the product.

    SupportDescription string

    Support information about the product.

    SupportEmail string

    Contact email for product support.

    SupportUrl string

    Contact URL for product support.

    Tags map[string]string

    Tags to apply to the product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    owner String

    Owner of the product.

    provisioningArtifactParameters ProductProvisioningArtifactParameters

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    type String

    Type of product. See AWS Docs for valid list of values.

    The following arguments are optional:

    acceptLanguage String

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    description String

    Description of the product.

    distributor String

    Distributor (i.e., vendor) of the product.

    name String

    Name of the product.

    supportDescription String

    Support information about the product.

    supportEmail String

    Contact email for product support.

    supportUrl String

    Contact URL for product support.

    tags Map<String,String>

    Tags to apply to the product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    owner string

    Owner of the product.

    provisioningArtifactParameters ProductProvisioningArtifactParameters

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    type string

    Type of product. See AWS Docs for valid list of values.

    The following arguments are optional:

    acceptLanguage string

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    description string

    Description of the product.

    distributor string

    Distributor (i.e., vendor) of the product.

    name string

    Name of the product.

    supportDescription string

    Support information about the product.

    supportEmail string

    Contact email for product support.

    supportUrl string

    Contact URL for product support.

    tags {[key: string]: string}

    Tags to apply to the product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    owner str

    Owner of the product.

    provisioning_artifact_parameters ProductProvisioningArtifactParametersArgs

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    type str

    Type of product. See AWS Docs for valid list of values.

    The following arguments are optional:

    accept_language str

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    description str

    Description of the product.

    distributor str

    Distributor (i.e., vendor) of the product.

    name str

    Name of the product.

    support_description str

    Support information about the product.

    support_email str

    Contact email for product support.

    support_url str

    Contact URL for product support.

    tags Mapping[str, str]

    Tags to apply to the product. If configured with a provider default_tags configuration block present, tags with matching keys will overwrite those defined at the provider-level.

    owner String

    Owner of the product.

    provisioningArtifactParameters Property Map

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    type String

    Type of product. See AWS Docs for valid list of values.

    The following arguments are optional:

    acceptLanguage String

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    description String

    Description of the product.

    distributor String

    Distributor (i.e., vendor) of the product.

    name String

    Name of the product.

    supportDescription String

    Support information about the product.

    supportEmail String

    Contact email for product support.

    supportUrl String

    Contact URL for product support.

    tags Map<String>

    Tags to apply to the 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 Product resource produces the following output properties:

    Arn string

    ARN of the product.

    CreatedTime string

    Time when the product was created.

    HasDefaultPath bool

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    Id string

    The provider-assigned unique ID for this managed resource.

    Status string

    Status of the product.

    TagsAll Dictionary<string, string>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    Arn string

    ARN of the product.

    CreatedTime string

    Time when the product was created.

    HasDefaultPath bool

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    Id string

    The provider-assigned unique ID for this managed resource.

    Status string

    Status of the product.

    TagsAll map[string]string

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn String

    ARN of the product.

    createdTime String

    Time when the product was created.

    hasDefaultPath Boolean

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    id String

    The provider-assigned unique ID for this managed resource.

    status String

    Status of the product.

    tagsAll Map<String,String>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn string

    ARN of the product.

    createdTime string

    Time when the product was created.

    hasDefaultPath boolean

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    id string

    The provider-assigned unique ID for this managed resource.

    status string

    Status of the product.

    tagsAll {[key: string]: string}

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn str

    ARN of the product.

    created_time str

    Time when the product was created.

    has_default_path bool

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    id str

    The provider-assigned unique ID for this managed resource.

    status str

    Status of the product.

    tags_all Mapping[str, str]

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    arn String

    ARN of the product.

    createdTime String

    Time when the product was created.

    hasDefaultPath Boolean

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    id String

    The provider-assigned unique ID for this managed resource.

    status String

    Status of the product.

    tagsAll Map<String>

    A map of tags assigned to the resource, including those inherited from the provider default_tags configuration block.

    Deprecated:

    Please use tags instead.

    Look up Existing Product Resource

    Get an existing Product 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?: ProductState, opts?: CustomResourceOptions): Product
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            accept_language: Optional[str] = None,
            arn: Optional[str] = None,
            created_time: Optional[str] = None,
            description: Optional[str] = None,
            distributor: Optional[str] = None,
            has_default_path: Optional[bool] = None,
            name: Optional[str] = None,
            owner: Optional[str] = None,
            provisioning_artifact_parameters: Optional[ProductProvisioningArtifactParametersArgs] = None,
            status: Optional[str] = None,
            support_description: Optional[str] = None,
            support_email: Optional[str] = None,
            support_url: Optional[str] = None,
            tags: Optional[Mapping[str, str]] = None,
            tags_all: Optional[Mapping[str, str]] = None,
            type: Optional[str] = None) -> Product
    func GetProduct(ctx *Context, name string, id IDInput, state *ProductState, opts ...ResourceOption) (*Product, error)
    public static Product Get(string name, Input<string> id, ProductState? state, CustomResourceOptions? opts = null)
    public static Product get(String name, Output<String> id, ProductState 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 product.

    CreatedTime string

    Time when the product was created.

    Description string

    Description of the product.

    Distributor string

    Distributor (i.e., vendor) of the product.

    HasDefaultPath bool

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    Name string

    Name of the product.

    Owner string

    Owner of the product.

    ProvisioningArtifactParameters ProductProvisioningArtifactParameters

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    Status string

    Status of the product.

    SupportDescription string

    Support information about the product.

    SupportEmail string

    Contact email for product support.

    SupportUrl string

    Contact URL for product support.

    Tags Dictionary<string, string>

    Tags to apply to the 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>

    A 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 product. See AWS Docs for valid list of values.

    The following arguments are optional:

    AcceptLanguage string

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    Arn string

    ARN of the product.

    CreatedTime string

    Time when the product was created.

    Description string

    Description of the product.

    Distributor string

    Distributor (i.e., vendor) of the product.

    HasDefaultPath bool

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    Name string

    Name of the product.

    Owner string

    Owner of the product.

    ProvisioningArtifactParameters ProductProvisioningArtifactParametersArgs

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    Status string

    Status of the product.

    SupportDescription string

    Support information about the product.

    SupportEmail string

    Contact email for product support.

    SupportUrl string

    Contact URL for product support.

    Tags map[string]string

    Tags to apply to the 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

    A 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 product. See AWS Docs for valid list of values.

    The following arguments are optional:

    acceptLanguage String

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    arn String

    ARN of the product.

    createdTime String

    Time when the product was created.

    description String

    Description of the product.

    distributor String

    Distributor (i.e., vendor) of the product.

    hasDefaultPath Boolean

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    name String

    Name of the product.

    owner String

    Owner of the product.

    provisioningArtifactParameters ProductProvisioningArtifactParameters

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    status String

    Status of the product.

    supportDescription String

    Support information about the product.

    supportEmail String

    Contact email for product support.

    supportUrl String

    Contact URL for product support.

    tags Map<String,String>

    Tags to apply to the 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>

    A 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 product. See AWS Docs for valid list of values.

    The following arguments are optional:

    acceptLanguage string

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    arn string

    ARN of the product.

    createdTime string

    Time when the product was created.

    description string

    Description of the product.

    distributor string

    Distributor (i.e., vendor) of the product.

    hasDefaultPath boolean

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    name string

    Name of the product.

    owner string

    Owner of the product.

    provisioningArtifactParameters ProductProvisioningArtifactParameters

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    status string

    Status of the product.

    supportDescription string

    Support information about the product.

    supportEmail string

    Contact email for product support.

    supportUrl string

    Contact URL for product support.

    tags {[key: string]: string}

    Tags to apply to the 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}

    A 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 product. See AWS Docs for valid list of values.

    The following arguments are optional:

    accept_language str

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    arn str

    ARN of the product.

    created_time str

    Time when the product was created.

    description str

    Description of the product.

    distributor str

    Distributor (i.e., vendor) of the product.

    has_default_path bool

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    name str

    Name of the product.

    owner str

    Owner of the product.

    provisioning_artifact_parameters ProductProvisioningArtifactParametersArgs

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    status str

    Status of the product.

    support_description str

    Support information about the product.

    support_email str

    Contact email for product support.

    support_url str

    Contact URL for product support.

    tags Mapping[str, str]

    Tags to apply to the 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]

    A 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 product. See AWS Docs for valid list of values.

    The following arguments are optional:

    acceptLanguage String

    Language code. Valid values: en (English), jp (Japanese), zh (Chinese). Default value is en.

    arn String

    ARN of the product.

    createdTime String

    Time when the product was created.

    description String

    Description of the product.

    distributor String

    Distributor (i.e., vendor) of the product.

    hasDefaultPath Boolean

    Whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

    name String

    Name of the product.

    owner String

    Owner of the product.

    provisioningArtifactParameters Property Map

    Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.

    status String

    Status of the product.

    supportDescription String

    Support information about the product.

    supportEmail String

    Contact email for product support.

    supportUrl String

    Contact URL for product support.

    tags Map<String>

    Tags to apply to the 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>

    A 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 product. See AWS Docs for valid list of values.

    The following arguments are optional:

    Supporting Types

    ProductProvisioningArtifactParameters, ProductProvisioningArtifactParametersArgs

    Description string

    Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.

    DisableTemplateValidation bool

    Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.

    Name string

    Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.

    TemplatePhysicalId string

    Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].

    TemplateUrl string

    Template source as URL of the CloudFormation template in Amazon S3.

    Type string

    Type of provisioning artifact. See AWS Docs for valid list of values.

    Description string

    Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.

    DisableTemplateValidation bool

    Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.

    Name string

    Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.

    TemplatePhysicalId string

    Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].

    TemplateUrl string

    Template source as URL of the CloudFormation template in Amazon S3.

    Type string

    Type of provisioning artifact. See AWS Docs for valid list of values.

    description String

    Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.

    disableTemplateValidation Boolean

    Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.

    name String

    Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.

    templatePhysicalId String

    Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].

    templateUrl String

    Template source as URL of the CloudFormation template in Amazon S3.

    type String

    Type of provisioning artifact. See AWS Docs for valid list of values.

    description string

    Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.

    disableTemplateValidation boolean

    Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.

    name string

    Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.

    templatePhysicalId string

    Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].

    templateUrl string

    Template source as URL of the CloudFormation template in Amazon S3.

    type string

    Type of provisioning artifact. See AWS Docs for valid list of values.

    description str

    Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.

    disable_template_validation bool

    Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.

    name str

    Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.

    template_physical_id str

    Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].

    template_url str

    Template source as URL of the CloudFormation template in Amazon S3.

    type str

    Type of provisioning artifact. See AWS Docs for valid list of values.

    description String

    Description of the provisioning artifact (i.e., version), including how it differs from the previous provisioning artifact.

    disableTemplateValidation Boolean

    Whether AWS Service Catalog stops validating the specified provisioning artifact template even if it is invalid.

    name String

    Name of the provisioning artifact (for example, v1, v2beta). No spaces are allowed.

    templatePhysicalId String

    Template source as the physical ID of the resource that contains the template. Currently only supports CloudFormation stack ARN. Specify the physical ID as arn:[partition]:cloudformation:[region]:[account ID]:stack/[stack name]/[resource ID].

    templateUrl String

    Template source as URL of the CloudFormation template in Amazon S3.

    type String

    Type of provisioning artifact. See AWS Docs for valid list of values.

    Import

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

     $ pulumi import aws:servicecatalog/product:Product example prod-dnigbtea24ste
    

    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.2.1 published on Friday, Sep 22, 2023 by Pulumi