AWS::ServiceCatalog::ResourceUpdateConstraint - Amazon CloudFormation
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

AWS::ServiceCatalog::ResourceUpdateConstraint

Specifies a RESOURCE_UPDATE constraint.

Syntax

To declare this entity in your Amazon CloudFormation template, use the following syntax:

JSON

{ "Type" : "AWS::ServiceCatalog::ResourceUpdateConstraint", "Properties" : { "AcceptLanguage" : String, "Description" : String, "PortfolioId" : String, "ProductId" : String, "TagUpdateOnProvisionedProduct" : String } }

YAML

Type: AWS::ServiceCatalog::ResourceUpdateConstraint Properties: AcceptLanguage: String Description: String PortfolioId: String ProductId: String TagUpdateOnProvisionedProduct: String

Properties

AcceptLanguage

The language code.

  • jp - Japanese

  • zh - Chinese

Required: No

Type: String

Maximum: 100

Update requires: No interruption

Description

The description of the constraint.

Required: No

Type: String

Maximum: 2000

Update requires: No interruption

PortfolioId

The portfolio identifier.

Required: Yes

Type: String

Pattern: ^[a-zA-Z0-9_\-]*

Minimum: 1

Maximum: 100

Update requires: Replacement

ProductId

The product identifier.

Required: Yes

Type: String

Pattern: ^[a-zA-Z0-9_\-]*

Minimum: 1

Maximum: 100

Update requires: Replacement

TagUpdateOnProvisionedProduct

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.

Required: Yes

Type: String

Update requires: No interruption

Return values

Ref

When you pass the logical ID of this resource to the intrinsic Ref function, Ref returns the identifier of the constraint.

For more information about using the Ref function, see Ref.

Fn::GetAtt

Examples

Create a RESOURCE_UPDATE constraint

JSON

{ "Type" : "AWS::ServiceCatalog::ResourceUpdateConstraint", "Properties" : { "AcceptLanguage" : "en", "Description" : "Sample description", "PortfolioId" : "port-xxx", "ProductId" : "prod-xxx", "TagUpdateOnProvisionedProduct" : "ALLOWED" }

YAML

Type: 'AWS::ServiceCatalog::ResourceUpdateConstraint' Properties: Description: Sample description TagUpdateOnProvisionedProduct: 'ALLOWED' PortfolioId: port-xxx ProductId: prod-xxx`

See also