Skip to content

Commit 5988b72

Browse files
author
AWS
committed
AWS Clean Rooms Service Update: Support error message configuration for analysis templates
1 parent c54f5e0 commit 5988b72

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"type": "feature",
3+
"category": "AWS Clean Rooms Service",
4+
"contributor": "",
5+
"description": "Support error message configuration for analysis templates"
6+
}

services/cleanrooms/src/main/resources/codegen-resources/service-2.json

Lines changed: 28 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2098,6 +2098,10 @@
20982098
"validations":{
20992099
"shape":"AnalysisTemplateValidationStatusDetailList",
21002100
"documentation":"<p>Information about the validations performed on the analysis template.</p>"
2101+
},
2102+
"errorMessageConfiguration":{
2103+
"shape":"ErrorMessageConfiguration",
2104+
"documentation":"<p>The configuration that specifies the level of detail in error messages returned by analyses using this template. When set to <code>DETAILED</code>, error messages include more information to help troubleshoot issues with PySpark jobs. Detailed error messages may expose underlying data, including sensitive information. Recommended for faster troubleshooting in development and testing environments.</p>"
21012105
}
21022106
},
21032107
"documentation":"<p>The analysis template.</p>"
@@ -2748,6 +2752,10 @@
27482752
"validations":{
27492753
"shape":"AnalysisTemplateValidationStatusDetailList",
27502754
"documentation":"<p>The validations that were performed.</p>"
2755+
},
2756+
"errorMessageConfiguration":{
2757+
"shape":"ErrorMessageConfiguration",
2758+
"documentation":"<p>The configuration that specifies the level of detail in error messages returned by analyses using this template. When set to <code>DETAILED</code>, error messages include more information to help troubleshoot issues with PySpark jobs. Detailed error messages may expose underlying data, including sensitive information. Recommended for faster troubleshooting in development and testing environments.</p>"
27512759
}
27522760
},
27532761
"documentation":"<p>The analysis template within a collaboration.</p>"
@@ -4248,7 +4256,11 @@
42484256
"shape":"AnalysisParameterList",
42494257
"documentation":"<p>The parameters of the analysis template.</p>"
42504258
},
4251-
"schema":{"shape":"AnalysisSchema"}
4259+
"schema":{"shape":"AnalysisSchema"},
4260+
"errorMessageConfiguration":{
4261+
"shape":"ErrorMessageConfiguration",
4262+
"documentation":"<p>The configuration that specifies the level of detail in error messages returned by analyses using this template. When set to <code>DETAILED</code>, error messages include more information to help troubleshoot issues with PySpark jobs. Detailed error messages may expose underlying data, including sensitive information. Recommended for faster troubleshooting in development and testing environments.</p>"
4263+
}
42524264
}
42534265
},
42544266
"CreateAnalysisTemplateOutput":{
@@ -5339,6 +5351,21 @@
53395351
"max":20,
53405352
"min":1
53415353
},
5354+
"ErrorMessageConfiguration":{
5355+
"type":"structure",
5356+
"required":["type"],
5357+
"members":{
5358+
"type":{
5359+
"shape":"ErrorMessageType",
5360+
"documentation":"<p>The level of detail for error messages returned by the PySpark job. When set to DETAILED, error messages include more information to help troubleshoot issues with your PySpark job.</p> <p>Because this setting may expose sensitive data, it is recommended for development and testing environments.</p>"
5361+
}
5362+
},
5363+
"documentation":"<p>A structure that defines the level of detail included in error messages returned by PySpark jobs. This configuration allows you to control the verbosity of error messages to help with troubleshooting PySpark jobs while maintaining appropriate security controls.</p>"
5364+
},
5365+
"ErrorMessageType":{
5366+
"type":"string",
5367+
"enum":["DETAILED"]
5368+
},
53425369
"FilterableMemberStatus":{
53435370
"type":"string",
53445371
"enum":[

0 commit comments

Comments
 (0)