#[non_exhaustive]pub struct RecommendationSettings { /* private fields */ }
Expand description
Provides information about the required target engine settings.
Implementations§
source§impl RecommendationSettings
impl RecommendationSettings
sourcepub fn instance_sizing_type(&self) -> Option<&str>
pub fn instance_sizing_type(&self) -> Option<&str>
The size of your target instance. Fleet Advisor calculates this value based on your data collection type, such as total capacity and resource utilization. Valid values include "total-capacity"
and "utilization"
.
sourcepub fn workload_type(&self) -> Option<&str>
pub fn workload_type(&self) -> Option<&str>
The deployment option for your target engine. For production databases, Fleet Advisor chooses Multi-AZ deployment. For development or test databases, Fleet Advisor chooses Single-AZ deployment. Valid values include "development"
and "production"
.
source§impl RecommendationSettings
impl RecommendationSettings
sourcepub fn builder() -> RecommendationSettingsBuilder
pub fn builder() -> RecommendationSettingsBuilder
Creates a new builder-style object to manufacture RecommendationSettings
.
Trait Implementations§
source§impl Clone for RecommendationSettings
impl Clone for RecommendationSettings
source§fn clone(&self) -> RecommendationSettings
fn clone(&self) -> RecommendationSettings
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 Debug for RecommendationSettings
impl Debug for RecommendationSettings
source§impl PartialEq<RecommendationSettings> for RecommendationSettings
impl PartialEq<RecommendationSettings> for RecommendationSettings
source§fn eq(&self, other: &RecommendationSettings) -> bool
fn eq(&self, other: &RecommendationSettings) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for RecommendationSettings
Auto Trait Implementations§
impl RefUnwindSafe for RecommendationSettings
impl Send for RecommendationSettings
impl Sync for RecommendationSettings
impl Unpin for RecommendationSettings
impl UnwindSafe for RecommendationSettings
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