@awboost/cfn-resource-types 0.1.444 → 0.1.445
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,14 +1,29 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
|
|
3
3
|
/**
|
|
4
|
-
* Resource
|
|
4
|
+
* Resource type definition for AWS::ServiceCatalog::ResourceUpdateConstraint
|
|
5
5
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html}
|
|
6
6
|
*/
|
|
7
7
|
export type ServiceCatalogResourceUpdateConstraintProperties = {
|
|
8
|
+
/**
|
|
9
|
+
* The language code
|
|
10
|
+
*/
|
|
8
11
|
AcceptLanguage?: string;
|
|
12
|
+
/**
|
|
13
|
+
* The description of the constraint
|
|
14
|
+
*/
|
|
9
15
|
Description?: string;
|
|
16
|
+
/**
|
|
17
|
+
* The portfolio identifier
|
|
18
|
+
*/
|
|
10
19
|
PortfolioId: string;
|
|
20
|
+
/**
|
|
21
|
+
* The product identifier
|
|
22
|
+
*/
|
|
11
23
|
ProductId: string;
|
|
24
|
+
/**
|
|
25
|
+
* ALLOWED or NOT_ALLOWED, to permit or prevent changes to the tags on provisioned instances of the specified portfolio / product combination
|
|
26
|
+
*/
|
|
12
27
|
TagUpdateOnProvisionedProduct: string;
|
|
13
28
|
};
|
|
14
29
|
/**
|
|
@@ -16,10 +31,13 @@ export type ServiceCatalogResourceUpdateConstraintProperties = {
|
|
|
16
31
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html#aws-resource-servicecatalog-resourceupdateconstraint-return-values}
|
|
17
32
|
*/
|
|
18
33
|
export type ServiceCatalogResourceUpdateConstraintAttributes = {
|
|
34
|
+
/**
|
|
35
|
+
* Unique identifier for the constraint
|
|
36
|
+
*/
|
|
19
37
|
Id: string;
|
|
20
38
|
};
|
|
21
39
|
/**
|
|
22
|
-
* Resource
|
|
40
|
+
* Resource type definition for AWS::ServiceCatalog::ResourceUpdateConstraint
|
|
23
41
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html}
|
|
24
42
|
*/
|
|
25
43
|
export declare class ServiceCatalogResourceUpdateConstraint extends $Resource<"AWS::ServiceCatalog::ResourceUpdateConstraint", ServiceCatalogResourceUpdateConstraintProperties, ServiceCatalogResourceUpdateConstraintAttributes> {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
|
|
2
2
|
/**
|
|
3
|
-
* Resource
|
|
3
|
+
* Resource type definition for AWS::ServiceCatalog::ResourceUpdateConstraint
|
|
4
4
|
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-resourceupdateconstraint.html}
|
|
5
5
|
*/
|
|
6
6
|
export class ServiceCatalogResourceUpdateConstraint extends $Resource {
|