aws.servicecatalog.Product
Explore with Pulumi AI
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
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";
const example = new aws.servicecatalog.Product("example", {
name: "example",
owner: "example-owner",
type: "CLOUD_FORMATION_TEMPLATE",
provisioningArtifactParameters: {
templateUrl: "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json",
},
tags: {
foo: "bar",
},
});
import pulumi
import pulumi_aws as aws
example = aws.servicecatalog.Product("example",
name="example",
owner="example-owner",
type="CLOUD_FORMATION_TEMPLATE",
provisioning_artifact_parameters={
"template_url": "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json",
},
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.NewProduct(ctx, "example", &servicecatalog.ProductArgs{
Name: pulumi.String("example"),
Owner: pulumi.String("example-owner"),
Type: pulumi.String("CLOUD_FORMATION_TEMPLATE"),
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"),
},
})
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.Product("example", new()
{
Name = "example",
Owner = "example-owner",
Type = "CLOUD_FORMATION_TEMPLATE",
ProvisioningArtifactParameters = new Aws.ServiceCatalog.Inputs.ProductProvisioningArtifactParametersArgs
{
TemplateUrl = "https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json",
},
Tags =
{
{ "foo", "bar" },
},
});
});
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()
.name("example")
.owner("example-owner")
.type("CLOUD_FORMATION_TEMPLATE")
.provisioningArtifactParameters(ProductProvisioningArtifactParametersArgs.builder()
.templateUrl("https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json")
.build())
.tags(Map.of("foo", "bar"))
.build());
}
}
resources:
example:
type: aws:servicecatalog:Product
properties:
name: example
owner: example-owner
type: CLOUD_FORMATION_TEMPLATE
provisioningArtifactParameters:
templateUrl: https://s3.amazonaws.com/cf-templates-ozkq9d3hgiq2-us-east-1/temp1.json
tags:
foo: bar
Create Product Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Product(name: string, args: ProductArgs, opts?: CustomResourceOptions);
@overload
def Product(resource_name: str,
args: ProductArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Product(resource_name: str,
opts: Optional[ResourceOptions] = None,
owner: Optional[str] = None,
provisioning_artifact_parameters: Optional[ProductProvisioningArtifactParametersArgs] = None,
type: Optional[str] = None,
accept_language: Optional[str] = None,
description: Optional[str] = None,
distributor: Optional[str] = None,
name: Optional[str] = None,
support_description: Optional[str] = None,
support_email: Optional[str] = None,
support_url: Optional[str] = None,
tags: Optional[Mapping[str, str]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var productResource = new Aws.ServiceCatalog.Product("productResource", new()
{
Owner = "string",
ProvisioningArtifactParameters = new Aws.ServiceCatalog.Inputs.ProductProvisioningArtifactParametersArgs
{
Description = "string",
DisableTemplateValidation = false,
Name = "string",
TemplatePhysicalId = "string",
TemplateUrl = "string",
Type = "string",
},
Type = "string",
AcceptLanguage = "string",
Description = "string",
Distributor = "string",
Name = "string",
SupportDescription = "string",
SupportEmail = "string",
SupportUrl = "string",
Tags =
{
{ "string", "string" },
},
});
example, err := servicecatalog.NewProduct(ctx, "productResource", &servicecatalog.ProductArgs{
Owner: pulumi.String("string"),
ProvisioningArtifactParameters: &servicecatalog.ProductProvisioningArtifactParametersArgs{
Description: pulumi.String("string"),
DisableTemplateValidation: pulumi.Bool(false),
Name: pulumi.String("string"),
TemplatePhysicalId: pulumi.String("string"),
TemplateUrl: pulumi.String("string"),
Type: pulumi.String("string"),
},
Type: pulumi.String("string"),
AcceptLanguage: pulumi.String("string"),
Description: pulumi.String("string"),
Distributor: pulumi.String("string"),
Name: pulumi.String("string"),
SupportDescription: pulumi.String("string"),
SupportEmail: pulumi.String("string"),
SupportUrl: pulumi.String("string"),
Tags: pulumi.StringMap{
"string": pulumi.String("string"),
},
})
var productResource = new Product("productResource", ProductArgs.builder()
.owner("string")
.provisioningArtifactParameters(ProductProvisioningArtifactParametersArgs.builder()
.description("string")
.disableTemplateValidation(false)
.name("string")
.templatePhysicalId("string")
.templateUrl("string")
.type("string")
.build())
.type("string")
.acceptLanguage("string")
.description("string")
.distributor("string")
.name("string")
.supportDescription("string")
.supportEmail("string")
.supportUrl("string")
.tags(Map.of("string", "string"))
.build());
product_resource = aws.servicecatalog.Product("productResource",
owner="string",
provisioning_artifact_parameters={
"description": "string",
"disable_template_validation": False,
"name": "string",
"template_physical_id": "string",
"template_url": "string",
"type": "string",
},
type="string",
accept_language="string",
description="string",
distributor="string",
name="string",
support_description="string",
support_email="string",
support_url="string",
tags={
"string": "string",
})
const productResource = new aws.servicecatalog.Product("productResource", {
owner: "string",
provisioningArtifactParameters: {
description: "string",
disableTemplateValidation: false,
name: "string",
templatePhysicalId: "string",
templateUrl: "string",
type: "string",
},
type: "string",
acceptLanguage: "string",
description: "string",
distributor: "string",
name: "string",
supportDescription: "string",
supportEmail: "string",
supportUrl: "string",
tags: {
string: "string",
},
});
type: aws:servicecatalog:Product
properties:
acceptLanguage: string
description: string
distributor: string
name: string
owner: string
provisioningArtifactParameters:
description: string
disableTemplateValidation: false
name: string
templatePhysicalId: string
templateUrl: string
type: string
supportDescription: string
supportEmail: string
supportUrl: string
tags:
string: string
type: string
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
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
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. See
provisioning_artifact_parameters
Block for details. - 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. See
provisioning_artifact_parameters
Block for details. - 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. See
provisioning_artifact_parameters
Block for details. - 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. See
provisioning_artifact_parameters
Block for details. - 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. See
provisioning_artifact_parameters
Block for details. - 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. See
provisioning_artifact_parameters
Block for details. - 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.
- 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.
- 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.
- 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.
- 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.
- 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.
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. See
provisioning_artifact_parameters
Block for details. - 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. - 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. See
provisioning_artifact_parameters
Block for details. - 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. - 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. See
provisioning_artifact_parameters
Block for details. - 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. - 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. See
provisioning_artifact_parameters
Block for details. - 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. - 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. See
provisioning_artifact_parameters
Block for details. - 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. - 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. See
provisioning_artifact_parameters
Block for details. - 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. - 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
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.