#[allow(missing_docs)] #[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::fmt::Debug)]
pub struct DescribeIngestionOutput {
#[doc(hidden)]
pub ingestion: std::option::Option<crate::types::Ingestion>,
#[doc(hidden)]
pub request_id: std::option::Option<std::string::String>,
#[doc(hidden)]
pub status: i32,
_request_id: Option<String>,
}
impl DescribeIngestionOutput {
pub fn ingestion(&self) -> std::option::Option<&crate::types::Ingestion> {
self.ingestion.as_ref()
}
pub fn request_id(&self) -> std::option::Option<&str> {
self.request_id.as_deref()
}
pub fn status(&self) -> i32 {
self.status
}
}
impl aws_http::request_id::RequestId for DescribeIngestionOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl DescribeIngestionOutput {
pub fn builder(
) -> crate::operation::describe_ingestion::builders::DescribeIngestionOutputBuilder {
crate::operation::describe_ingestion::builders::DescribeIngestionOutputBuilder::default()
}
}
#[non_exhaustive]
#[derive(std::clone::Clone, std::cmp::PartialEq, std::default::Default, std::fmt::Debug)]
pub struct DescribeIngestionOutputBuilder {
pub(crate) ingestion: std::option::Option<crate::types::Ingestion>,
pub(crate) request_id: std::option::Option<std::string::String>,
pub(crate) status: std::option::Option<i32>,
_request_id: Option<String>,
}
impl DescribeIngestionOutputBuilder {
pub fn ingestion(mut self, input: crate::types::Ingestion) -> Self {
self.ingestion = Some(input);
self
}
pub fn set_ingestion(mut self, input: std::option::Option<crate::types::Ingestion>) -> Self {
self.ingestion = input;
self
}
pub fn request_id(mut self, input: impl Into<std::string::String>) -> Self {
self.request_id = Some(input.into());
self
}
pub fn set_request_id(mut self, input: std::option::Option<std::string::String>) -> Self {
self.request_id = input;
self
}
pub fn status(mut self, input: i32) -> Self {
self.status = Some(input);
self
}
pub fn set_status(mut self, input: std::option::Option<i32>) -> Self {
self.status = input;
self
}
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::describe_ingestion::DescribeIngestionOutput {
crate::operation::describe_ingestion::DescribeIngestionOutput {
ingestion: self.ingestion,
request_id: self.request_id,
status: self.status.unwrap_or_default(),
_request_id: self._request_id,
}
}
}