Struct aws_sdk_databasemigration::operation::start_recommendations::StartRecommendationsInput
source · #[non_exhaustive]pub struct StartRecommendationsInput {
pub database_id: Option<String>,
pub settings: Option<RecommendationSettings>,
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.database_id: Option<String>
The identifier of the source database to analyze and provide recommendations for.
settings: Option<RecommendationSettings>
The settings in JSON format that Fleet Advisor uses to determine target engine recommendations. These parameters include target instance sizing and availability and durability settings. For target instance sizing, Fleet Advisor supports the following two options: total capacity and resource utilization. For availability and durability, Fleet Advisor supports the following two options: production (Multi-AZ deployments) and Dev/Test (Single-AZ deployments).
Implementations§
source§impl StartRecommendationsInput
impl StartRecommendationsInput
sourcepub fn database_id(&self) -> Option<&str>
pub fn database_id(&self) -> Option<&str>
The identifier of the source database to analyze and provide recommendations for.
sourcepub fn settings(&self) -> Option<&RecommendationSettings>
pub fn settings(&self) -> Option<&RecommendationSettings>
The settings in JSON format that Fleet Advisor uses to determine target engine recommendations. These parameters include target instance sizing and availability and durability settings. For target instance sizing, Fleet Advisor supports the following two options: total capacity and resource utilization. For availability and durability, Fleet Advisor supports the following two options: production (Multi-AZ deployments) and Dev/Test (Single-AZ deployments).
source§impl StartRecommendationsInput
impl StartRecommendationsInput
sourcepub fn builder() -> StartRecommendationsInputBuilder
pub fn builder() -> StartRecommendationsInputBuilder
Creates a new builder-style object to manufacture StartRecommendationsInput
.
Trait Implementations§
source§impl Clone for StartRecommendationsInput
impl Clone for StartRecommendationsInput
source§fn clone(&self) -> StartRecommendationsInput
fn clone(&self) -> StartRecommendationsInput
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for StartRecommendationsInput
impl Debug for StartRecommendationsInput
impl StructuralPartialEq for StartRecommendationsInput
Auto Trait Implementations§
impl Freeze for StartRecommendationsInput
impl RefUnwindSafe for StartRecommendationsInput
impl Send for StartRecommendationsInput
impl Sync for StartRecommendationsInput
impl Unpin for StartRecommendationsInput
impl UnwindSafe for StartRecommendationsInput
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
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)
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>
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>
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 more