aws_sdk_wellarchitected/operation/get_milestone/
_get_milestone_output.rs#[non_exhaustive]
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::fmt::Debug)]
pub struct GetMilestoneOutput {
pub workload_id: ::std::option::Option<::std::string::String>,
pub milestone: ::std::option::Option<crate::types::Milestone>,
_request_id: Option<String>,
}
impl GetMilestoneOutput {
pub fn workload_id(&self) -> ::std::option::Option<&str> {
self.workload_id.as_deref()
}
pub fn milestone(&self) -> ::std::option::Option<&crate::types::Milestone> {
self.milestone.as_ref()
}
}
impl ::aws_types::request_id::RequestId for GetMilestoneOutput {
fn request_id(&self) -> Option<&str> {
self._request_id.as_deref()
}
}
impl GetMilestoneOutput {
pub fn builder() -> crate::operation::get_milestone::builders::GetMilestoneOutputBuilder {
crate::operation::get_milestone::builders::GetMilestoneOutputBuilder::default()
}
}
#[derive(::std::clone::Clone, ::std::cmp::PartialEq, ::std::default::Default, ::std::fmt::Debug)]
#[non_exhaustive]
pub struct GetMilestoneOutputBuilder {
pub(crate) workload_id: ::std::option::Option<::std::string::String>,
pub(crate) milestone: ::std::option::Option<crate::types::Milestone>,
_request_id: Option<String>,
}
impl GetMilestoneOutputBuilder {
pub fn workload_id(mut self, input: impl ::std::convert::Into<::std::string::String>) -> Self {
self.workload_id = ::std::option::Option::Some(input.into());
self
}
pub fn set_workload_id(mut self, input: ::std::option::Option<::std::string::String>) -> Self {
self.workload_id = input;
self
}
pub fn get_workload_id(&self) -> &::std::option::Option<::std::string::String> {
&self.workload_id
}
pub fn milestone(mut self, input: crate::types::Milestone) -> Self {
self.milestone = ::std::option::Option::Some(input);
self
}
pub fn set_milestone(mut self, input: ::std::option::Option<crate::types::Milestone>) -> Self {
self.milestone = input;
self
}
pub fn get_milestone(&self) -> &::std::option::Option<crate::types::Milestone> {
&self.milestone
}
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_milestone::GetMilestoneOutput {
crate::operation::get_milestone::GetMilestoneOutput {
workload_id: self.workload_id,
milestone: self.milestone,
_request_id: self._request_id,
}
}
}