#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetSegmentsOutput {
pub segments_response: ::std::option::Option<crate::types::SegmentsResponse>,
_request_id: Option<String>,
}
impl GetSegmentsOutput {
pub fn segments_response(&self) -> ::std::option::Option<&crate::types::SegmentsResponse> {
self.segments_response.as_ref()
}
}
impl ::aws_types::request_id::RequestId for GetSegmentsOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl GetSegmentsOutput {
pub fn builder() -> crate::operation::get_segments::builders::GetSegmentsOutputBuilder {
crate::operation::get_segments::builders::GetSegmentsOutputBuilder::default()
}
}
#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
pub struct GetSegmentsOutputBuilder {
pub(crate) segments_response: ::std::option::Option<crate::types::SegmentsResponse>,
_request_id: Option<String>,
}
impl GetSegmentsOutputBuilder {
pub fn segments_response(mut self, input: crate::types::SegmentsResponse) -> Self {
self.segments_response = ::std::option::Option::Some(input);
self
}
pub fn set_segments_response(mut self, input: ::std::option::Option<crate::types::SegmentsResponse>) -> Self {
self.segments_response = input;
self
}
pub fn get_segments_response(&self) -> &::std::option::Option<crate::types::SegmentsResponse> {
&self.segments_response
}
pub(crate) fn _request_id(mut self, request_id: impl Into<String>) -> Self {
self._request_id = Some(request_id.into());
self
}
pub(crate) fn _set_request_id(&mut self, request_id: Option<String>) -> &mut Self {
self._request_id = request_id;
self
}
pub fn build(self) -> crate::operation::get_segments::GetSegmentsOutput {
crate::operation::get_segments::GetSegmentsOutput {
segments_response: self.segments_response,
_request_id: self._request_id,
}
}
}