@awboost/cfn-resource-types 0.1.192 → 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
  };
@@ -5,6 +5,12 @@ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-
5
5
  * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-applicationsignals-servicelevelobjective.html}
6
6
  */
7
7
  export type ApplicationSignalsServiceLevelObjectiveProperties = {
8
+ /**
9
+ * Each object in this array defines the length of the look-back window used to calculate one burn rate metric for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO.
10
+ * @minLength `0`
11
+ * @maxLength `10`
12
+ */
13
+ BurnRateConfigurations?: BurnRateConfiguration[];
8
14
  /**
9
15
  * An optional description for this SLO. Default is 'No description'
10
16
  * @minLength `1`
@@ -60,6 +66,21 @@ export type ApplicationSignalsServiceLevelObjectiveAttributes = {
60
66
  */
61
67
  LastUpdatedTime: number;
62
68
  };
69
+ /**
70
+ * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.BurnRateConfiguration`.
71
+ * This object defines the length of the look-back window used to calculate one burn rate metric for this SLO. The burn rate measures how fast the service is consuming the error budget, relative to the attainment goal of the SLO. A burn rate of exactly 1 indicates that the SLO goal will be met exactly.
72
+ For example, if you specify 60 as the number of minutes in the look-back window, the burn rate is calculated as the following:
73
+ burn rate = error rate over the look-back window / (1 - attainment goal percentage)
74
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-applicationsignals-servicelevelobjective-burnrateconfiguration.html}
75
+ */
76
+ export type BurnRateConfiguration = {
77
+ /**
78
+ * The number of minutes to use as the look-back window.
79
+ * @min `1`
80
+ * @max `10080`
81
+ */
82
+ LookBackWindowMinutes: number;
83
+ };
63
84
  /**
64
85
  * Type definition for `AWS::ApplicationSignals::ServiceLevelObjective.CalendarInterval`.
65
86
  * If the interval for this service level objective is a calendar interval, this structure contains the interval specifications.
@@ -0,0 +1,195 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::CloudFormation::GuardHook`.
5
+ * This is a CloudFormation resource for activating the first-party AWS::Hooks::GuardHook.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html}
7
+ */
8
+ export type CloudFormationGuardHookProperties = {
9
+ /**
10
+ * The typename alias for the hook.
11
+ * @pattern `^[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
12
+ */
13
+ Alias: string;
14
+ /**
15
+ * The execution role ARN assumed by hooks to read Guard rules from S3 and write Guard outputs to S3.
16
+ * @maxLength `256`
17
+ * @pattern `arn:.+:iam::[0-9]{12}:role/.+`
18
+ */
19
+ ExecutionRole: string;
20
+ /**
21
+ * Attribute to specify CloudFormation behavior on hook failure.
22
+ */
23
+ FailureMode: "FAIL" | "WARN";
24
+ /**
25
+ * Attribute to specify which stacks this hook applies to or should get invoked for
26
+ */
27
+ HookStatus: "ENABLED" | "DISABLED";
28
+ /**
29
+ * S3 Bucket where the guard validate report will be uploaded to
30
+ */
31
+ LogBucket?: string;
32
+ Options?: {
33
+ /**
34
+ * S3 Source Location for the Guard files.
35
+ */
36
+ InputParams?: S3Location;
37
+ };
38
+ /**
39
+ * S3 Source Location for the Guard files.
40
+ */
41
+ RuleLocation: S3Location;
42
+ /**
43
+ * Filters to allow hooks to target specific stack attributes
44
+ */
45
+ StackFilters?: {
46
+ /**
47
+ * Attribute to specify the filtering behavior. ANY will make the Hook pass if one filter matches. ALL will make the Hook pass if all filters match
48
+ */
49
+ FilteringCriteria: "ALL" | "ANY";
50
+ /**
51
+ * List of stack names as filters
52
+ */
53
+ StackNames?: {
54
+ /**
55
+ * List of stack names that the hook is going to be excluded from
56
+ * @minLength `1`
57
+ * @maxLength `50`
58
+ */
59
+ Exclude?: string[];
60
+ /**
61
+ * List of stack names that the hook is going to target
62
+ * @minLength `1`
63
+ * @maxLength `50`
64
+ */
65
+ Include?: string[];
66
+ };
67
+ /**
68
+ * List of stack roles that are performing the stack operations.
69
+ */
70
+ StackRoles?: {
71
+ /**
72
+ * List of stack roles that the hook is going to be excluded from
73
+ * @minLength `1`
74
+ * @maxLength `50`
75
+ */
76
+ Exclude?: string[];
77
+ /**
78
+ * List of stack roles that the hook is going to target
79
+ * @minLength `1`
80
+ * @maxLength `50`
81
+ */
82
+ Include?: string[];
83
+ };
84
+ };
85
+ /**
86
+ * Attribute to specify which targets should invoke the hook
87
+ */
88
+ TargetFilters?: {
89
+ /**
90
+ * List of actions that the hook is going to target
91
+ * @minLength `1`
92
+ * @maxLength `50`
93
+ */
94
+ Actions?: Action[];
95
+ /**
96
+ * List of invocation points that the hook is going to target
97
+ * @minLength `1`
98
+ * @maxLength `50`
99
+ */
100
+ InvocationPoints?: InvocationPoint[];
101
+ /**
102
+ * List of type names that the hook is going to target
103
+ * @minLength `1`
104
+ * @maxLength `50`
105
+ */
106
+ TargetNames?: string[];
107
+ } | {
108
+ /**
109
+ * List of hook targets
110
+ * @minLength `1`
111
+ * @maxLength `50`
112
+ */
113
+ Targets: HookTarget[];
114
+ };
115
+ /**
116
+ * Which operations should this Hook run against? Resource changes, stacks or change sets.
117
+ */
118
+ TargetOperations: TargetOperation[];
119
+ };
120
+ /**
121
+ * Attribute type definition for `AWS::CloudFormation::GuardHook`.
122
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html#aws-resource-cloudformation-guardhook-return-values}
123
+ */
124
+ export type CloudFormationGuardHookAttributes = {
125
+ /**
126
+ * The Amazon Resource Name (ARN) of the activated hook
127
+ * @pattern `^arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/hook/.+$`
128
+ */
129
+ HookArn: string;
130
+ };
131
+ /**
132
+ * Type definition for `AWS::CloudFormation::GuardHook.Action`.
133
+ * Target actions are the type of operation hooks will be executed at.
134
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-action.html}
135
+ */
136
+ export type Action = "CREATE" | "UPDATE" | "DELETE";
137
+ /**
138
+ * Type definition for `AWS::CloudFormation::GuardHook.HookTarget`.
139
+ * Hook targets are the destination where hooks will be invoked against.
140
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-hooktarget.html}
141
+ */
142
+ export type HookTarget = {
143
+ /**
144
+ * Target actions are the type of operation hooks will be executed at.
145
+ */
146
+ Action: Action;
147
+ /**
148
+ * Invocation points are the point in provisioning workflow where hooks will be executed.
149
+ */
150
+ InvocationPoint: InvocationPoint;
151
+ /**
152
+ * Type name of hook target. Hook targets are the destination where hooks will be invoked against.
153
+ * @minLength `1`
154
+ * @maxLength `256`
155
+ * @pattern `^(?!.*\*\?).*$`
156
+ */
157
+ TargetName: string;
158
+ };
159
+ /**
160
+ * Type definition for `AWS::CloudFormation::GuardHook.InvocationPoint`.
161
+ * Invocation points are the point in provisioning workflow where hooks will be executed.
162
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-invocationpoint.html}
163
+ */
164
+ export type InvocationPoint = "PRE_PROVISION";
165
+ /**
166
+ * Type definition for `AWS::CloudFormation::GuardHook.S3Location`.
167
+ * S3 Source Location for the Guard files.
168
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-s3location.html}
169
+ */
170
+ export type S3Location = {
171
+ /**
172
+ * S3 uri of Guard files.
173
+ */
174
+ Uri: string;
175
+ /**
176
+ * S3 object version
177
+ */
178
+ VersionId?: string;
179
+ };
180
+ /**
181
+ * Type definition for `AWS::CloudFormation::GuardHook.TargetOperation`.
182
+ * Which operations should this Hook run against? Resource changes, stacks or change sets.
183
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-guardhook-targetoperation.html}
184
+ */
185
+ export type TargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET";
186
+ /**
187
+ * Resource type definition for `AWS::CloudFormation::GuardHook`.
188
+ * This is a CloudFormation resource for activating the first-party AWS::Hooks::GuardHook.
189
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html}
190
+ */
191
+ export declare class CloudFormationGuardHook extends $Resource<"AWS::CloudFormation::GuardHook", CloudFormationGuardHookProperties, CloudFormationGuardHookAttributes> {
192
+ static readonly Type = "AWS::CloudFormation::GuardHook";
193
+ constructor(logicalId: string, properties: CloudFormationGuardHookProperties, options?: $ResourceOptions);
194
+ }
195
+ //# sourceMappingURL=AWS-CloudFormation-GuardHook.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::CloudFormation::GuardHook`.
4
+ * This is a CloudFormation resource for activating the first-party AWS::Hooks::GuardHook.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-guardhook.html}
6
+ */
7
+ export class CloudFormationGuardHook extends $Resource {
8
+ static Type = "AWS::CloudFormation::GuardHook";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, CloudFormationGuardHook.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-CloudFormation-GuardHook.js.map
@@ -0,0 +1,173 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ import type { ResourceOptions as $ResourceOptions } from "@awboost/cfn-template-builder/template";
3
+ /**
4
+ * Resource type definition for `AWS::CloudFormation::LambdaHook`.
5
+ * This is a CloudFormation resource for the first-party AWS::Hooks::LambdaHook.
6
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-lambdahook.html}
7
+ */
8
+ export type CloudFormationLambdaHookProperties = {
9
+ /**
10
+ * The typename alias for the hook.
11
+ * @pattern `^[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}::[A-Za-z0-9]{2,64}$`
12
+ */
13
+ Alias: string;
14
+ /**
15
+ * The execution role ARN assumed by Hooks to invoke Lambda.
16
+ * @maxLength `256`
17
+ * @pattern `arn:.+:iam::[0-9]{12}:role/.+`
18
+ */
19
+ ExecutionRole: string;
20
+ /**
21
+ * Attribute to specify CloudFormation behavior on hook failure.
22
+ */
23
+ FailureMode: "FAIL" | "WARN";
24
+ /**
25
+ * Attribute to specify which stacks this hook applies to or should get invoked for
26
+ */
27
+ HookStatus: "ENABLED" | "DISABLED";
28
+ /**
29
+ * Amazon Resource Name (ARN), Partial ARN, name, version, or alias of the Lambda function to invoke with this hook.
30
+ * @minLength `1`
31
+ * @maxLength `170`
32
+ * @pattern `(arn:(aws[a-zA-Z-]*)?:lambda:)?([a-z]{2}(-gov)?(-iso([a-z])?)?-[a-z]+-\d{1}:)?(\d{12}:)?(function:)?([a-zA-Z0-9-_]+)(:(\$LATEST|[a-zA-Z0-9-_]+))?`
33
+ */
34
+ LambdaFunction: string;
35
+ /**
36
+ * Filters to allow hooks to target specific stack attributes
37
+ */
38
+ StackFilters?: {
39
+ /**
40
+ * Attribute to specify the filtering behavior. ANY will make the Hook pass if one filter matches. ALL will make the Hook pass if all filters match
41
+ */
42
+ FilteringCriteria: "ALL" | "ANY";
43
+ /**
44
+ * List of stack names as filters
45
+ */
46
+ StackNames?: {
47
+ /**
48
+ * List of stack names that the hook is going to be excluded from
49
+ * @minLength `1`
50
+ * @maxLength `50`
51
+ */
52
+ Exclude?: string[];
53
+ /**
54
+ * List of stack names that the hook is going to target
55
+ * @minLength `1`
56
+ * @maxLength `50`
57
+ */
58
+ Include?: string[];
59
+ };
60
+ /**
61
+ * List of stack roles that are performing the stack operations.
62
+ */
63
+ StackRoles?: {
64
+ /**
65
+ * List of stack roles that the hook is going to be excluded from
66
+ * @minLength `1`
67
+ * @maxLength `50`
68
+ */
69
+ Exclude?: string[];
70
+ /**
71
+ * List of stack roles that the hook is going to target
72
+ * @minLength `1`
73
+ * @maxLength `50`
74
+ */
75
+ Include?: string[];
76
+ };
77
+ };
78
+ /**
79
+ * Attribute to specify which targets should invoke the hook
80
+ */
81
+ TargetFilters?: {
82
+ /**
83
+ * List of actions that the hook is going to target
84
+ * @minLength `1`
85
+ * @maxLength `50`
86
+ */
87
+ Actions?: Action[];
88
+ /**
89
+ * List of invocation points that the hook is going to target
90
+ * @minLength `1`
91
+ * @maxLength `50`
92
+ */
93
+ InvocationPoints?: InvocationPoint[];
94
+ /**
95
+ * List of type names that the hook is going to target
96
+ * @minLength `1`
97
+ * @maxLength `50`
98
+ */
99
+ TargetNames?: string[];
100
+ } | {
101
+ /**
102
+ * List of hook targets
103
+ * @minLength `1`
104
+ * @maxLength `50`
105
+ */
106
+ Targets: HookTarget[];
107
+ };
108
+ /**
109
+ * Which operations should this Hook run against? Resource changes, stacks or change sets.
110
+ */
111
+ TargetOperations: TargetOperation[];
112
+ };
113
+ /**
114
+ * Attribute type definition for `AWS::CloudFormation::LambdaHook`.
115
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-lambdahook.html#aws-resource-cloudformation-lambdahook-return-values}
116
+ */
117
+ export type CloudFormationLambdaHookAttributes = {
118
+ /**
119
+ * The Amazon Resource Name (ARN) of the activated hook
120
+ * @pattern `^arn:aws[A-Za-z0-9-]{0,64}:cloudformation:[A-Za-z0-9-]{1,64}:([0-9]{12})?:type/hook/.+$`
121
+ */
122
+ HookArn: string;
123
+ };
124
+ /**
125
+ * Type definition for `AWS::CloudFormation::LambdaHook.Action`.
126
+ * Target actions are the type of operation hooks will be executed at.
127
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-action.html}
128
+ */
129
+ export type Action = "CREATE" | "UPDATE" | "DELETE";
130
+ /**
131
+ * Type definition for `AWS::CloudFormation::LambdaHook.HookTarget`.
132
+ * Hook targets are the destination where hooks will be invoked against.
133
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-hooktarget.html}
134
+ */
135
+ export type HookTarget = {
136
+ /**
137
+ * Target actions are the type of operation hooks will be executed at.
138
+ */
139
+ Action: Action;
140
+ /**
141
+ * Invocation points are the point in provisioning workflow where hooks will be executed.
142
+ */
143
+ InvocationPoint: InvocationPoint;
144
+ /**
145
+ * Type name of hook target. Hook targets are the destination where hooks will be invoked against.
146
+ * @minLength `1`
147
+ * @maxLength `256`
148
+ * @pattern `^(?!.*\*\?).*$`
149
+ */
150
+ TargetName: string;
151
+ };
152
+ /**
153
+ * Type definition for `AWS::CloudFormation::LambdaHook.InvocationPoint`.
154
+ * Invocation points are the point in provisioning workflow where hooks will be executed.
155
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-invocationpoint.html}
156
+ */
157
+ export type InvocationPoint = "PRE_PROVISION";
158
+ /**
159
+ * Type definition for `AWS::CloudFormation::LambdaHook.TargetOperation`.
160
+ * Which operations should this Hook run against? Resource changes, stacks or change sets.
161
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-cloudformation-lambdahook-targetoperation.html}
162
+ */
163
+ export type TargetOperation = "RESOURCE" | "STACK" | "CHANGE_SET";
164
+ /**
165
+ * Resource type definition for `AWS::CloudFormation::LambdaHook`.
166
+ * This is a CloudFormation resource for the first-party AWS::Hooks::LambdaHook.
167
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-lambdahook.html}
168
+ */
169
+ export declare class CloudFormationLambdaHook extends $Resource<"AWS::CloudFormation::LambdaHook", CloudFormationLambdaHookProperties, CloudFormationLambdaHookAttributes> {
170
+ static readonly Type = "AWS::CloudFormation::LambdaHook";
171
+ constructor(logicalId: string, properties: CloudFormationLambdaHookProperties, options?: $ResourceOptions);
172
+ }
173
+ //# sourceMappingURL=AWS-CloudFormation-LambdaHook.d.ts.map
@@ -0,0 +1,13 @@
1
+ import { Resource as $Resource } from "@awboost/cfn-template-builder/template/resource";
2
+ /**
3
+ * Resource type definition for `AWS::CloudFormation::LambdaHook`.
4
+ * This is a CloudFormation resource for the first-party AWS::Hooks::LambdaHook.
5
+ * @see {@link https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cloudformation-lambdahook.html}
6
+ */
7
+ export class CloudFormationLambdaHook extends $Resource {
8
+ static Type = "AWS::CloudFormation::LambdaHook";
9
+ constructor(logicalId, properties, options) {
10
+ super(logicalId, CloudFormationLambdaHook.Type, properties, options);
11
+ }
12
+ }
13
+ //# sourceMappingURL=AWS-CloudFormation-LambdaHook.js.map
@@ -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
  */
@@ -18,6 +18,7 @@ export type VpcLatticeAccessLogSubscriptionProperties = {
18
18
  * @pattern `^((((sn)|(svc))-[0-9a-z]{17})|(arn(:[a-z0-9]+([.-][a-z0-9]+)*){2}(:([a-z0-9]+([.-][a-z0-9]+)*)?){2}:((servicenetwork/sn)|(service/svc))-[0-9a-z]{17}))$`
19
19
  */
20
20
  ResourceIdentifier?: string;
21
+ ServiceNetworkLogType?: "SERVICE" | "RESOURCE";
21
22
  /**
22
23
  * @minLength `0`
23
24
  * @maxLength `50`
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awboost/cfn-resource-types",
3
- "version": "0.1.192",
3
+ "version": "0.1.194",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },