Struct aws_sdk_computeoptimizer::operation::get_rds_database_recommendation_projected_metrics::builders::GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
source · #[non_exhaustive]pub struct GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder { /* private fields */ }
Expand description
A builder for GetRdsDatabaseRecommendationProjectedMetricsOutput
.
Implementations§
source§impl GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
sourcepub fn recommended_option_projected_metrics(
self,
input: RdsDatabaseRecommendedOptionProjectedMetric,
) -> Self
pub fn recommended_option_projected_metrics( self, input: RdsDatabaseRecommendedOptionProjectedMetric, ) -> Self
Appends an item to recommended_option_projected_metrics
.
To override the contents of this collection use set_recommended_option_projected_metrics
.
An array of objects that describes the projected metrics.
sourcepub fn set_recommended_option_projected_metrics(
self,
input: Option<Vec<RdsDatabaseRecommendedOptionProjectedMetric>>,
) -> Self
pub fn set_recommended_option_projected_metrics( self, input: Option<Vec<RdsDatabaseRecommendedOptionProjectedMetric>>, ) -> Self
An array of objects that describes the projected metrics.
sourcepub fn get_recommended_option_projected_metrics(
&self,
) -> &Option<Vec<RdsDatabaseRecommendedOptionProjectedMetric>>
pub fn get_recommended_option_projected_metrics( &self, ) -> &Option<Vec<RdsDatabaseRecommendedOptionProjectedMetric>>
An array of objects that describes the projected metrics.
sourcepub fn build(self) -> GetRdsDatabaseRecommendationProjectedMetricsOutput
pub fn build(self) -> GetRdsDatabaseRecommendationProjectedMetricsOutput
Consumes the builder and constructs a GetRdsDatabaseRecommendationProjectedMetricsOutput
.
Trait Implementations§
source§impl Clone for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl Clone for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
source§fn clone(&self) -> GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
fn clone(&self) -> GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Default for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl Default for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
source§fn default() -> GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
fn default() -> GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl PartialEq for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
source§fn eq(
&self,
other: &GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder,
) -> bool
fn eq( &self, other: &GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder, ) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
Auto Trait Implementations§
impl Freeze for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl RefUnwindSafe for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl Send for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl Sync for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl Unpin for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
impl UnwindSafe for GetRdsDatabaseRecommendationProjectedMetricsOutputBuilder
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.