interface CfnResourceUpdateConstraintMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.ServiceCatalog.CfnResourceUpdateConstraintMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsservicecatalog#CfnResourceUpdateConstraintMixinProps |
Java | software.amazon.awscdk.cfnpropertymixins.services.servicecatalog.CfnResourceUpdateConstraintMixinProps |
Python | aws_cdk.cfn_property_mixins.aws_servicecatalog.CfnResourceUpdateConstraintMixinProps |
TypeScript | @aws-cdk/cfn-property-mixins » aws_servicecatalog » CfnResourceUpdateConstraintMixinProps |
Properties for CfnResourceUpdateConstraintPropsMixin.
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/cfn-property-mixins';
const cfnResourceUpdateConstraintMixinProps: servicecatalog.CfnResourceUpdateConstraintMixinProps = {
acceptLanguage: 'acceptLanguage',
description: 'description',
portfolioId: 'portfolioId',
productId: 'productId',
tagUpdateOnProvisionedProduct: 'tagUpdateOnProvisionedProduct',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The language code. |
| description? | string | The description of the constraint. |
| portfolio | string | The portfolio identifier. |
| product | string | The product identifier. |
| tag | string | If set to ALLOWED , lets users change tags in a CloudFormationProvisionedProduct resource. |
acceptLanguage?
Type:
string
(optional)
The language code.
jp- Japanesezh- Chinese
description?
Type:
string
(optional)
The description of the constraint.
portfolioId?
Type:
string
(optional)
The portfolio identifier.
productId?
Type:
string
(optional)
The product identifier.
tagUpdateOnProvisionedProduct?
Type:
string
(optional)
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.

.NET
Go
Java
Python
TypeScript