Struct aws_sdk_migrationhubstrategy::operation::get_portfolio_preferences::GetPortfolioPreferencesOutput
source · #[non_exhaustive]pub struct GetPortfolioPreferencesOutput {
pub prioritize_business_goals: Option<PrioritizeBusinessGoals>,
pub application_preferences: Option<ApplicationPreferences>,
pub database_preferences: Option<DatabasePreferences>,
pub application_mode: Option<ApplicationMode>,
/* private fields */
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.prioritize_business_goals: Option<PrioritizeBusinessGoals>The rank of business goals based on priority.
application_preferences: Option<ApplicationPreferences>The transformation preferences for non-database applications.
database_preferences: Option<DatabasePreferences>The transformation preferences for database applications.
application_mode: Option<ApplicationMode>The classification for application component types.
Implementations§
source§impl GetPortfolioPreferencesOutput
impl GetPortfolioPreferencesOutput
sourcepub fn prioritize_business_goals(&self) -> Option<&PrioritizeBusinessGoals>
pub fn prioritize_business_goals(&self) -> Option<&PrioritizeBusinessGoals>
The rank of business goals based on priority.
sourcepub fn application_preferences(&self) -> Option<&ApplicationPreferences>
pub fn application_preferences(&self) -> Option<&ApplicationPreferences>
The transformation preferences for non-database applications.
sourcepub fn database_preferences(&self) -> Option<&DatabasePreferences>
pub fn database_preferences(&self) -> Option<&DatabasePreferences>
The transformation preferences for database applications.
sourcepub fn application_mode(&self) -> Option<&ApplicationMode>
pub fn application_mode(&self) -> Option<&ApplicationMode>
The classification for application component types.
source§impl GetPortfolioPreferencesOutput
impl GetPortfolioPreferencesOutput
sourcepub fn builder() -> GetPortfolioPreferencesOutputBuilder
pub fn builder() -> GetPortfolioPreferencesOutputBuilder
Creates a new builder-style object to manufacture GetPortfolioPreferencesOutput.
Trait Implementations§
source§impl Clone for GetPortfolioPreferencesOutput
impl Clone for GetPortfolioPreferencesOutput
source§fn clone(&self) -> GetPortfolioPreferencesOutput
fn clone(&self) -> GetPortfolioPreferencesOutput
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 PartialEq for GetPortfolioPreferencesOutput
impl PartialEq for GetPortfolioPreferencesOutput
source§fn eq(&self, other: &GetPortfolioPreferencesOutput) -> bool
fn eq(&self, other: &GetPortfolioPreferencesOutput) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl RequestId for GetPortfolioPreferencesOutput
impl RequestId for GetPortfolioPreferencesOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None if the service could not be reached.impl StructuralPartialEq for GetPortfolioPreferencesOutput
Auto Trait Implementations§
impl RefUnwindSafe for GetPortfolioPreferencesOutput
impl Send for GetPortfolioPreferencesOutput
impl Sync for GetPortfolioPreferencesOutput
impl Unpin for GetPortfolioPreferencesOutput
impl UnwindSafe for GetPortfolioPreferencesOutput
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> 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>
Creates a shared type from an unshared type.