1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
use std::error::Error;
use std::fmt;
#[allow(warnings)]
use futures::future;
use futures::Future;
use rusoto_core::credential::ProvideAwsCredentials;
use rusoto_core::region;
use rusoto_core::request::{BufferedHttpResponse, DispatchSignedRequest};
use rusoto_core::{Client, RusotoError, RusotoFuture};
use rusoto_core::proto;
use rusoto_core::signature::SignedRequest;
#[derive(Default, Debug, Clone, PartialEq, Serialize)]
pub struct InvokeEndpointInput {
#[serde(rename = "Accept")]
#[serde(skip_serializing_if = "Option::is_none")]
pub accept: Option<String>,
#[serde(rename = "Body")]
#[serde(
deserialize_with = "::rusoto_core::serialization::SerdeBlob::deserialize_blob",
serialize_with = "::rusoto_core::serialization::SerdeBlob::serialize_blob",
default
)]
pub body: bytes::Bytes,
#[serde(rename = "ContentType")]
#[serde(skip_serializing_if = "Option::is_none")]
pub content_type: Option<String>,
#[serde(rename = "CustomAttributes")]
#[serde(skip_serializing_if = "Option::is_none")]
pub custom_attributes: Option<String>,
#[serde(rename = "EndpointName")]
pub endpoint_name: String,
}
#[derive(Default, Debug, Clone, PartialEq)]
pub struct InvokeEndpointOutput {
pub body: bytes::Bytes,
pub content_type: Option<String>,
pub custom_attributes: Option<String>,
pub invoked_production_variant: Option<String>,
}
#[derive(Debug, PartialEq)]
pub enum InvokeEndpointError {
InternalFailure(String),
ModelError(String),
ServiceUnavailable(String),
ValidationError(String),
}
impl InvokeEndpointError {
pub fn from_response(res: BufferedHttpResponse) -> RusotoError<InvokeEndpointError> {
if let Some(err) = proto::json::Error::parse_rest(&res) {
match err.typ.as_str() {
"InternalFailure" => {
return RusotoError::Service(InvokeEndpointError::InternalFailure(err.msg))
}
"ModelError" => {
return RusotoError::Service(InvokeEndpointError::ModelError(err.msg))
}
"ServiceUnavailable" => {
return RusotoError::Service(InvokeEndpointError::ServiceUnavailable(err.msg))
}
"ValidationError" => {
return RusotoError::Service(InvokeEndpointError::ValidationError(err.msg))
}
"ValidationException" => return RusotoError::Validation(err.msg),
_ => {}
}
}
return RusotoError::Unknown(res);
}
}
impl fmt::Display for InvokeEndpointError {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
write!(f, "{}", self.description())
}
}
impl Error for InvokeEndpointError {
fn description(&self) -> &str {
match *self {
InvokeEndpointError::InternalFailure(ref cause) => cause,
InvokeEndpointError::ModelError(ref cause) => cause,
InvokeEndpointError::ServiceUnavailable(ref cause) => cause,
InvokeEndpointError::ValidationError(ref cause) => cause,
}
}
}
pub trait SageMakerRuntime {
fn invoke_endpoint(
&self,
input: InvokeEndpointInput,
) -> RusotoFuture<InvokeEndpointOutput, InvokeEndpointError>;
}
#[derive(Clone)]
pub struct SageMakerRuntimeClient {
client: Client,
region: region::Region,
}
impl SageMakerRuntimeClient {
pub fn new(region: region::Region) -> SageMakerRuntimeClient {
SageMakerRuntimeClient {
client: Client::shared(),
region,
}
}
pub fn new_with<P, D>(
request_dispatcher: D,
credentials_provider: P,
region: region::Region,
) -> SageMakerRuntimeClient
where
P: ProvideAwsCredentials + Send + Sync + 'static,
P::Future: Send,
D: DispatchSignedRequest + Send + Sync + 'static,
D::Future: Send,
{
SageMakerRuntimeClient {
client: Client::new_with(credentials_provider, request_dispatcher),
region,
}
}
}
impl SageMakerRuntime for SageMakerRuntimeClient {
fn invoke_endpoint(
&self,
input: InvokeEndpointInput,
) -> RusotoFuture<InvokeEndpointOutput, InvokeEndpointError> {
let request_uri = format!(
"/endpoints/{endpoint_name}/invocations",
endpoint_name = input.endpoint_name
);
let mut request = SignedRequest::new("POST", "sagemaker", &self.region, &request_uri);
if input.content_type.is_none() {
request.set_content_type("application/x-amz-json-1.1".to_owned());
}
request.set_endpoint_prefix("runtime.sagemaker".to_string());
let encoded = Some(input.body.to_owned());
request.set_payload(encoded);
if let Some(ref accept) = input.accept {
request.add_header("Accept", &accept.to_string());
}
if let Some(ref content_type) = input.content_type {
request.add_header("Content-Type", &content_type.to_string());
}
if let Some(ref custom_attributes) = input.custom_attributes {
request.add_header(
"X-Amzn-SageMaker-Custom-Attributes",
&custom_attributes.to_string(),
);
}
self.client.sign_and_dispatch(request, |response| {
if response.status.is_success() {
Box::new(response.buffer().from_err().and_then(|response| {
let mut result = InvokeEndpointOutput::default();
result.body = response.body;
if let Some(content_type) = response.headers.get("Content-Type") {
let value = content_type.to_owned();
result.content_type = Some(value)
};
if let Some(custom_attributes) =
response.headers.get("X-Amzn-SageMaker-Custom-Attributes")
{
let value = custom_attributes.to_owned();
result.custom_attributes = Some(value)
};
if let Some(invoked_production_variant) =
response.headers.get("x-Amzn-Invoked-Production-Variant")
{
let value = invoked_production_variant.to_owned();
result.invoked_production_variant = Some(value)
};
Ok(result)
}))
} else {
Box::new(
response
.buffer()
.from_err()
.and_then(|response| Err(InvokeEndpointError::from_response(response))),
)
}
})
}
}