@awboost/cfn-resource-types 0.1.104 → 0.1.106
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.
- package/lib/AWS-AmazonMQ-Broker.d.ts +2 -2
- package/lib/AWS-AmazonMQ-Configuration.d.ts +1 -1
- package/lib/AWS-CloudWatch-Dashboard.d.ts +7 -8
- package/lib/AWS-Logs-Delivery.d.ts +2 -2
- package/lib/AWS-Logs-DeliveryDestination.d.ts +2 -2
- package/lib/AWS-Logs-DeliverySource.d.ts +2 -2
- package/package.json +1 -1
|
@@ -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
|
|
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
|
|
17
|
+
EngineVersion?: string;
|
|
18
18
|
HostInstanceType: string;
|
|
19
19
|
LdapServerMetadata?: LdapServerMetadata;
|
|
20
20
|
Logs?: LogList;
|
|
@@ -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,
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
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
|
|
46
|
+
* @pattern `[\w#+=/:,.@-]*\*?`
|
|
47
47
|
*/
|
|
48
48
|
Arn: string;
|
|
49
49
|
/**
|