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
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
/// Operation shape for `GetClip`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`get_clip`](crate::client::Client::get_clip).
///
/// See [`crate::client::fluent_builders::GetClip`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct GetClip {
    _private: (),
}
impl GetClip {
    /// Creates a new builder-style object to manufacture [`GetClipInput`](crate::input::GetClipInput).
    pub fn builder() -> crate::input::get_clip_input::Builder {
        crate::input::get_clip_input::Builder::default()
    }
    /// Creates a new `GetClip` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseHttpResponse for GetClip {
    type Output = std::result::Result<crate::output::GetClipOutput, crate::error::GetClipError>;
    fn parse_unloaded(
        &self,
        response: &mut aws_smithy_http::operation::Response,
    ) -> Option<Self::Output> {
        // This is an error, defer to the non-streaming parser
        if !response.http().status().is_success() && response.http().status().as_u16() != 200 {
            return None;
        }
        Some(crate::operation_deser::parse_get_clip(response))
    }
    fn parse_loaded(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        // if streaming, we only hit this case if its an error
        crate::operation_deser::parse_get_clip_error(response)
    }
}

/// Operation shape for `GetDASHStreamingSessionURL`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`get_dash_streaming_session_url`](crate::client::Client::get_dash_streaming_session_url).
///
/// See [`crate::client::fluent_builders::GetDASHStreamingSessionURL`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct GetDASHStreamingSessionURL {
    _private: (),
}
impl GetDASHStreamingSessionURL {
    /// Creates a new builder-style object to manufacture [`GetDashStreamingSessionUrlInput`](crate::input::GetDashStreamingSessionUrlInput).
    pub fn builder() -> crate::input::get_dash_streaming_session_url_input::Builder {
        crate::input::get_dash_streaming_session_url_input::Builder::default()
    }
    /// Creates a new `GetDASHStreamingSessionURL` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for GetDASHStreamingSessionURL {
    type Output = std::result::Result<
        crate::output::GetDashStreamingSessionUrlOutput,
        crate::error::GetDASHStreamingSessionURLError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_get_dash_streaming_session_url_error(response)
        } else {
            crate::operation_deser::parse_get_dash_streaming_session_url_response(response)
        }
    }
}

/// Operation shape for `GetHLSStreamingSessionURL`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`get_hls_streaming_session_url`](crate::client::Client::get_hls_streaming_session_url).
///
/// See [`crate::client::fluent_builders::GetHLSStreamingSessionURL`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct GetHLSStreamingSessionURL {
    _private: (),
}
impl GetHLSStreamingSessionURL {
    /// Creates a new builder-style object to manufacture [`GetHlsStreamingSessionUrlInput`](crate::input::GetHlsStreamingSessionUrlInput).
    pub fn builder() -> crate::input::get_hls_streaming_session_url_input::Builder {
        crate::input::get_hls_streaming_session_url_input::Builder::default()
    }
    /// Creates a new `GetHLSStreamingSessionURL` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for GetHLSStreamingSessionURL {
    type Output = std::result::Result<
        crate::output::GetHlsStreamingSessionUrlOutput,
        crate::error::GetHLSStreamingSessionURLError,
    >;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_get_hls_streaming_session_url_error(response)
        } else {
            crate::operation_deser::parse_get_hls_streaming_session_url_response(response)
        }
    }
}

/// Operation shape for `GetImages`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`get_images`](crate::client::Client::get_images).
///
/// See [`crate::client::fluent_builders::GetImages`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct GetImages {
    _private: (),
}
impl GetImages {
    /// Creates a new builder-style object to manufacture [`GetImagesInput`](crate::input::GetImagesInput).
    pub fn builder() -> crate::input::get_images_input::Builder {
        crate::input::get_images_input::Builder::default()
    }
    /// Creates a new `GetImages` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for GetImages {
    type Output = std::result::Result<crate::output::GetImagesOutput, crate::error::GetImagesError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_get_images_error(response)
        } else {
            crate::operation_deser::parse_get_images_response(response)
        }
    }
}

/// Operation shape for `GetMediaForFragmentList`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`get_media_for_fragment_list`](crate::client::Client::get_media_for_fragment_list).
///
/// See [`crate::client::fluent_builders::GetMediaForFragmentList`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct GetMediaForFragmentList {
    _private: (),
}
impl GetMediaForFragmentList {
    /// Creates a new builder-style object to manufacture [`GetMediaForFragmentListInput`](crate::input::GetMediaForFragmentListInput).
    pub fn builder() -> crate::input::get_media_for_fragment_list_input::Builder {
        crate::input::get_media_for_fragment_list_input::Builder::default()
    }
    /// Creates a new `GetMediaForFragmentList` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseHttpResponse for GetMediaForFragmentList {
    type Output = std::result::Result<
        crate::output::GetMediaForFragmentListOutput,
        crate::error::GetMediaForFragmentListError,
    >;
    fn parse_unloaded(
        &self,
        response: &mut aws_smithy_http::operation::Response,
    ) -> Option<Self::Output> {
        // This is an error, defer to the non-streaming parser
        if !response.http().status().is_success() && response.http().status().as_u16() != 200 {
            return None;
        }
        Some(crate::operation_deser::parse_get_media_for_fragment_list(
            response,
        ))
    }
    fn parse_loaded(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        // if streaming, we only hit this case if its an error
        crate::operation_deser::parse_get_media_for_fragment_list_error(response)
    }
}

/// Operation shape for `ListFragments`.
///
/// This is usually constructed for you using the the fluent builder returned by
/// [`list_fragments`](crate::client::Client::list_fragments).
///
/// See [`crate::client::fluent_builders::ListFragments`] for more details about the operation.
#[derive(std::default::Default, std::clone::Clone, std::fmt::Debug)]
pub struct ListFragments {
    _private: (),
}
impl ListFragments {
    /// Creates a new builder-style object to manufacture [`ListFragmentsInput`](crate::input::ListFragmentsInput).
    pub fn builder() -> crate::input::list_fragments_input::Builder {
        crate::input::list_fragments_input::Builder::default()
    }
    /// Creates a new `ListFragments` operation.
    pub fn new() -> Self {
        Self { _private: () }
    }
}
impl aws_smithy_http::response::ParseStrictResponse for ListFragments {
    type Output =
        std::result::Result<crate::output::ListFragmentsOutput, crate::error::ListFragmentsError>;
    fn parse(&self, response: &http::Response<bytes::Bytes>) -> Self::Output {
        if !response.status().is_success() && response.status().as_u16() != 200 {
            crate::operation_deser::parse_list_fragments_error(response)
        } else {
            crate::operation_deser::parse_list_fragments_response(response)
        }
    }
}