AWS::ServiceCatalog::CloudFormationProductResource Type definition for AWS::ServiceCatalog::CloudFormationProduct
13 configurable properties. 2 required. Click a row to see details.
| Property | Type | Flags |
|---|---|---|
Name | string | Required |
Owner | string | Required |
AcceptLanguage | string | |
Description | string | |
Distributor | string | |
ProductType | string | |
ProvisioningArtifactParameters | Array<ProvisioningArtifactProperties> | |
ReplaceProvisioningArtifacts | boolean | |
SourceConnection | SourceConnection | |
SupportDescription | string | |
SupportEmail | string | |
SupportUrl | string | |
Tags | Array<Tag> |
Values returned after the resource is created. Access these with Fn::GetAtt.
| Attribute | Type | Description |
|---|---|---|
Id | string | - |
ProductName | string | - |
ProvisioningArtifactIds | string | - |
ProvisioningArtifactNames | string | - |
A minimal template with required properties and common optional ones.
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::ServiceCatalog::CloudFormationProduct
Resources:
MyResource:
Type: AWS::ServiceCatalog::CloudFormationProduct
Properties:
Owner: "value"
Name: "my-name"
Tags:
- Key: Environment
Value: Production
Description: !Ref "AWS::StackName"Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.
Subscribe to NewsletterId