interface TagUpdateConstraintOptions
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.Servicecatalog.TagUpdateConstraintOptions | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#TagUpdateConstraintOptions | 
|  Java | software.amazon.awscdk.services.servicecatalog.TagUpdateConstraintOptions | 
|  Python | aws_cdk.aws_servicecatalog.TagUpdateConstraintOptions | 
|  TypeScript (source) | aws-cdk-lib»aws_servicecatalog»TagUpdateConstraintOptions | 
Properties for ResourceUpdateConstraint.
Example
declare const portfolio: servicecatalog.Portfolio;
declare const product: servicecatalog.CloudFormationProduct;
// to disable tag updates:
portfolio.constrainTagUpdates(product, {
  allow: false,
});
Properties
| Name | Type | Description | 
|---|---|---|
| allow? | boolean | Toggle for if users should be allowed to change/update tags on provisioned products. | 
| description? | string | The description of the constraint. | 
| message | Message | The language code. | 
allow?
Type:
boolean
(optional, default: true)
Toggle for if users should be allowed to change/update tags on provisioned products.
description?
Type:
string
(optional, default: No description provided)
The description of the constraint.
messageLanguage?
Type:
Message
(optional, default: English)
The language code.
Configures the language for error messages from service catalog.
