#[allow(missing_docs)] #[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct SearchKnowledgeBasesOutput {
pub knowledge_base_summaries: ::std::vec::Vec<crate::types::KnowledgeBaseSummary>,
pub next_token: ::std::option::Option<::std::string::String>,
pub request_id: ::std::option::Option<::std::string::String>,
pub status: ::std::option::Option<i32>,
_request_id: Option<String>,
}
impl SearchKnowledgeBasesOutput {
pub fn knowledge_base_summaries(&self) -> &[crate::types::KnowledgeBaseSummary] {
use std::ops::Deref;
self.knowledge_base_summaries.deref()
}
pub fn next_token(&self) -> ::std::option::Option<&str> {
self.next_token.as_deref()
}
pub fn request_id(&self) -> ::std::option::Option<&str> {
self.request_id.as_deref()
}
pub fn status(&self) -> ::std::option::Option<i32> {
self.status
}
}
impl ::aws_types::request_id::RequestId for SearchKnowledgeBasesOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl SearchKnowledgeBasesOutput {
pub fn builder() -> crate::operation::search_knowledge_bases::builders::SearchKnowledgeBasesOutputBuilder {
crate::operation::search_knowledge_bases::builders::SearchKnowledgeBasesOutputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct SearchKnowledgeBasesOutputBuilder {
pub(crate) knowledge_base_summaries: ::std::option::Option<::std::vec::Vec<crate::types::KnowledgeBaseSummary>>,
pub(crate) next_token: ::std::option::Option<::std::string::String>,
pub(crate) request_id: ::std::option::Option<::std::string::String>,
pub(crate) status: ::std::option::Option<i32>,
_request_id: Option<String>,
}
impl SearchKnowledgeBasesOutputBuilder {
pub fn knowledge_base_summaries(mut self, input: crate::types::KnowledgeBaseSummary) -> Self {
let mut v = self.knowledge_base_summaries.unwrap_or_default();
v.push(input);
self.knowledge_base_summaries = ::std::option::Option::Some(v);
self
}
pub fn set_knowledge_base_summaries(mut self, input: ::std::option::Option<::std::vec::Vec<crate::types::KnowledgeBaseSummary>>) -> Self {
self.knowledge_base_summaries = input;
self
}
pub fn get_knowledge_base_summaries(&self) -> &::std::option::Option<::std::vec::Vec<crate::types::KnowledgeBaseSummary>> {
&self.knowledge_base_summaries
}
pub fn next_token(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.next_token = ::std::option::Option::Some(input.into());
self
}
pub fn set_next_token(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.next_token = input;
self
}
pub fn get_next_token(&self) -> &::std::option::Option<::std::string::String> {
&self.next_token
}
pub fn request_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.request_id = ::std::option::Option::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 get_request_id(&self) -> &::std::option::Option<::std::string::String> {
&self.request_id
}
pub fn status(mut self, input: i32) -> Self {
self.status = ::std::option::Option::Some(input);
self
}
pub fn set_status(mut self, input: ::std::option::Option<i32>) -> Self {
self.status = input;
self
}
pub fn get_status(&self) -> &::std::option::Option<i32> {
&self.status
}
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,
) -> ::std::result::Result<crate::operation::search_knowledge_bases::SearchKnowledgeBasesOutput, ::aws_smithy_types::error::operation::BuildError>
{
::std::result::Result::Ok(crate::operation::search_knowledge_bases::SearchKnowledgeBasesOutput {
knowledge_base_summaries: self.knowledge_base_summaries.ok_or_else(|| {
::aws_smithy_types::error::operation::BuildError::missing_field(
"knowledge_base_summaries",
"knowledge_base_summaries was not specified but it is required when building SearchKnowledgeBasesOutput",
)
})?,
next_token: self.next_token,
request_id: self.request_id,
status: self.status,
_request_id: self._request_id,
})
}
}