@awboost/cfn-resource-types 0.1.106 → 0.1.107

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.
@@ -25,6 +25,7 @@ export type QBusinessApplicationProperties = {
25
25
  * @pattern `^arn:(aws|aws-us-gov|aws-cn|aws-iso|aws-iso-b):sso:::instance/(sso)?ins-[a-zA-Z0-9-.]{16}$`
26
26
  */
27
27
  IdentityCenterInstanceArn?: string;
28
+ QAppsConfiguration?: QAppsConfiguration;
28
29
  /**
29
30
  * @minLength `0`
30
31
  * @maxLength `1284`
@@ -92,6 +93,18 @@ export type EncryptionConfiguration = {
92
93
  */
93
94
  KmsKeyId?: string;
94
95
  };
96
+ /**
97
+ * Type definition for `AWS::QBusiness::Application.QAppsConfiguration`.
98
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-qappsconfiguration.html}
99
+ */
100
+ export type QAppsConfiguration = {
101
+ QAppsControlMode: QAppsControlMode;
102
+ };
103
+ /**
104
+ * Type definition for `AWS::QBusiness::Application.QAppsControlMode`.
105
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-qappscontrolmode.html}
106
+ */
107
+ export type QAppsControlMode = "ENABLED" | "DISABLED";
95
108
  /**
96
109
  * Type definition for `AWS::QBusiness::Application.Tag`.
97
110
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-qbusiness-application-tag.html}
@@ -26,6 +26,7 @@ export type Route53RecoveryControlClusterAttributes = {
26
26
  * The Amazon Resource Name (ARN) of the cluster.
27
27
  * @minLength `1`
28
28
  * @maxLength `2048`
29
+ * @pattern `^[A-Za-z0-9:\/_-]*$`
29
30
  */
30
31
  ClusterArn: string;
31
32
  /**
@@ -8,6 +8,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
8
8
  export type Route53RecoveryControlControlPanelProperties = {
9
9
  /**
10
10
  * Cluster to associate with the Control Panel
11
+ * @pattern `^[A-Za-z0-9:\/_-]*$`
11
12
  */
12
13
  ClusterArn?: string;
13
14
  /**
@@ -28,6 +29,7 @@ export type Route53RecoveryControlControlPanelProperties = {
28
29
  export type Route53RecoveryControlControlPanelAttributes = {
29
30
  /**
30
31
  * The Amazon Resource Name (ARN) of the cluster.
32
+ * @pattern `^[A-Za-z0-9:\/_-]*$`
31
33
  */
32
34
  ControlPanelArn: string;
33
35
  /**
@@ -8,10 +8,12 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
8
8
  export type Route53RecoveryControlRoutingControlProperties = {
9
9
  /**
10
10
  * Arn associated with Control Panel
11
+ * @pattern `^[A-Za-z0-9:\/_-]*$`
11
12
  */
12
13
  ClusterArn?: string;
13
14
  /**
14
15
  * The Amazon Resource Name (ARN) of the control panel.
16
+ * @pattern `^[A-Za-z0-9:\/_-]*$`
15
17
  */
16
18
  ControlPanelArn?: string;
17
19
  /**
@@ -28,6 +30,7 @@ export type Route53RecoveryControlRoutingControlProperties = {
28
30
  export type Route53RecoveryControlRoutingControlAttributes = {
29
31
  /**
30
32
  * The Amazon Resource Name (ARN) of the routing control.
33
+ * @pattern `^[A-Za-z0-9:\/_-]*$`
31
34
  */
32
35
  RoutingControlArn: string;
33
36
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.106",
3
+ "version": "0.1.107",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },