Try AWS Native preview for resources not in the classic version.
aws.servicecatalog.Product
Explore with Pulumi AI
Try AWS Native preview for resources not in the classic version.
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 thetemplate_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.
- Provisioning
Artifact ProductParameters Provisioning Artifact Parameters 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:
- Accept
Language string Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- Description string
Description of the product.
- Distributor string
Distributor (i.e., vendor) of the product.
- Name string
Name of the product.
- Support
Description string Support information about the product.
- Support
Email string Contact email for product support.
- Support
Url string Contact URL for product support.
- 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.
- Provisioning
Artifact ProductParameters Provisioning Artifact Parameters Args 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:
- Accept
Language string Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- Description string
Description of the product.
- Distributor string
Distributor (i.e., vendor) of the product.
- Name string
Name of the product.
- Support
Description string Support information about the product.
- Support
Email string Contact email for product support.
- Support
Url string Contact URL for product support.
- 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.
- provisioning
Artifact ProductParameters Provisioning Artifact Parameters 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:
- accept
Language String Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- description String
Description of the product.
- distributor String
Distributor (i.e., vendor) of the product.
- name String
Name of the product.
- support
Description String Support information about the product.
- support
Email String Contact email for product support.
- support
Url String Contact URL for product support.
- 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.
- provisioning
Artifact ProductParameters Provisioning Artifact Parameters 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:
- accept
Language string Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- description string
Description of the product.
- distributor string
Distributor (i.e., vendor) of the product.
- name string
Name of the product.
- support
Description string Support information about the product.
- support
Email string Contact email for product support.
- support
Url string Contact URL for product support.
- {[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_ Productparameters Provisioning Artifact Parameters Args 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 isen
.- 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.
- 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.
- provisioning
Artifact Property MapParameters 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:
- accept
Language String Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- description String
Description of the product.
- distributor String
Distributor (i.e., vendor) of the product.
- name String
Name of the product.
- support
Description String Support information about the product.
- support
Email String Contact email for product support.
- support
Url String Contact URL for product support.
- 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.
- Created
Time string Time when the product was created.
- Has
Default boolPath 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 withDescribeProvisioningParameters
.- Id string
The provider-assigned unique ID for this managed resource.
- Status string
Status of the product.
- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.
- Arn string
ARN of the product.
- Created
Time string Time when the product was created.
- Has
Default boolPath 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 withDescribeProvisioningParameters
.- Id string
The provider-assigned unique ID for this managed resource.
- Status string
Status of the product.
- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.
- arn String
ARN of the product.
- created
Time String Time when the product was created.
- has
Default BooleanPath 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 withDescribeProvisioningParameters
.- id String
The provider-assigned unique ID for this managed resource.
- status String
Status of the product.
- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.
- arn string
ARN of the product.
- created
Time string Time when the product was created.
- has
Default booleanPath 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 withDescribeProvisioningParameters
.- id string
The provider-assigned unique ID for this managed resource.
- status string
Status of the product.
- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.
- arn str
ARN of the product.
- created_
time str Time when the product was created.
- has_
default_ boolpath 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 withDescribeProvisioningParameters
.- id str
The provider-assigned unique ID for this managed resource.
- status str
Status of the product.
- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.
- arn String
ARN of the product.
- created
Time String Time when the product was created.
- has
Default BooleanPath 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 withDescribeProvisioningParameters
.- id String
The provider-assigned unique ID for this managed resource.
- status String
Status of the product.
- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.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.
- Accept
Language string Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- Arn string
ARN of the product.
- Created
Time string Time when the product was created.
- Description string
Description of the product.
- Distributor string
Distributor (i.e., vendor) of the product.
- Has
Default boolPath 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 withDescribeProvisioningParameters
.- Name string
Name of the product.
- Owner string
Owner of the product.
- Provisioning
Artifact ProductParameters Provisioning Artifact Parameters Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.
- Status string
Status of the product.
- Support
Description string Support information about the product.
- Support
Email string Contact email for product support.
- Support
Url string Contact URL for product support.
- 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.- Dictionary<string, string>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.- Type string
Type of product. See AWS Docs for valid list of values.
The following arguments are optional:
- Accept
Language string Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- Arn string
ARN of the product.
- Created
Time string Time when the product was created.
- Description string
Description of the product.
- Distributor string
Distributor (i.e., vendor) of the product.
- Has
Default boolPath 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 withDescribeProvisioningParameters
.- Name string
Name of the product.
- Owner string
Owner of the product.
- Provisioning
Artifact ProductParameters Provisioning Artifact Parameters Args Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.
- Status string
Status of the product.
- Support
Description string Support information about the product.
- Support
Email string Contact email for product support.
- Support
Url string Contact URL for product support.
- 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.- map[string]string
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.- Type string
Type of product. See AWS Docs for valid list of values.
The following arguments are optional:
- accept
Language String Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- arn String
ARN of the product.
- created
Time String Time when the product was created.
- description String
Description of the product.
- distributor String
Distributor (i.e., vendor) of the product.
- has
Default BooleanPath 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 withDescribeProvisioningParameters
.- name String
Name of the product.
- owner String
Owner of the product.
- provisioning
Artifact ProductParameters Provisioning Artifact Parameters Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.
- status String
Status of the product.
- support
Description String Support information about the product.
- support
Email String Contact email for product support.
- support
Url String Contact URL for product support.
- 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.- Map<String,String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.- type String
Type of product. See AWS Docs for valid list of values.
The following arguments are optional:
- accept
Language string Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- arn string
ARN of the product.
- created
Time string Time when the product was created.
- description string
Description of the product.
- distributor string
Distributor (i.e., vendor) of the product.
- has
Default booleanPath 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 withDescribeProvisioningParameters
.- name string
Name of the product.
- owner string
Owner of the product.
- provisioning
Artifact ProductParameters Provisioning Artifact Parameters Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.
- status string
Status of the product.
- support
Description string Support information about the product.
- support
Email string Contact email for product support.
- support
Url string Contact URL for product support.
- {[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.- {[key: string]: string}
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.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 isen
.- 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_ boolpath 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 withDescribeProvisioningParameters
.- name str
Name of the product.
- owner str
Owner of the product.
- provisioning_
artifact_ Productparameters Provisioning Artifact Parameters Args 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.
- 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.- Mapping[str, str]
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.Please use
tags
instead.- type str
Type of product. See AWS Docs for valid list of values.
The following arguments are optional:
- accept
Language String Language code. Valid values:
en
(English),jp
(Japanese),zh
(Chinese). Default value isen
.- arn String
ARN of the product.
- created
Time String Time when the product was created.
- description String
Description of the product.
- distributor String
Distributor (i.e., vendor) of the product.
- has
Default BooleanPath 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 withDescribeProvisioningParameters
.- name String
Name of the product.
- owner String
Owner of the product.
- provisioning
Artifact Property MapParameters Configuration block for provisioning artifact (i.e., version) parameters. Detailed below.
- status String
Status of the product.
- support
Description String Support information about the product.
- support
Email String Contact email for product support.
- support
Url String Contact URL for product support.
- 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.- Map<String>
A map of tags assigned to the resource, including those inherited from the provider
default_tags
configuration block.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.
- Disable
Template boolValidation 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.- Template
Physical stringId 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 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.
- Disable
Template boolValidation 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.- Template
Physical stringId 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 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.
- disable
Template BooleanValidation 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.- template
Physical StringId 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 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.
- disable
Template booleanValidation 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.- template
Physical stringId 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 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_ boolvalidation 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_ strid 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.
- disable
Template BooleanValidation 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.- template
Physical StringId 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 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.
Try AWS Native preview for resources not in the classic version.