@awboost/cfn-resource-types 0.1.105 → 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.
@@ -6,7 +6,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
6
6
  */
7
7
  export type AmazonMQBrokerProperties = {
8
8
  AuthenticationStrategy?: string;
9
- AutoMinorVersionUpgrade: boolean;
9
+ AutoMinorVersionUpgrade?: boolean;
10
10
  BrokerName: string;
11
11
  Configuration?: ConfigurationId;
12
12
  DataReplicationMode?: string;
@@ -14,7 +14,7 @@ export type AmazonMQBrokerProperties = {
14
14
  DeploymentMode: string;
15
15
  EncryptionOptions?: EncryptionOptions;
16
16
  EngineType: string;
17
- EngineVersion: string;
17
+ EngineVersion?: string;
18
18
  HostInstanceType: string;
19
19
  LdapServerMetadata?: LdapServerMetadata;
20
20
  Logs?: LogList;
@@ -9,7 +9,7 @@ export type AmazonMQConfigurationProperties = {
9
9
  Data: string;
10
10
  Description?: string;
11
11
  EngineType: string;
12
- EngineVersion: string;
12
+ EngineVersion?: string;
13
13
  Name: string;
14
14
  Tags?: TagsEntry[];
15
15
  };
@@ -5,21 +5,20 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html}
6
6
  */
7
7
  export type CloudWatchDashboardProperties = {
8
+ /**
9
+ * The detailed information about the dashboard in JSON format, including the widgets to include and their location on the dashboard
10
+ */
8
11
  DashboardBody: string;
12
+ /**
13
+ * The name of the dashboard. The name must be between 1 and 255 characters. If you do not specify a name, one will be generated automatically.
14
+ */
9
15
  DashboardName?: string;
10
16
  };
11
- /**
12
- * Attribute type definition for `AWS::CloudWatch::Dashboard`.
13
- * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html#aws-resource-cloudwatch-dashboard-return-values}
14
- */
15
- export type CloudWatchDashboardAttributes = {
16
- Id: string;
17
- };
18
17
  /**
19
18
  * Resource Type definition for AWS::CloudWatch::Dashboard
20
19
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudwatch-dashboard.html}
21
20
  */
22
- export declare class CloudWatchDashboard extends $Resource<"AWS::CloudWatch::Dashboard", CloudWatchDashboardProperties, CloudWatchDashboardAttributes> {
21
+ export declare class CloudWatchDashboard extends $Resource<"AWS::CloudWatch::Dashboard", CloudWatchDashboardProperties, Record<string, never>> {
23
22
  static readonly Type = "AWS::CloudWatch::Dashboard";
24
23
  constructor(logicalId: string, properties: CloudWatchDashboardProperties, options?: $ResourceOptions);
25
24
  }
@@ -14,7 +14,7 @@ export type LogsDeliveryProperties = {
14
14
  * The ARN of the delivery destination that is associated with this delivery.
15
15
  * @minLength `16`
16
16
  * @maxLength `2048`
17
- * @pattern `^arn:(aws[a-zA-Z-]*)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
17
+ * @pattern `[\w#+=/:,.@-]*\*?`
18
18
  */
19
19
  DeliveryDestinationArn: string;
20
20
  /**
@@ -38,7 +38,7 @@ export type LogsDeliveryAttributes = {
38
38
  * The Amazon Resource Name (ARN) that uniquely identifies this delivery.
39
39
  * @minLength `16`
40
40
  * @maxLength `2048`
41
- * @pattern `^arn:(aws[a-zA-Z-]*)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
41
+ * @pattern `[\w#+=/:,.@-]*\*?`
42
42
  */
43
43
  Arn: string;
44
44
  /**
@@ -20,7 +20,7 @@ export type LogsDeliveryDestinationProperties = {
20
20
  * The ARN of the AWS resource that will receive the logs.
21
21
  * @minLength `16`
22
22
  * @maxLength `2048`
23
- * @pattern `^arn:(aws[a-zA-Z-]*)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
23
+ * @pattern `[\w#+=/:,.@-]*\*?`
24
24
  */
25
25
  DestinationResourceArn?: string;
26
26
  /**
@@ -44,7 +44,7 @@ export type LogsDeliveryDestinationAttributes = {
44
44
  * The Amazon Resource Name (ARN) that uniquely identifies this delivery destination.
45
45
  * @minLength `16`
46
46
  * @maxLength `2048`
47
- * @pattern `^arn:(aws[a-zA-Z-]*)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
47
+ * @pattern `[\w#+=/:,.@-]*\*?`
48
48
  */
49
49
  Arn: string;
50
50
  /**
@@ -26,7 +26,7 @@ export type LogsDeliverySourceProperties = {
26
26
  * The ARN of the resource that will be sending the logs.
27
27
  * @minLength `16`
28
28
  * @maxLength `2048`
29
- * @pattern `^arn:(aws[a-zA-Z-]*)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
29
+ * @pattern `[\w#+=/:,.@-]*\*?`
30
30
  */
31
31
  ResourceArn?: string;
32
32
  /**
@@ -43,7 +43,7 @@ export type LogsDeliverySourceAttributes = {
43
43
  * The Amazon Resource Name (ARN) that uniquely identifies this delivery source.
44
44
  * @minLength `16`
45
45
  * @maxLength `2048`
46
- * @pattern `^arn:(aws[a-zA-Z-]*)?:[A-Za-z0-9][A-Za-z0-9_/.-]{0,62}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9_/.-]{0,63}:[A-Za-z0-9][A-Za-z0-9:_/+=,@.-]{0,1023}$`
46
+ * @pattern `[\w#+=/:,.@-]*\*?`
47
47
  */
48
48
  Arn: string;
49
49
  /**
@@ -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.105",
3
+ "version": "0.1.107",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },