File tree Expand file tree Collapse file tree 3 files changed +22
-10
lines changed
generator/ServiceModels/healthlake
sdk/src/Services/HealthLake/Generated Expand file tree Collapse file tree 3 files changed +22
-10
lines changed Original file line number Diff line number Diff line change 5
5
"endpointPrefix" :" healthlake" ,
6
6
"jsonVersion" :" 1.0" ,
7
7
"protocol" :" json" ,
8
+ "protocols" :[" json" ],
8
9
"serviceAbbreviation" :" HealthLake" ,
9
10
"serviceFullName" :" Amazon HealthLake" ,
10
11
"serviceId" :" HealthLake" ,
11
12
"signatureVersion" :" v4" ,
12
13
"signingName" :" healthlake" ,
13
14
"targetPrefix" :" HealthLake" ,
14
- "uid" :" healthlake-2017-07-01"
15
+ "uid" :" healthlake-2017-07-01" ,
16
+ "auth" :[" aws.auth#sigv4" ]
15
17
},
16
18
"operations" :{
17
19
"CreateFHIRDatastore" :{
227
229
"type" :" string" ,
228
230
"enum" :[
229
231
" SMART_ON_FHIR_V1" ,
232
+ " SMART_ON_FHIR" ,
230
233
" AWS_AUTH"
231
234
]
232
235
},
566
569
"type" :" string" ,
567
570
"enum" :[
568
571
" SUBMITTED" ,
572
+ " QUEUED" ,
569
573
" IN_PROGRESS" ,
570
574
" COMPLETED_WITH_ERRORS" ,
571
575
" COMPLETED" ,
730
734
"required" :[
731
735
" OutputDataConfig" ,
732
736
" DatastoreId" ,
733
- " DataAccessRoleArn" ,
734
- " ClientToken"
737
+ " DataAccessRoleArn"
735
738
],
736
739
"members" :{
737
740
"JobName" :{"shape" :" JobName" },
762
765
" InputDataConfig" ,
763
766
" JobOutputDataConfig" ,
764
767
" DatastoreId" ,
765
- " DataAccessRoleArn" ,
766
- " ClientToken"
768
+ " DataAccessRoleArn"
767
769
],
768
770
"members" :{
769
771
"JobName" :{"shape" :" JobName" },
Original file line number Diff line number Diff line change 5
5
"endpointPrefix" :" healthlake" ,
6
6
"jsonVersion" :" 1.0" ,
7
7
"protocol" :" json" ,
8
+ "protocols" :[" json" ],
8
9
"serviceAbbreviation" :" HealthLake" ,
9
10
"serviceFullName" :" Amazon HealthLake" ,
10
11
"serviceId" :" HealthLake" ,
11
12
"signatureVersion" :" v4" ,
12
13
"signingName" :" healthlake" ,
13
14
"targetPrefix" :" HealthLake" ,
14
- "uid" :" healthlake-2017-07-01"
15
+ "uid" :" healthlake-2017-07-01" ,
16
+ "auth" :[" aws.auth#sigv4" ]
15
17
},
16
18
"operations" :{
17
19
"CreateFHIRDatastore" :{
241
243
"type" :" string" ,
242
244
"enum" :[
243
245
" SMART_ON_FHIR_V1" ,
246
+ " SMART_ON_FHIR" ,
244
247
" AWS_AUTH"
245
248
]
246
249
},
807
810
"type" :" string" ,
808
811
"enum" :[
809
812
" SUBMITTED" ,
813
+ " QUEUED" ,
810
814
" IN_PROGRESS" ,
811
815
" COMPLETED_WITH_ERRORS" ,
812
816
" COMPLETED" ,
1073
1077
"required" :[
1074
1078
" OutputDataConfig" ,
1075
1079
" DatastoreId" ,
1076
- " DataAccessRoleArn" ,
1077
- " ClientToken"
1080
+ " DataAccessRoleArn"
1078
1081
],
1079
1082
"members" :{
1080
1083
"JobName" :{
1127
1130
" InputDataConfig" ,
1128
1131
" JobOutputDataConfig" ,
1129
1132
" DatastoreId" ,
1130
- " DataAccessRoleArn" ,
1131
- " ClientToken"
1133
+ " DataAccessRoleArn"
1132
1134
],
1133
1135
"members" :{
1134
1136
"JobName" :{
Original file line number Diff line number Diff line change @@ -35,6 +35,10 @@ public class AuthorizationStrategy : ConstantClass
35
35
/// </summary>
36
36
public static readonly AuthorizationStrategy AWS_AUTH = new AuthorizationStrategy ( "AWS_AUTH" ) ;
37
37
/// <summary>
38
+ /// Constant SMART_ON_FHIR for AuthorizationStrategy
39
+ /// </summary>
40
+ public static readonly AuthorizationStrategy SMART_ON_FHIR = new AuthorizationStrategy ( "SMART_ON_FHIR" ) ;
41
+ /// <summary>
38
42
/// Constant SMART_ON_FHIR_V1 for AuthorizationStrategy
39
43
/// </summary>
40
44
public static readonly AuthorizationStrategy SMART_ON_FHIR_V1 = new AuthorizationStrategy ( "SMART_ON_FHIR_V1" ) ;
@@ -321,6 +325,10 @@ public class JobStatus : ConstantClass
321
325
/// </summary>
322
326
public static readonly JobStatus IN_PROGRESS = new JobStatus ( "IN_PROGRESS" ) ;
323
327
/// <summary>
328
+ /// Constant QUEUED for JobStatus
329
+ /// </summary>
330
+ public static readonly JobStatus QUEUED = new JobStatus ( "QUEUED" ) ;
331
+ /// <summary>
324
332
/// Constant SUBMITTED for JobStatus
325
333
/// </summary>
326
334
public static readonly JobStatus SUBMITTED = new JobStatus ( "SUBMITTED" ) ;
You can’t perform that action at this time.
0 commit comments