Namespace Amazon.CDK.AWS.Servicecatalog
AWS Service Catalog Construct Library
AWS Service Catalog enables organizations to create and manage catalogs of products for their end users that are approved for use on AWS.
Table Of Contents
The aws-cdk-lib/aws-servicecatalog
package contains resources that enable users to automate governance and management of their AWS resources at scale.
using Amazon.CDK.AWS.Servicecatalog;
Portfolio
AWS Service Catalog portfolios allow administrators to organize, manage, and distribute cloud resources for their end users.
Using the CDK, a new portfolio can be created with the Portfolio
construct:
new Portfolio(this, "Portfolio", new PortfolioProps {
DisplayName = "MyPortfolio",
ProviderName = "MyTeam"
});
You can also specify optional metadata properties such as description
and messageLanguage
to help better catalog and manage your portfolios.
new Portfolio(this, "Portfolio", new PortfolioProps {
DisplayName = "MyFirstPortfolio",
ProviderName = "SCAdmin",
Description = "Portfolio for a project",
MessageLanguage = MessageLanguage.EN
});
Read more at Creating and Managing Portfolios.
To reference an existing portfolio into your CDK application, use the Portfolio.fromPortfolioArn()
factory method:
var portfolio = Portfolio.FromPortfolioArn(this, "ReferencedPortfolio", "arn:aws:catalog:region:account-id:portfolio/port-abcdefghi");
Granting access to a portfolio
You can grant access to and manage the IAM
users, groups, or roles that have access to the products within a portfolio.
Entities with granted access will be able to utilize the portfolios resources and products via the console or AWS CLI.
Once resources are deployed end users will be able to access them via the console or service catalog CLI.
Portfolio portfolio;
var user = new User(this, "User");
portfolio.GiveAccessToUser(user);
var role = new Role(this, "Role", new RoleProps {
AssumedBy = new AccountRootPrincipal()
});
portfolio.GiveAccessToRole(role);
var group = new Group(this, "Group");
portfolio.GiveAccessToGroup(group);
Sharing a portfolio with another AWS account
You can use account-to-account sharing to distribute a reference to your portfolio to other AWS accounts by passing the recipient account number. After the share is initiated, the recipient account can accept the share via CLI or console by importing the portfolio ID. Changes made to the shared portfolio will automatically propagate to recipients.
Portfolio portfolio;
portfolio.ShareWithAccount("012345678901");
Product
Products are version friendly infrastructure-as-code templates that admins create and add to portfolios for end users to provision and create AWS resources.
Service Catalog supports products from AWS Marketplace or ones defined by a CloudFormation template.
The CDK currently only supports adding products of type CloudFormation.
Using the CDK, a new Product can be created with the CloudFormationProduct
construct.
You can use CloudFormationTemplate.fromUrl
to create a Product from a CloudFormation template directly from a URL that points to the template in S3, GitHub, or CodeCommit:
var product = new CloudFormationProduct(this, "MyFirstProduct", new CloudFormationProductProps {
ProductName = "My Product",
Owner = "Product Owner",
ProductVersions = new [] { new CloudFormationProductVersion {
ProductVersionName = "v1",
CloudFormationTemplate = CloudFormationTemplate.FromUrl("https://raw.githubusercontent.com/awslabs/aws-cloudformation-templates/master/aws/services/ServiceCatalog/Product.yaml")
} }
});
Creating a product from a local asset
A CloudFormationProduct
can also be created by using a CloudFormation template held locally on disk using Assets.
Assets are files that are uploaded to an S3 Bucket before deployment.
CloudFormationTemplate.fromAsset
can be utilized to create a Product by passing the path to a local template file on your disk:
using Path;
var product = new CloudFormationProduct(this, "Product", new CloudFormationProductProps {
ProductName = "My Product",
Owner = "Product Owner",
ProductVersions = new [] { new CloudFormationProductVersion {
ProductVersionName = "v1",
CloudFormationTemplate = CloudFormationTemplate.FromUrl("https://raw.githubusercontent.com/awslabs/aws-cloudformation-templates/master/aws/services/ServiceCatalog/Product.yaml")
}, new CloudFormationProductVersion {
ProductVersionName = "v2",
CloudFormationTemplate = CloudFormationTemplate.FromAsset(Join(__dirname, "development-environment.template.json"))
} }
});
Creating a product from a stack
You can create a Service Catalog CloudFormationProduct
entirely defined with CDK code using a service catalog ProductStack
.
A separate child stack for your product is created and you can add resources like you would for any other CDK stack,
such as an S3 Bucket, IAM roles, and EC2 instances. This stack is passed in as a product version to your
product. This will not create a separate CloudFormation stack during deployment.
using Amazon.CDK;
class S3BucketProduct : ProductStack
{
public S3BucketProduct(Construct scope, string id) : base(scope, id)
{
new Bucket(this, "BucketProduct");
}
}
var product = new CloudFormationProduct(this, "Product", new CloudFormationProductProps {
ProductName = "My Product",
Owner = "Product Owner",
ProductVersions = new [] { new CloudFormationProductVersion {
ProductVersionName = "v1",
CloudFormationTemplate = CloudFormationTemplate.FromProductStack(new S3BucketProduct(this, "S3BucketProduct"))
} }
});
Using Assets in your Product Stack
You can reference assets in a Product Stack. For example, we can add a handler to a Lambda function or a S3 Asset directly from a local asset file. In this case, you must provide a S3 Bucket with a bucketName to store your assets.
using Amazon.CDK.AWS.Lambda;
using Amazon.CDK;
using Amazon.CDK.AWS.S3;
class LambdaProduct : ProductStack
{
public LambdaProduct(Construct scope, string id, ProductStackProps props) : base(scope, id, props)
{
new Function(this, "LambdaProduct", new FunctionProps {
Runtime = Runtime.PYTHON_3_9,
Code = Code.FromAsset("./assets"),
Handler = "index.handler"
});
}
}
var userDefinedBucket = new Bucket(this, "UserDefinedBucket", new BucketProps {
BucketName = "amzn-s3-demo-bucket"
});
var product = new CloudFormationProduct(this, "Product", new CloudFormationProductProps {
ProductName = "My Product",
Owner = "Product Owner",
ProductVersions = new [] { new CloudFormationProductVersion {
ProductVersionName = "v1",
CloudFormationTemplate = CloudFormationTemplate.FromProductStack(new LambdaProduct(this, "LambdaFunctionProduct", new ProductStackProps {
AssetBucket = userDefinedBucket
}))
} }
});
When a product containing an asset is shared with a spoke account, the corresponding asset bucket will automatically grant read permissions to the spoke account. Note, it is not recommended using a referenced bucket as permissions cannot be added from CDK. In this case, it will be your responsibility to grant read permissions for the asset bucket to the spoke account. If you want to provide your own bucket policy or scope down your bucket policy further to only allow reads from a specific launch role, refer to the following example policy:
IBucket bucket;
new PolicyStatement(new PolicyStatementProps {
Actions = new [] { "s3:GetObject*", "s3:GetBucket*", "s3:List*" },
Effect = Effect.ALLOW,
Resources = new [] { bucket.BucketArn, bucket.ArnForObjects("*") },
Principals = new [] {
new ArnPrincipal(Stack.Of(this).FormatArn(new ArnComponents {
Service = "iam",
Region = "",
Account = "111111111111",
Resource = "role",
ResourceName = "MyLaunchRole"
})) },
Conditions = new Dictionary<string, object> {
{ "ForAnyValue:StringEquals", new Dictionary<string, string[]> {
{ "aws:CalledVia", new [] { "cloudformation.amazonaws.com" } }
} },
{ "Bool", new Dictionary<string, boolean> {
{ "aws:ViaAWSService", true }
} }
}
});
Furthermore, in order for a spoke account to provision a product with an asset, the role launching the product needs permissions to read from the asset bucket. We recommend you utilize a launch role with permissions to read from the asset bucket. For example your launch role would need to include at least the following policy:
{
"Statement": [
{
"Effect": "Allow",
"Action": [
"s3:GetObject"
],
"Resource": "*"
}
]
}
Please refer to Set launch role for additional details about launch roles. See Launch Constraint documentation to understand the permissions that launch roles need.
Creating a Product from a stack with a history of previous versions
The default behavior of Service Catalog is to overwrite each product version upon deployment. This applies to Product Stacks as well, where only the latest changes to your Product Stack will be deployed. To keep a history of the revisions of a ProductStack available in Service Catalog, you would need to define a ProductStack for each historical copy.
You can instead create a ProductStackHistory
to maintain snapshots of all previous versions.
The ProductStackHistory
can be created by passing the base productStack
,
a currentVersionName
for your current version and a locked
boolean.
The locked
boolean which when set to true will prevent your currentVersionName
from being overwritten when there is an existing snapshot for that version.
class S3BucketProduct : ProductStack
{
public S3BucketProduct(Construct scope, string id) : base(scope, id)
{
new Bucket(this, "BucketProduct");
}
}
var productStackHistory = new ProductStackHistory(this, "ProductStackHistory", new ProductStackHistoryProps {
ProductStack = new S3BucketProduct(this, "S3BucketProduct"),
CurrentVersionName = "v1",
CurrentVersionLocked = true
});
We can deploy the current version v1
by using productStackHistory.currentVersion()
class S3BucketProduct : ProductStack
{
public S3BucketProduct(Construct scope, string id) : base(scope, id)
{
new Bucket(this, "BucketProductV2");
}
}
var productStackHistory = new ProductStackHistory(this, "ProductStackHistory", new ProductStackHistoryProps {
ProductStack = new S3BucketProduct(this, "S3BucketProduct"),
CurrentVersionName = "v2",
CurrentVersionLocked = true
});
var product = new CloudFormationProduct(this, "MyFirstProduct", new CloudFormationProductProps {
ProductName = "My Product",
Owner = "Product Owner",
ProductVersions = new [] { productStackHistory.CurrentVersion() }
});
Using ProductStackHistory
all deployed templates for the ProductStack will be written to disk,
so that they will still be available in the future as the definition of the ProductStack
subclass changes over time.
It is very important that you commit these old versions to source control as these versions
determine whether a version has already been deployed and can also be deployed themselves.
After using ProductStackHistory
to deploy version v1
of your ProductStack
, we
make changes to the ProductStack
and update the currentVersionName
to v2
.
We still want our v1
version to still be deployed, so we reference it by calling productStackHistory.versionFromSnapshot('v1')
.
class S3BucketProduct : ProductStack
{
public S3BucketProduct(Construct scope, string id) : base(scope, id)
{
new Bucket(this, "BucketProductV2");
}
}
var productStackHistory = new ProductStackHistory(this, "ProductStackHistory", new ProductStackHistoryProps {
ProductStack = new S3BucketProduct(this, "S3BucketProduct"),
CurrentVersionName = "v2",
CurrentVersionLocked = true
});
var product = new CloudFormationProduct(this, "MyFirstProduct", new CloudFormationProductProps {
ProductName = "My Product",
Owner = "Product Owner",
ProductVersions = new [] { productStackHistory.CurrentVersion(), productStackHistory.VersionFromSnapshot("v1") }
});
Adding a product to a portfolio
You add products to a portfolio to organize and distribute your catalog at scale. Adding a product to a portfolio creates an association, and the product will become visible within the portfolio side in both the Service Catalog console and AWS CLI. You can add a product to multiple portfolios depending on your organizational structure and how you would like to group access to products.
Portfolio portfolio;
CloudFormationProduct product;
portfolio.AddProduct(product);
Tag Options
TagOptions allow administrators to easily manage tags on provisioned products by providing a template for a selection of tags that end users choose from. TagOptions are created by specifying a tag key with a set of allowed values and can be associated with both portfolios and products. When launching a product, both the TagOptions associated with the product and the containing portfolio are made available.
At the moment, TagOptions can only be deactivated in the console.
Portfolio portfolio;
CloudFormationProduct product;
var tagOptionsForPortfolio = new TagOptions(this, "OrgTagOptions", new TagOptionsProps {
AllowedValuesForTags = new Dictionary<string, string[]> {
{ "Group", new [] { "finance", "engineering", "marketing", "research" } },
{ "CostCenter", new [] { "01", "02", "03" } }
}
});
portfolio.AssociateTagOptions(tagOptionsForPortfolio);
var tagOptionsForProduct = new TagOptions(this, "ProductTagOptions", new TagOptionsProps {
AllowedValuesForTags = new Dictionary<string, string[]> {
{ "Environment", new [] { "dev", "alpha", "prod" } }
}
});
product.AssociateTagOptions(tagOptionsForProduct);
Constraints
Constraints are governance gestures that you place on product-portfolio associations that allow you to manage minimal launch permissions, notifications, and other optional actions that end users can perform on products. Using the CDK, if you do not explicitly associate a product to a portfolio and add a constraint, it will automatically add an association for you.
There are rules around how constraints are applied to portfolio-product associations.
For example, you can only have a single "launch role" constraint applied to a portfolio-product association.
If a misconfigured constraint is added, synth
will fail with an error message.
Read more at Service Catalog Constraints.
Tag update constraint
Tag update constraints allow or disallow end users to update tags on resources associated with an AWS Service Catalog product upon provisioning. By default, if a Tag Update constraint is not configured, tag updating is not permitted. If tag updating is allowed, then new tags associated with the product or portfolio will be applied to provisioned resources during a provisioned product update.
Portfolio portfolio;
CloudFormationProduct product;
portfolio.AddProduct(product);
portfolio.ConstrainTagUpdates(product);
If you want to disable this feature later on, you can update it by setting the "allow" parameter to false
:
Portfolio portfolio;
CloudFormationProduct product;
// to disable tag updates:
portfolio.ConstrainTagUpdates(product, new TagUpdateConstraintOptions {
Allow = false
});
Notify on stack events
Allows users to subscribe an AWS SNS
topic to a provisioned product's CloudFormation stack events.
When an end user provisions a product it creates a CloudFormation stack that notifies the subscribed topic on creation, edit, and delete events.
An individual SNS
topic may only have a single subscription to any given portfolio-product association.
using Amazon.CDK.AWS.SNS;
Portfolio portfolio;
CloudFormationProduct product;
var topic1 = new Topic(this, "Topic1");
portfolio.NotifyOnStackEvents(product, topic1);
var topic2 = new Topic(this, "Topic2");
portfolio.NotifyOnStackEvents(product, topic2, new CommonConstraintOptions {
Description = "description for topic2"
});
CloudFormation template parameters constraint
CloudFormation template parameter constraints allow you to configure the provisioning parameters that are available to end users when they launch a product.
Template constraint rules consist of one or more assertions that define the default and/or allowable values for a product’s provisioning parameters.
You can configure multiple parameter constraints to govern the different provisioning parameters within your products.
For example, a rule might define the EC2
instance types that users can choose from when launching a product that includes one or more EC2
instances.
Parameter rules have an optional condition
field that allow for rule application to consider conditional evaluations.
If a condition
is specified, all assertions will be applied if the condition evaluates to true.
For information on rule-specific intrinsic functions to define rule conditions and assertions,
see AWS Rule Functions.
using Amazon.CDK;
Portfolio portfolio;
CloudFormationProduct product;
portfolio.ConstrainCloudFormationParameters(product, new CloudFormationRuleConstraintOptions {
Rule = new TemplateRule {
RuleName = "testInstanceType",
Condition = Fn.ConditionEquals(Fn.Ref("Environment"), "test"),
Assertions = new [] { new TemplateRuleAssertion {
Assert = Fn.ConditionContains(new [] { "t2.micro", "t2.small" }, Fn.Ref("InstanceType")),
Description = "For test environment, the instance type should be small"
} }
}
});
Set launch role
Allows you to configure a specific IAM
role that Service Catalog assumes on behalf of the end user when launching a product.
By setting a launch role constraint, you can maintain least permissions for an end user when launching a product.
For example, a launch role can grant permissions for specific resource creation like an S3
bucket that the user.
The launch role must be assumed by the Service Catalog principal.
You can only have one launch role set for a portfolio-product association,
and you cannot set a launch role on a product that already has a StackSets deployment configured.
Portfolio portfolio;
CloudFormationProduct product;
var launchRole = new Role(this, "LaunchRole", new RoleProps {
AssumedBy = new ServicePrincipal("servicecatalog.amazonaws.com")
});
portfolio.SetLaunchRole(product, launchRole);
You can also set the launch role using just the name of a role which is locally deployed in end user accounts. This is useful for when roles and users are separately managed outside of the CDK. The given role must exist in both the account that creates the launch role constraint, as well as in any end user accounts that wish to provision a product with the launch role.
You can do this by passing in the role with an explicitly set name:
Portfolio portfolio;
CloudFormationProduct product;
var launchRole = new Role(this, "LaunchRole", new RoleProps {
RoleName = "MyRole",
AssumedBy = new ServicePrincipal("servicecatalog.amazonaws.com")
});
portfolio.SetLocalLaunchRole(product, launchRole);
Or you can simply pass in a role name and CDK will create a role with that name that trusts service catalog in the account:
Portfolio portfolio;
CloudFormationProduct product;
var roleName = "MyRole";
var launchRole = portfolio.SetLocalLaunchRoleName(product, roleName);
See Launch Constraint documentation to understand the permissions that launch roles need.
Deploy with StackSets
A StackSets deployment constraint allows you to configure product deployment options using
AWS CloudFormation StackSets.
You can specify one or more accounts and regions into which stack instances will launch when the product is provisioned.
There is an additional field allowStackSetInstanceOperations
that sets ability for end users to create, edit, or delete the stacks created by the StackSet.
By default, this field is set to false
.
When launching a StackSets product, end users can select from the list of accounts and regions configured in the constraint to determine where the Stack Instances will deploy and the order of deployment.
You can only define one StackSets deployment configuration per portfolio-product association,
and you cannot both set a launch role and StackSets deployment configuration for an assocation.
Portfolio portfolio;
CloudFormationProduct product;
var adminRole = new Role(this, "AdminRole", new RoleProps {
AssumedBy = new AccountRootPrincipal()
});
portfolio.DeployWithStackSets(product, new StackSetsConstraintOptions {
Accounts = new [] { "012345678901", "012345678902", "012345678903" },
Regions = new [] { "us-west-1", "us-east-1", "us-west-2", "us-east-1" },
AdminRole = adminRole,
ExecutionRoleName = "SCStackSetExecutionRole", // Name of role deployed in end users accounts.
AllowStackSetInstanceOperations = true
});
Classes
CfnAcceptedPortfolioShare | Accepts an offer to share the specified portfolio. |
CfnAcceptedPortfolioShareProps | Properties for defining a |
CfnCloudFormationProduct | Specifies a product. |
CfnCloudFormationProduct.CodeStarParametersProperty | The subtype containing details about the Codestar connection |
CfnCloudFormationProduct.ConnectionParametersProperty | Provides connection details. |
CfnCloudFormationProduct.ProvisioningArtifactPropertiesProperty | Information about a provisioning artifact (also known as a version) for a product. |
CfnCloudFormationProduct.SourceConnectionProperty | A top level |
CfnCloudFormationProductProps | Properties for defining a |
CfnCloudFormationProvisionedProduct | Provisions the specified product. |
CfnCloudFormationProvisionedProduct.ProvisioningParameterProperty | Information about a parameter used to provision a product. |
CfnCloudFormationProvisionedProduct.ProvisioningPreferencesProperty | The user-defined preferences that will be applied when updating a provisioned product. |
CfnCloudFormationProvisionedProductProps | Properties for defining a |
CfnLaunchNotificationConstraint | Specifies a notification constraint. |
CfnLaunchNotificationConstraintProps | Properties for defining a |
CfnLaunchRoleConstraint | Specifies a launch constraint. |
CfnLaunchRoleConstraintProps | Properties for defining a |
CfnLaunchTemplateConstraint | Specifies a template constraint. |
CfnLaunchTemplateConstraintProps | Properties for defining a |
CfnPortfolio | Specifies a portfolio. |
CfnPortfolioPrincipalAssociation | Associates the specified principal ARN with the specified portfolio. |
CfnPortfolioPrincipalAssociationProps | Properties for defining a |
CfnPortfolioProductAssociation | Associates the specified product with the specified portfolio. |
CfnPortfolioProductAssociationProps | Properties for defining a |
CfnPortfolioProps | Properties for defining a |
CfnPortfolioShare | Shares the specified portfolio with the specified account. |
CfnPortfolioShareProps | Properties for defining a |
CfnResourceUpdateConstraint | Specifies a |
CfnResourceUpdateConstraintProps | Properties for defining a |
CfnServiceAction | Creates a self-service action. |
CfnServiceAction.DefinitionParameterProperty | The list of parameters in JSON format. |
CfnServiceActionAssociation | A self-service action association consisting of the Action ID, the Product ID, and the Provisioning Artifact ID. |
CfnServiceActionAssociationProps | Properties for defining a |
CfnServiceActionProps | Properties for defining a |
CfnStackSetConstraint | Specifies a StackSet constraint. |
CfnStackSetConstraintProps | Properties for defining a |
CfnTagOption | Specifies a TagOption. |
CfnTagOptionAssociation | Associate the specified TagOption with the specified portfolio or product. |
CfnTagOptionAssociationProps | Properties for defining a |
CfnTagOptionProps | Properties for defining a |
CloudFormationProduct | A Service Catalog Cloudformation Product. |
CloudFormationProductProps | Properties for a Cloudformation Product. |
CloudFormationProductVersion | Properties of product version (also known as a provisioning artifact). |
CloudFormationRuleConstraintOptions | Properties for provisoning rule constraint. |
CloudFormationTemplate | Represents the Product Provisioning Artifact Template. |
CloudFormationTemplateConfig | Result of binding |
CommonConstraintOptions | Properties for governance mechanisms and constraints. |
MessageLanguage | The language code. |
Portfolio | A Service Catalog portfolio. |
PortfolioProps | Properties for a Portfolio. |
PortfolioShareOptions | Options for portfolio share. |
Product | Abstract class for Service Catalog Product. |
ProductStack | A Service Catalog product stack, which is similar in form to a Cloudformation nested stack. |
ProductStackHistory | A Construct that contains a Service Catalog product stack with its previous deployments maintained. |
ProductStackHistoryProps | Properties for a ProductStackHistory. |
ProductStackProps | Product stack props. |
StackSetsConstraintOptions | Properties for deploying with Stackset, which creates a StackSet constraint. |
TagOptions | Defines a set of TagOptions, which are a list of key-value pairs managed in AWS Service Catalog. |
TagOptionsProps | Properties for TagOptions. |
TagUpdateConstraintOptions | Properties for ResourceUpdateConstraint. |
TemplateRule | Defines the provisioning template constraints. |
TemplateRuleAssertion | An assertion within a template rule, defined by intrinsic functions. |
Interfaces
CfnCloudFormationProduct.ICodeStarParametersProperty | The subtype containing details about the Codestar connection |
CfnCloudFormationProduct.IConnectionParametersProperty | Provides connection details. |
CfnCloudFormationProduct.IProvisioningArtifactPropertiesProperty | Information about a provisioning artifact (also known as a version) for a product. |
CfnCloudFormationProduct.ISourceConnectionProperty | A top level |
CfnCloudFormationProvisionedProduct.IProvisioningParameterProperty | Information about a parameter used to provision a product. |
CfnCloudFormationProvisionedProduct.IProvisioningPreferencesProperty | The user-defined preferences that will be applied when updating a provisioned product. |
CfnServiceAction.IDefinitionParameterProperty | The list of parameters in JSON format. |
ICfnAcceptedPortfolioShareProps | Properties for defining a |
ICfnCloudFormationProductProps | Properties for defining a |
ICfnCloudFormationProvisionedProductProps | Properties for defining a |
ICfnLaunchNotificationConstraintProps | Properties for defining a |
ICfnLaunchRoleConstraintProps | Properties for defining a |
ICfnLaunchTemplateConstraintProps | Properties for defining a |
ICfnPortfolioPrincipalAssociationProps | Properties for defining a |
ICfnPortfolioProductAssociationProps | Properties for defining a |
ICfnPortfolioProps | Properties for defining a |
ICfnPortfolioShareProps | Properties for defining a |
ICfnResourceUpdateConstraintProps | Properties for defining a |
ICfnServiceActionAssociationProps | Properties for defining a |
ICfnServiceActionProps | Properties for defining a |
ICfnStackSetConstraintProps | Properties for defining a |
ICfnTagOptionAssociationProps | Properties for defining a |
ICfnTagOptionProps | Properties for defining a |
ICloudFormationProductProps | Properties for a Cloudformation Product. |
ICloudFormationProductVersion | Properties of product version (also known as a provisioning artifact). |
ICloudFormationRuleConstraintOptions | Properties for provisoning rule constraint. |
ICloudFormationTemplateConfig | Result of binding |
ICommonConstraintOptions | Properties for governance mechanisms and constraints. |
IPortfolio | A Service Catalog portfolio. |
IPortfolioProps | Properties for a Portfolio. |
IPortfolioShareOptions | Options for portfolio share. |
IProduct | A Service Catalog product, currently only supports type CloudFormationProduct. |
IProductStackHistoryProps | Properties for a ProductStackHistory. |
IProductStackProps | Product stack props. |
IStackSetsConstraintOptions | Properties for deploying with Stackset, which creates a StackSet constraint. |
ITagOptionsProps | Properties for TagOptions. |
ITagUpdateConstraintOptions | Properties for ResourceUpdateConstraint. |
ITemplateRule | Defines the provisioning template constraints. |
ITemplateRuleAssertion | An assertion within a template rule, defined by intrinsic functions. |