|
195 | 195 | {"shape":"ThrottlingException"}
|
196 | 196 | ]
|
197 | 197 | },
|
| 198 | + "ListTagsForResource":{ |
| 199 | + "name":"ListTagsForResource", |
| 200 | + "http":{ |
| 201 | + "method":"GET", |
| 202 | + "requestUri":"/tags", |
| 203 | + "responseCode":200 |
| 204 | + }, |
| 205 | + "input":{"shape":"ListTagsForResourceRequest"}, |
| 206 | + "output":{"shape":"ListTagsForResourceResponse"}, |
| 207 | + "errors":[ |
| 208 | + {"shape":"ResourceNotFoundException"} |
| 209 | + ] |
| 210 | + }, |
198 | 211 | "StartMeetingTranscription":{
|
199 | 212 | "name":"StartMeetingTranscription",
|
200 | 213 | "http":{
|
|
234 | 247 | {"shape":"ServiceFailureException"}
|
235 | 248 | ]
|
236 | 249 | },
|
| 250 | + "TagResource":{ |
| 251 | + "name":"TagResource", |
| 252 | + "http":{ |
| 253 | + "method":"POST", |
| 254 | + "requestUri":"/tags?operation=tag-resource", |
| 255 | + "responseCode":204 |
| 256 | + }, |
| 257 | + "input":{"shape":"TagResourceRequest"}, |
| 258 | + "output":{"shape":"TagResourceResponse"}, |
| 259 | + "errors":[ |
| 260 | + {"shape":"BadRequestException"}, |
| 261 | + {"shape":"ResourceNotFoundException"}, |
| 262 | + {"shape":"TooManyTagsException"} |
| 263 | + ] |
| 264 | + }, |
| 265 | + "UntagResource":{ |
| 266 | + "name":"UntagResource", |
| 267 | + "http":{ |
| 268 | + "method":"POST", |
| 269 | + "requestUri":"/tags?operation=untag-resource", |
| 270 | + "responseCode":204 |
| 271 | + }, |
| 272 | + "input":{"shape":"UntagResourceRequest"}, |
| 273 | + "output":{"shape":"UntagResourceResponse"}, |
| 274 | + "errors":[ |
| 275 | + {"shape":"BadRequestException"}, |
| 276 | + {"shape":"ResourceNotFoundException"} |
| 277 | + ] |
| 278 | + }, |
237 | 279 | "UpdateAttendeeCapabilities":{
|
238 | 280 | "name":"UpdateAttendeeCapabilities",
|
239 | 281 | "http":{
|
|
253 | 295 | }
|
254 | 296 | },
|
255 | 297 | "shapes":{
|
| 298 | + "AmazonResourceName":{ |
| 299 | + "type":"string", |
| 300 | + "max":1011, |
| 301 | + "min":1, |
| 302 | + "pattern":"^arn:.*" |
| 303 | + }, |
256 | 304 | "Arn":{
|
257 | 305 | "type":"string",
|
258 | 306 | "max":1024,
|
|
438 | 486 | "NotificationsConfiguration":{"shape":"NotificationsConfiguration"},
|
439 | 487 | "MeetingFeatures":{"shape":"MeetingFeaturesConfiguration"},
|
440 | 488 | "PrimaryMeetingId":{"shape":"PrimaryMeetingId"},
|
441 |
| - "TenantIds":{"shape":"TenantIdList"} |
| 489 | + "TenantIds":{"shape":"TenantIdList"}, |
| 490 | + "Tags":{"shape":"TagList"} |
442 | 491 | }
|
443 | 492 | },
|
444 | 493 | "CreateMeetingResponse":{
|
|
467 | 516 | "NotificationsConfiguration":{"shape":"NotificationsConfiguration"},
|
468 | 517 | "Attendees":{"shape":"CreateMeetingWithAttendeesRequestItemList"},
|
469 | 518 | "PrimaryMeetingId":{"shape":"PrimaryMeetingId"},
|
470 |
| - "TenantIds":{"shape":"TenantIdList"} |
| 519 | + "TenantIds":{"shape":"TenantIdList"}, |
| 520 | + "Tags":{"shape":"TagList"} |
471 | 521 | }
|
472 | 522 | },
|
473 | 523 | "CreateMeetingWithAttendeesRequestItemList":{
|
|
661 | 711 | "NextToken":{"shape":"String"}
|
662 | 712 | }
|
663 | 713 | },
|
| 714 | + "ListTagsForResourceRequest":{ |
| 715 | + "type":"structure", |
| 716 | + "required":["ResourceARN"], |
| 717 | + "members":{ |
| 718 | + "ResourceARN":{ |
| 719 | + "shape":"AmazonResourceName", |
| 720 | + "location":"querystring", |
| 721 | + "locationName":"arn" |
| 722 | + } |
| 723 | + } |
| 724 | + }, |
| 725 | + "ListTagsForResourceResponse":{ |
| 726 | + "type":"structure", |
| 727 | + "members":{ |
| 728 | + "Tags":{"shape":"TagList"} |
| 729 | + } |
| 730 | + }, |
664 | 731 | "MediaCapabilities":{
|
665 | 732 | "type":"string",
|
666 | 733 | "enum":[
|
|
698 | 765 | "MediaPlacement":{"shape":"MediaPlacement"},
|
699 | 766 | "MeetingFeatures":{"shape":"MeetingFeaturesConfiguration"},
|
700 | 767 | "PrimaryMeetingId":{"shape":"PrimaryMeetingId"},
|
701 |
| - "TenantIds":{"shape":"TenantIdList"} |
| 768 | + "TenantIds":{"shape":"TenantIdList"}, |
| 769 | + "MeetingArn":{"shape":"AmazonResourceName"} |
702 | 770 | }
|
703 | 771 | },
|
704 | 772 | "MeetingFeatureStatus":{
|
|
737 | 805 | "max":64,
|
738 | 806 | "min":2
|
739 | 807 | },
|
| 808 | + "ResourceNotFoundException":{ |
| 809 | + "type":"structure", |
| 810 | + "members":{ |
| 811 | + "Code":{"shape":"String"}, |
| 812 | + "Message":{"shape":"String"}, |
| 813 | + "RequestId":{"shape":"String"}, |
| 814 | + "ResourceName":{"shape":"AmazonResourceName"} |
| 815 | + }, |
| 816 | + "error":{"httpStatusCode":404}, |
| 817 | + "exception":true |
| 818 | + }, |
740 | 819 | "ResultMax":{
|
741 | 820 | "type":"integer",
|
742 | 821 | "max":100,
|
|
800 | 879 | "type":"string",
|
801 | 880 | "max":4096
|
802 | 881 | },
|
| 882 | + "Tag":{ |
| 883 | + "type":"structure", |
| 884 | + "required":[ |
| 885 | + "Key", |
| 886 | + "Value" |
| 887 | + ], |
| 888 | + "members":{ |
| 889 | + "Key":{"shape":"TagKey"}, |
| 890 | + "Value":{"shape":"TagValue"} |
| 891 | + } |
| 892 | + }, |
| 893 | + "TagKey":{ |
| 894 | + "type":"string", |
| 895 | + "max":128, |
| 896 | + "min":1, |
| 897 | + "pattern":"^[a-zA-Z+-=._:/]+$" |
| 898 | + }, |
| 899 | + "TagKeyList":{ |
| 900 | + "type":"list", |
| 901 | + "member":{"shape":"TagKey"}, |
| 902 | + "max":50, |
| 903 | + "min":0 |
| 904 | + }, |
| 905 | + "TagList":{ |
| 906 | + "type":"list", |
| 907 | + "member":{"shape":"Tag"}, |
| 908 | + "max":50, |
| 909 | + "min":0 |
| 910 | + }, |
| 911 | + "TagResourceRequest":{ |
| 912 | + "type":"structure", |
| 913 | + "required":[ |
| 914 | + "ResourceARN", |
| 915 | + "Tags" |
| 916 | + ], |
| 917 | + "members":{ |
| 918 | + "ResourceARN":{"shape":"AmazonResourceName"}, |
| 919 | + "Tags":{"shape":"TagList"} |
| 920 | + } |
| 921 | + }, |
| 922 | + "TagResourceResponse":{ |
| 923 | + "type":"structure", |
| 924 | + "members":{ |
| 925 | + } |
| 926 | + }, |
| 927 | + "TagValue":{ |
| 928 | + "type":"string", |
| 929 | + "max":256, |
| 930 | + "min":0, |
| 931 | + "pattern":"[\\s\\w+-=\\.:/@]*" |
| 932 | + }, |
803 | 933 | "TenantId":{
|
804 | 934 | "type":"string",
|
805 | 935 | "max":256,
|
|
822 | 952 | "error":{"httpStatusCode":429},
|
823 | 953 | "exception":true
|
824 | 954 | },
|
| 955 | + "TooManyTagsException":{ |
| 956 | + "type":"structure", |
| 957 | + "members":{ |
| 958 | + "Code":{"shape":"String"}, |
| 959 | + "Message":{"shape":"String"}, |
| 960 | + "RequestId":{"shape":"String"}, |
| 961 | + "ResourceName":{"shape":"AmazonResourceName"} |
| 962 | + }, |
| 963 | + "error":{"httpStatusCode":400}, |
| 964 | + "exception":true |
| 965 | + }, |
825 | 966 | "TranscribeContentIdentificationType":{
|
826 | 967 | "type":"string",
|
827 | 968 | "enum":["PII"]
|
|
964 | 1105 | "error":{"httpStatusCode":422},
|
965 | 1106 | "exception":true
|
966 | 1107 | },
|
| 1108 | + "UntagResourceRequest":{ |
| 1109 | + "type":"structure", |
| 1110 | + "required":[ |
| 1111 | + "ResourceARN", |
| 1112 | + "TagKeys" |
| 1113 | + ], |
| 1114 | + "members":{ |
| 1115 | + "ResourceARN":{"shape":"AmazonResourceName"}, |
| 1116 | + "TagKeys":{"shape":"TagKeyList"} |
| 1117 | + } |
| 1118 | + }, |
| 1119 | + "UntagResourceResponse":{ |
| 1120 | + "type":"structure", |
| 1121 | + "members":{ |
| 1122 | + } |
| 1123 | + }, |
967 | 1124 | "UpdateAttendeeCapabilitiesRequest":{
|
968 | 1125 | "type":"structure",
|
969 | 1126 | "required":[
|
|
0 commit comments