You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix CustomConfigPath parameter indentation and regex pattern
- Fixed YAML indentation for CustomConfigPath parameter properties
- Corrected AllowedPattern regex to include proper escaping and end anchor
- Resolves CloudFormation validation error about null values
Copy file name to clipboardExpand all lines: template.yaml
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -147,13 +147,13 @@ Parameters:
147
147
# Custom Configuation Path:
148
148
149
149
CustomConfigPath:
150
-
Type: String
151
-
Default: ""
152
-
Description: >-
150
+
Type: String
151
+
Default: ""
152
+
Description: >-
153
153
S3 URI pointing to your custom configuration YAML file. When provided, this configuration overrides the selected pattern preset and applies to all processing patterns.
154
154
Leave blank to use the selected pattern configuration preset. For example s3://my-bucket/custom-config/config.yaml
155
-
AllowedPattern: '^(|s3://[a-zA-Z0-9.\-_]+(/.*)?)'
156
-
ConstraintDescription: Must be empty or a valid S3 URI (e.g., s3://my-bucket/custom-config/config.yaml)
0 commit comments