Skip to content

Commit 78bd451

Browse files
author
AWS
committed
Amazon HealthLake Update: Added new CREATE_FAILED status for data stores. Added new errorCause to DescribeFHIRDatastore API and ListFHIRDatastores API response for additional insights into data store creation and deletion workflows.
1 parent ab50b15 commit 78bd451

File tree

2 files changed

+38
-1
lines changed

2 files changed

+38
-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": "Amazon HealthLake",
4+
"contributor": "",
5+
"description": "Added new CREATE_FAILED status for data stores. Added new errorCause to DescribeFHIRDatastore API and ListFHIRDatastores API response for additional insights into data store creation and deletion workflows."
6+
}

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

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -422,6 +422,10 @@
422422
"IdentityProviderConfiguration":{
423423
"shape":"IdentityProviderConfiguration",
424424
"documentation":"<p>The identity provider that you selected when you created the data store.</p>"
425+
},
426+
"ErrorCause":{
427+
"shape":"ErrorCause",
428+
"documentation":"<p>The error cause for the current data store operation.</p>"
425429
}
426430
},
427431
"documentation":"<p>Displays the properties of the data store, including the ID, ARN, name, and the status of the data store.</p>"
@@ -436,7 +440,8 @@
436440
"CREATING",
437441
"ACTIVE",
438442
"DELETING",
439-
"DELETED"
443+
"DELETED",
444+
"CREATE_FAILED"
440445
]
441446
},
442447
"DeleteFHIRDatastoreRequest":{
@@ -556,6 +561,32 @@
556561
"min":1,
557562
"pattern":"(arn:aws((-us-gov)|(-iso)|(-iso-b)|(-cn))?:kms:)?([a-z]{2}-[a-z]+(-[a-z]+)?-\\d:)?(\\d{12}:)?(((key/)?[a-zA-Z0-9-_]+)|(alias/[a-zA-Z0-9:/_-]+))"
558563
},
564+
"ErrorCategory":{
565+
"type":"string",
566+
"enum":[
567+
"RETRYABLE_ERROR",
568+
"NON_RETRYABLE_ERROR"
569+
]
570+
},
571+
"ErrorCause":{
572+
"type":"structure",
573+
"members":{
574+
"ErrorMessage":{
575+
"shape":"ErrorMessage",
576+
"documentation":"<p>The text of the error message.</p>"
577+
},
578+
"ErrorCategory":{
579+
"shape":"ErrorCategory",
580+
"documentation":"<p>The error category of the create/delete data store operation. Possible statuses are RETRYABLE_ERROR or NON_RETRYABLE_ERROR.</p>"
581+
}
582+
},
583+
"documentation":"<p>The error info of the create/delete data store operation.</p>"
584+
},
585+
"ErrorMessage":{
586+
"type":"string",
587+
"max":4096,
588+
"min":1
589+
},
559590
"ExportJobProperties":{
560591
"type":"structure",
561592
"required":[

0 commit comments

Comments
 (0)