@awboost/cfn-resource-types 0.1.332 → 0.1.333
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.
|
@@ -7,6 +7,7 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
|
|
|
7
7
|
export type EC2NetworkInsightsAnalysisProperties = {
|
|
8
8
|
AdditionalAccounts?: string[];
|
|
9
9
|
FilterInArns?: string[];
|
|
10
|
+
FilterOutArns?: string[];
|
|
10
11
|
NetworkInsightsPathId: string;
|
|
11
12
|
Tags?: Tag[];
|
|
12
13
|
};
|
|
@@ -34,7 +34,8 @@ export type RDSDBClusterProperties = {
|
|
|
34
34
|
AssociatedRoles?: DBClusterRole[];
|
|
35
35
|
/**
|
|
36
36
|
* Specifies whether minor engine upgrades are applied automatically to the DB cluster during the maintenance window. By default, minor engine upgrades are applied automatically.
|
|
37
|
-
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster
|
|
37
|
+
Valid for Cluster Type: Aurora DB clusters and Multi-AZ DB cluster.
|
|
38
|
+
For more information about automatic minor version upgrades, see [Automatically upgrading the minor engine version](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/USER_UpgradeDBInstance.Upgrading.html#USER_UpgradeDBInstance.Upgrading.AutoMinorVersionUpgrades).
|
|
38
39
|
*/
|
|
39
40
|
AutoMinorVersionUpgrade?: boolean;
|
|
40
41
|
/**
|
|
@@ -23,6 +23,7 @@ export type SSMContactsContactProperties = {
|
|
|
23
23
|
* The stages that an escalation plan or engagement plan engages contacts and contact methods in.
|
|
24
24
|
*/
|
|
25
25
|
Plan?: Stage[];
|
|
26
|
+
Tags?: Tag[];
|
|
26
27
|
/**
|
|
27
28
|
* Contact type, which specify type of contact. Currently supported values: “PERSONAL”, “SHARED”, “OTHER“.
|
|
28
29
|
*/
|
|
@@ -87,6 +88,25 @@ export type Stage = {
|
|
|
87
88
|
*/
|
|
88
89
|
Targets?: Targets[];
|
|
89
90
|
};
|
|
91
|
+
/**
|
|
92
|
+
* Type definition for `AWS::SSMContacts::Contact.Tag`.
|
|
93
|
+
* A key-value pair to associate with a resource.
|
|
94
|
+
* @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-ssmcontacts-contact-tag.html}
|
|
95
|
+
*/
|
|
96
|
+
export type Tag = {
|
|
97
|
+
/**
|
|
98
|
+
* The key name of the tag
|
|
99
|
+
* @minLength `1`
|
|
100
|
+
* @maxLength `128`
|
|
101
|
+
*/
|
|
102
|
+
Key: string;
|
|
103
|
+
/**
|
|
104
|
+
* The value for the tag.
|
|
105
|
+
* @minLength `0`
|
|
106
|
+
* @maxLength `256`
|
|
107
|
+
*/
|
|
108
|
+
Value: string;
|
|
109
|
+
};
|
|
90
110
|
/**
|
|
91
111
|
* Type definition for `AWS::SSMContacts::Contact.Targets`.
|
|
92
112
|
* The contacts or contact methods that the escalation plan or engagement plan is engaging.
|