|
2168 | 2168 | "members":{
|
2169 | 2169 | "distillationConfig":{
|
2170 | 2170 | "shape":"DistillationConfig",
|
2171 |
| - "documentation":"<p>The distillation configuration for the custom model.</p>" |
| 2171 | + "documentation":"<p>The Distillation configuration for the custom model.</p>" |
2172 | 2172 | }
|
2173 | 2173 | },
|
2174 | 2174 | "documentation":"<p>A model customization configuration</p>",
|
|
2182 | 2182 | "DISTILLATION"
|
2183 | 2183 | ]
|
2184 | 2184 | },
|
| 2185 | + "DataProcessingDetails":{ |
| 2186 | + "type":"structure", |
| 2187 | + "members":{ |
| 2188 | + "status":{ |
| 2189 | + "shape":"JobStatusDetails", |
| 2190 | + "documentation":"<p>The status of the data processing sub-task of the job.</p>" |
| 2191 | + }, |
| 2192 | + "creationTime":{ |
| 2193 | + "shape":"Timestamp", |
| 2194 | + "documentation":"<p>The start time of the data processing sub-task of the job.</p>" |
| 2195 | + }, |
| 2196 | + "lastModifiedTime":{ |
| 2197 | + "shape":"Timestamp", |
| 2198 | + "documentation":"<p>The latest update to the data processing sub-task of the job.</p>" |
| 2199 | + } |
| 2200 | + }, |
| 2201 | + "documentation":"<p>For a Distillation job, the status details for the data processing sub-task of the job.</p>" |
| 2202 | + }, |
2185 | 2203 | "DeleteCustomModelRequest":{
|
2186 | 2204 | "type":"structure",
|
2187 | 2205 | "required":["modelIdentifier"],
|
|
3675 | 3693 | "shape":"ErrorMessage",
|
3676 | 3694 | "documentation":"<p>Information about why the job failed.</p>"
|
3677 | 3695 | },
|
| 3696 | + "statusDetails":{ |
| 3697 | + "shape":"StatusDetails", |
| 3698 | + "documentation":"<p>For a Distillation job, the details about the statuses of the sub-tasks of the customization job. </p>" |
| 3699 | + }, |
3678 | 3700 | "creationTime":{
|
3679 | 3701 | "shape":"Timestamp",
|
3680 | 3702 | "documentation":"<p>Time that the resource was created.</p>"
|
|
5443 | 5465 | "min":1,
|
5444 | 5466 | "pattern":"[a-zA-Z0-9](-*[a-zA-Z0-9\\+\\-\\.])*"
|
5445 | 5467 | },
|
| 5468 | + "JobStatusDetails":{ |
| 5469 | + "type":"string", |
| 5470 | + "enum":[ |
| 5471 | + "InProgress", |
| 5472 | + "Completed", |
| 5473 | + "Stopping", |
| 5474 | + "Stopped", |
| 5475 | + "Failed", |
| 5476 | + "NotStarted" |
| 5477 | + ] |
| 5478 | + }, |
5446 | 5479 | "KbInferenceConfig":{
|
5447 | 5480 | "type":"structure",
|
5448 | 5481 | "members":{
|
|
6624 | 6657 | "shape":"Timestamp",
|
6625 | 6658 | "documentation":"<p>Time that the customization job was last modified.</p>"
|
6626 | 6659 | },
|
| 6660 | + "statusDetails":{ |
| 6661 | + "shape":"StatusDetails", |
| 6662 | + "documentation":"<p>Details about the status of the data processing sub-task of the job.</p>" |
| 6663 | + }, |
6627 | 6664 | "creationTime":{
|
6628 | 6665 | "shape":"Timestamp",
|
6629 | 6666 | "documentation":"<p>Creation time of the custom model. </p>"
|
|
7720 | 7757 | "INCOMPATIBLE_ENDPOINT"
|
7721 | 7758 | ]
|
7722 | 7759 | },
|
| 7760 | + "StatusDetails":{ |
| 7761 | + "type":"structure", |
| 7762 | + "members":{ |
| 7763 | + "validationDetails":{ |
| 7764 | + "shape":"ValidationDetails", |
| 7765 | + "documentation":"<p>The status details for the validation sub-task of the job.</p>" |
| 7766 | + }, |
| 7767 | + "dataProcessingDetails":{ |
| 7768 | + "shape":"DataProcessingDetails", |
| 7769 | + "documentation":"<p>The status details for the data processing sub-task of the job.</p>" |
| 7770 | + }, |
| 7771 | + "trainingDetails":{ |
| 7772 | + "shape":"TrainingDetails", |
| 7773 | + "documentation":"<p>The status details for the training sub-task of the job.</p>" |
| 7774 | + } |
| 7775 | + }, |
| 7776 | + "documentation":"<p>For a Distillation job, the status details for sub-tasks of the job. Possible statuses for each sub-task include the following:</p> <ul> <li> <p>NotStarted</p> </li> <li> <p>InProgress</p> </li> <li> <p>Completed</p> </li> <li> <p>Stopping</p> </li> <li> <p>Stopped</p> </li> <li> <p>Failed</p> </li> </ul>" |
| 7777 | + }, |
7723 | 7778 | "StopEvaluationJobRequest":{
|
7724 | 7779 | "type":"structure",
|
7725 | 7780 | "required":["jobIdentifier"],
|
|
7871 | 7926 | },
|
7872 | 7927 | "TeacherModelIdentifier":{
|
7873 | 7928 | "type":"string",
|
7874 |
| - "pattern":"arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}::foundation-model/[a-z0-9-]{1,63}[.]{1}([a-z0-9-]{1,63}[.]){0,2}[a-z0-9-]{1,63}([:][a-z0-9-]{1,63}){0,2}|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})|(([0-9a-zA-Z][_-]?)+)" |
| 7929 | + "pattern":"(arn:aws(-[^:]+)?:bedrock:[a-z0-9-]{1,20}:((:foundation-model/([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})|(([0-9a-zA-Z][_-]?)+)$)|([0-9]{12}:inference-profile/[a-zA-Z0-9-:.]+$)))|([a-z0-9-]{1,63}[.]{1}[a-z0-9-]{1,63}([.]?[a-z0-9-]{1,63})([:][a-z0-9-]{1,63}){0,2})" |
7875 | 7930 | },
|
7876 | 7931 | "Temperature":{
|
7877 | 7932 | "type":"float",
|
|
7959 | 8014 | },
|
7960 | 8015 | "documentation":"<p>S3 Location of the training data.</p>"
|
7961 | 8016 | },
|
| 8017 | + "TrainingDetails":{ |
| 8018 | + "type":"structure", |
| 8019 | + "members":{ |
| 8020 | + "status":{ |
| 8021 | + "shape":"JobStatusDetails", |
| 8022 | + "documentation":"<p>The status of the training sub-task of the job.</p>" |
| 8023 | + }, |
| 8024 | + "creationTime":{ |
| 8025 | + "shape":"Timestamp", |
| 8026 | + "documentation":"<p>The start time of the training sub-task of the job.</p>" |
| 8027 | + }, |
| 8028 | + "lastModifiedTime":{ |
| 8029 | + "shape":"Timestamp", |
| 8030 | + "documentation":"<p>The latest update to the training sub-task of the job.</p>" |
| 8031 | + } |
| 8032 | + }, |
| 8033 | + "documentation":"<p>For a Distillation job, the status details for the training sub-task of the job.</p>" |
| 8034 | + }, |
7962 | 8035 | "TrainingMetrics":{
|
7963 | 8036 | "type":"structure",
|
7964 | 8037 | "members":{
|
|
8146 | 8219 | },
|
8147 | 8220 | "documentation":"<p>Array of up to 10 validators.</p>"
|
8148 | 8221 | },
|
| 8222 | + "ValidationDetails":{ |
| 8223 | + "type":"structure", |
| 8224 | + "members":{ |
| 8225 | + "status":{ |
| 8226 | + "shape":"JobStatusDetails", |
| 8227 | + "documentation":"<p>The status of the validation sub-task of the job.</p>" |
| 8228 | + }, |
| 8229 | + "creationTime":{ |
| 8230 | + "shape":"Timestamp", |
| 8231 | + "documentation":"<p>The start time of the validation sub-task of the job.</p>" |
| 8232 | + }, |
| 8233 | + "lastModifiedTime":{ |
| 8234 | + "shape":"Timestamp", |
| 8235 | + "documentation":"<p>The latest update to the validation sub-task of the job.</p>" |
| 8236 | + } |
| 8237 | + }, |
| 8238 | + "documentation":"<p>For a Distillation job, the status details for the validation sub-task of the job.</p>" |
| 8239 | + }, |
8149 | 8240 | "ValidationException":{
|
8150 | 8241 | "type":"structure",
|
8151 | 8242 | "members":{
|
|
0 commit comments