interface CfnResourceUpdateConstraintProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Servicecatalog.CfnResourceUpdateConstraintProps |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsservicecatalog#CfnResourceUpdateConstraintProps |
Java | software.amazon.awscdk.services.servicecatalog.CfnResourceUpdateConstraintProps |
Python | aws_cdk.aws_servicecatalog.CfnResourceUpdateConstraintProps |
TypeScript | aws-cdk-lib » aws_servicecatalog » CfnResourceUpdateConstraintProps |
Properties for defining a CfnResourceUpdateConstraint.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_servicecatalog as servicecatalog } from 'aws-cdk-lib';
const cfnResourceUpdateConstraintProps: servicecatalog.CfnResourceUpdateConstraintProps = {
portfolioId: 'portfolioId',
productId: 'productId',
tagUpdateOnProvisionedProduct: 'tagUpdateOnProvisionedProduct',
// the properties below are optional
acceptLanguage: 'acceptLanguage',
description: 'description',
};
Properties
| Name | Type | Description |
|---|---|---|
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| tag | string | If set to ALLOWED , lets users change tags in a CloudFormationProvisionedProduct resource. |
| accept | string | The language code. |
| description? | string | The description of the constraint. |
portfolioId
Type:
string
The portfolio identifier.
productId
Type:
string
The product identifier.
tagUpdateOnProvisionedProduct
Type:
string
If set to ALLOWED , lets users change tags in a CloudFormationProvisionedProduct resource.
If set to NOT_ALLOWED , prevents users from changing tags in a CloudFormationProvisionedProduct resource.
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
description?
Type:
string
(optional)
The description of the constraint.

.NET
Go
Java
Python
TypeScript