@awboost/cfn-resource-types 0.1.193 → 0.1.194

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.
@@ -45,6 +45,25 @@ export type AccessAnalyzerAnalyzerAttributes = {
45
45
  */
46
46
  Arn: string;
47
47
  };
48
+ /**
49
+ * Type definition for `AWS::AccessAnalyzer::Analyzer.AnalysisRuleCriteria`.
50
+ * The criteria for an analysis rule for an analyzer.
51
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-accessanalyzer-analyzer-analysisrulecriteria.html}
52
+ */
53
+ export type AnalysisRuleCriteria = {
54
+ /**
55
+ * A list of AWS account IDs to apply to the analysis rule criteria. The accounts cannot include the organization analyzer owner account. Account IDs can only be applied to the analysis rule criteria for organization-level analyzers.
56
+ */
57
+ AccountIds?: string[];
58
+ /**
59
+ * An array of key-value pairs to match for your resources. You can use the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
60
+
61
+ For the tag key, you can specify a value that is 1 to 128 characters in length and cannot be prefixed with aws:.
62
+
63
+ For the tag value, you can specify a value that is 0 to 256 characters in length. If the specified tag value is 0 characters, the rule is applied to all principals with the specified tag key.
64
+ */
65
+ ResourceTags?: Tag[][];
66
+ };
48
67
  /**
49
68
  * Type definition for `AWS::AccessAnalyzer::Analyzer.ArchiveRule`.
50
69
  * An Access Analyzer archive rule. Archive rules automatically archive new findings that meet the criteria you define when you create the rule.
@@ -84,11 +103,11 @@ export type Tag = {
84
103
  */
85
104
  Key: string;
86
105
  /**
87
- * The value for the tag. You can specify a value that is 1 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
88
- * @minLength `1`
106
+ * The value for the tag. You can specify a value that is 0 to 255 Unicode characters in length and cannot be prefixed with aws:. You can use any of the following characters: the set of Unicode letters, digits, whitespace, _, ., /, =, +, and -.
107
+ * @minLength `0`
89
108
  * @maxLength `255`
90
109
  */
91
- Value: string;
110
+ Value?: string;
92
111
  };
93
112
  /**
94
113
  * Type definition for `AWS::AccessAnalyzer::Analyzer.UnusedAccessConfiguration`.
@@ -97,9 +116,18 @@ export type Tag = {
97
116
  */
98
117
  export type UnusedAccessConfiguration = {
99
118
  /**
100
- * The specified access age in days for which to generate findings for unused access. For example, if you specify 90 days, the analyzer will generate findings for IAM entities within the accounts of the selected organization for any access that hasn't been used in 90 or more days since the analyzer's last scan. You can choose a value between 1 and 180 days.
119
+ * Contains information about rules for the analyzer.
120
+ */
121
+ AnalysisRule?: {
122
+ /**
123
+ * A list of rules for the analyzer containing criteria to exclude from analysis. Entities that meet the rule criteria will not generate findings.
124
+ */
125
+ Exclusions?: AnalysisRuleCriteria[];
126
+ };
127
+ /**
128
+ * The specified access age in days for which to generate findings for unused access. For example, if you specify 90 days, the analyzer will generate findings for IAM entities within the accounts of the selected organization for any access that hasn't been used in 90 or more days since the analyzer's last scan. You can choose a value between 1 and 365 days.
101
129
  * @min `1`
102
- * @max `180`
130
+ * @max `365`
103
131
  */
104
132
  UnusedAccessAge?: number;
105
133
  };
@@ -48,7 +48,7 @@ export type CloudFormationPublicTypeVersionAttributes = {
48
48
  * The publisher id assigned by CloudFormation for publishing in this region.
49
49
  * @minLength `1`
50
50
  * @maxLength `40`
51
- * @pattern `[0-9a-zA-Z]{40}`
51
+ * @pattern `[0-9a-zA-Z-]{40}`
52
52
  */
53
53
  PublisherId: string;
54
54
  /**
@@ -29,7 +29,7 @@ export type CloudFormationPublisherAttributes = {
29
29
  * The publisher id assigned by CloudFormation for publishing in this region.
30
30
  * @minLength `1`
31
31
  * @maxLength `40`
32
- * @pattern `[0-9a-zA-Z]{40}`
32
+ * @pattern `[0-9a-zA-Z-]{40}`
33
33
  */
34
34
  PublisherId: string;
35
35
  /**
@@ -34,7 +34,7 @@ export type CloudFormationTypeActivationProperties = {
34
34
  * The publisher id assigned by CloudFormation for publishing in this region.
35
35
  * @minLength `1`
36
36
  * @maxLength `40`
37
- * @pattern `[0-9a-zA-Z]{40}`
37
+ * @pattern `[0-9a-zA-Z-]{40}`
38
38
  */
39
39
  PublisherId?: string;
40
40
  /**
@@ -38,6 +38,10 @@ export type EKSNodegroupProperties = {
38
38
  * An object representing a node group's launch template specification.
39
39
  */
40
40
  LaunchTemplate?: LaunchTemplateSpecification;
41
+ /**
42
+ * The node auto repair configuration for node group.
43
+ */
44
+ NodeRepairConfig?: NodeRepairConfig;
41
45
  /**
42
46
  * The Amazon Resource Name (ARN) of the IAM role to associate with your node group.
43
47
  */
@@ -107,6 +111,17 @@ export type LaunchTemplateSpecification = {
107
111
  */
108
112
  Version?: string;
109
113
  };
114
+ /**
115
+ * Type definition for `AWS::EKS::Nodegroup.NodeRepairConfig`.
116
+ * The node auto repair configuration for node group.
117
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-eks-nodegroup-noderepairconfig.html}
118
+ */
119
+ export type NodeRepairConfig = {
120
+ /**
121
+ * Set this value to true to enable node auto repair for the node group.
122
+ */
123
+ Enabled?: boolean;
124
+ };
110
125
  /**
111
126
  * Type definition for `AWS::EKS::Nodegroup.RemoteAccess`.
112
127
  * An object representing a remote access configuration specification for AWS EKS Nodegroup.
@@ -20,9 +20,9 @@ export type ElastiCacheUserProperties = {
20
20
  Type: "password" | "no-password-required" | "iam";
21
21
  };
22
22
  /**
23
- * Must be redis.
23
+ * The target cache engine for the user.
24
24
  */
25
- Engine: "redis";
25
+ Engine: "redis" | "valkey";
26
26
  /**
27
27
  * Indicates a password is not required for this user account.
28
28
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.193",
3
+ "version": "0.1.194",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },