|
366 | 366 | {"shape":"ThrottlingException"}
|
367 | 367 | ]
|
368 | 368 | },
|
| 369 | + "GetInferenceProfile":{ |
| 370 | + "name":"GetInferenceProfile", |
| 371 | + "http":{ |
| 372 | + "method":"GET", |
| 373 | + "requestUri":"/inference-profiles/{inferenceProfileIdentifier}", |
| 374 | + "responseCode":200 |
| 375 | + }, |
| 376 | + "input":{"shape":"GetInferenceProfileRequest"}, |
| 377 | + "output":{"shape":"GetInferenceProfileResponse"}, |
| 378 | + "errors":[ |
| 379 | + {"shape":"ResourceNotFoundException"}, |
| 380 | + {"shape":"AccessDeniedException"}, |
| 381 | + {"shape":"ValidationException"}, |
| 382 | + {"shape":"InternalServerException"}, |
| 383 | + {"shape":"ThrottlingException"} |
| 384 | + ] |
| 385 | + }, |
369 | 386 | "GetModelCopyJob":{
|
370 | 387 | "name":"GetModelCopyJob",
|
371 | 388 | "http":{
|
|
547 | 564 | {"shape":"ThrottlingException"}
|
548 | 565 | ]
|
549 | 566 | },
|
| 567 | + "ListInferenceProfiles":{ |
| 568 | + "name":"ListInferenceProfiles", |
| 569 | + "http":{ |
| 570 | + "method":"GET", |
| 571 | + "requestUri":"/inference-profiles", |
| 572 | + "responseCode":200 |
| 573 | + }, |
| 574 | + "input":{"shape":"ListInferenceProfilesRequest"}, |
| 575 | + "output":{"shape":"ListInferenceProfilesResponse"}, |
| 576 | + "errors":[ |
| 577 | + {"shape":"AccessDeniedException"}, |
| 578 | + {"shape":"ValidationException"}, |
| 579 | + {"shape":"InternalServerException"}, |
| 580 | + {"shape":"ThrottlingException"} |
| 581 | + ] |
| 582 | + }, |
550 | 583 | "ListModelCopyJobs":{
|
551 | 584 | "name":"ListModelCopyJobs",
|
552 | 585 | "http":{
|
|
1764 | 1797 | "modelKmsKeyArn":{"shape":"KmsKeyArn"}
|
1765 | 1798 | }
|
1766 | 1799 | },
|
| 1800 | + "GetInferenceProfileRequest":{ |
| 1801 | + "type":"structure", |
| 1802 | + "required":["inferenceProfileIdentifier"], |
| 1803 | + "members":{ |
| 1804 | + "inferenceProfileIdentifier":{ |
| 1805 | + "shape":"InferenceProfileIdentifier", |
| 1806 | + "location":"uri", |
| 1807 | + "locationName":"inferenceProfileIdentifier" |
| 1808 | + } |
| 1809 | + } |
| 1810 | + }, |
| 1811 | + "GetInferenceProfileResponse":{ |
| 1812 | + "type":"structure", |
| 1813 | + "required":[ |
| 1814 | + "inferenceProfileName", |
| 1815 | + "models", |
| 1816 | + "inferenceProfileArn", |
| 1817 | + "inferenceProfileId", |
| 1818 | + "status", |
| 1819 | + "type" |
| 1820 | + ], |
| 1821 | + "members":{ |
| 1822 | + "inferenceProfileName":{"shape":"InferenceProfileName"}, |
| 1823 | + "models":{"shape":"InferenceProfileModels"}, |
| 1824 | + "description":{"shape":"InferenceProfileDescription"}, |
| 1825 | + "createdAt":{"shape":"Timestamp"}, |
| 1826 | + "updatedAt":{"shape":"Timestamp"}, |
| 1827 | + "inferenceProfileArn":{"shape":"InferenceProfileArn"}, |
| 1828 | + "inferenceProfileId":{"shape":"InferenceProfileId"}, |
| 1829 | + "status":{"shape":"InferenceProfileStatus"}, |
| 1830 | + "type":{"shape":"InferenceProfileType"} |
| 1831 | + } |
| 1832 | + }, |
1767 | 1833 | "GetModelCopyJobRequest":{
|
1768 | 1834 | "type":"structure",
|
1769 | 1835 | "required":["jobArn"],
|
|
2613 | 2679 | "type":"list",
|
2614 | 2680 | "member":{"shape":"ImportedModelSummary"}
|
2615 | 2681 | },
|
| 2682 | + "InferenceProfileArn":{ |
| 2683 | + "type":"string", |
| 2684 | + "max":2048, |
| 2685 | + "min":1, |
| 2686 | + "pattern":"arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{0,20}):(|[0-9]{12}):inference-profile/[a-zA-Z0-9-:.]+" |
| 2687 | + }, |
| 2688 | + "InferenceProfileDescription":{ |
| 2689 | + "type":"string", |
| 2690 | + "max":500, |
| 2691 | + "min":1, |
| 2692 | + "pattern":".+" |
| 2693 | + }, |
| 2694 | + "InferenceProfileId":{ |
| 2695 | + "type":"string", |
| 2696 | + "max":64, |
| 2697 | + "min":1, |
| 2698 | + "pattern":"[a-zA-Z0-9-:.]+" |
| 2699 | + }, |
| 2700 | + "InferenceProfileIdentifier":{ |
| 2701 | + "type":"string", |
| 2702 | + "max":2048, |
| 2703 | + "min":1, |
| 2704 | + "pattern":"(arn:aws(|-us-gov|-cn|-iso|-iso-b):bedrock:(|[0-9a-z-]{0,20}):(|[0-9]{12}):inference-profile/)?[a-zA-Z0-9-:.]+" |
| 2705 | + }, |
| 2706 | + "InferenceProfileModel":{ |
| 2707 | + "type":"structure", |
| 2708 | + "members":{ |
| 2709 | + "modelArn":{"shape":"FoundationModelArn"} |
| 2710 | + } |
| 2711 | + }, |
| 2712 | + "InferenceProfileModels":{ |
| 2713 | + "type":"list", |
| 2714 | + "member":{"shape":"InferenceProfileModel"}, |
| 2715 | + "max":5, |
| 2716 | + "min":1 |
| 2717 | + }, |
| 2718 | + "InferenceProfileName":{ |
| 2719 | + "type":"string", |
| 2720 | + "max":64, |
| 2721 | + "min":1, |
| 2722 | + "pattern":"([0-9a-zA-Z][ _-]?)+" |
| 2723 | + }, |
| 2724 | + "InferenceProfileStatus":{ |
| 2725 | + "type":"string", |
| 2726 | + "enum":["ACTIVE"] |
| 2727 | + }, |
| 2728 | + "InferenceProfileSummaries":{ |
| 2729 | + "type":"list", |
| 2730 | + "member":{"shape":"InferenceProfileSummary"} |
| 2731 | + }, |
| 2732 | + "InferenceProfileSummary":{ |
| 2733 | + "type":"structure", |
| 2734 | + "required":[ |
| 2735 | + "inferenceProfileName", |
| 2736 | + "models", |
| 2737 | + "inferenceProfileArn", |
| 2738 | + "inferenceProfileId", |
| 2739 | + "status", |
| 2740 | + "type" |
| 2741 | + ], |
| 2742 | + "members":{ |
| 2743 | + "inferenceProfileName":{"shape":"InferenceProfileName"}, |
| 2744 | + "models":{"shape":"InferenceProfileModels"}, |
| 2745 | + "description":{"shape":"InferenceProfileDescription"}, |
| 2746 | + "createdAt":{"shape":"Timestamp"}, |
| 2747 | + "updatedAt":{"shape":"Timestamp"}, |
| 2748 | + "inferenceProfileArn":{"shape":"InferenceProfileArn"}, |
| 2749 | + "inferenceProfileId":{"shape":"InferenceProfileId"}, |
| 2750 | + "status":{"shape":"InferenceProfileStatus"}, |
| 2751 | + "type":{"shape":"InferenceProfileType"} |
| 2752 | + } |
| 2753 | + }, |
| 2754 | + "InferenceProfileType":{ |
| 2755 | + "type":"string", |
| 2756 | + "enum":["SYSTEM_DEFINED"] |
| 2757 | + }, |
2616 | 2758 | "InferenceType":{
|
2617 | 2759 | "type":"string",
|
2618 | 2760 | "enum":[
|
|
2876 | 3018 | "modelSummaries":{"shape":"ImportedModelSummaryList"}
|
2877 | 3019 | }
|
2878 | 3020 | },
|
| 3021 | + "ListInferenceProfilesRequest":{ |
| 3022 | + "type":"structure", |
| 3023 | + "members":{ |
| 3024 | + "maxResults":{ |
| 3025 | + "shape":"MaxResults", |
| 3026 | + "location":"querystring", |
| 3027 | + "locationName":"maxResults" |
| 3028 | + }, |
| 3029 | + "nextToken":{ |
| 3030 | + "shape":"PaginationToken", |
| 3031 | + "location":"querystring", |
| 3032 | + "locationName":"nextToken" |
| 3033 | + } |
| 3034 | + } |
| 3035 | + }, |
| 3036 | + "ListInferenceProfilesResponse":{ |
| 3037 | + "type":"structure", |
| 3038 | + "members":{ |
| 3039 | + "inferenceProfileSummaries":{"shape":"InferenceProfileSummaries"}, |
| 3040 | + "nextToken":{"shape":"PaginationToken"} |
| 3041 | + } |
| 3042 | + }, |
2879 | 3043 | "ListModelCopyJobsRequest":{
|
2880 | 3044 | "type":"structure",
|
2881 | 3045 | "members":{
|
|
0 commit comments