#[non_exhaustive]pub enum ManagementPreference {
AwsManagedResources(AwsManagedResources),
NoPreference(NoManagementPreference),
SelfManageResources(SelfManageResources),
Unknown,
}Expand description
Preferences for migrating an application to AWS.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AwsManagedResources(AwsManagedResources)
Indicates interest in solutions that are managed by AWS.
NoPreference(NoManagementPreference)
No specific preference.
SelfManageResources(SelfManageResources)
Indicates interest in managing your own resources on AWS.
Unknown
The Unknown variant represents cases where new union variant was received. Consider upgrading the SDK to the latest available version.
An unknown enum variant
Note: If you encounter this error, consider upgrading your SDK to the latest version.
The Unknown variant represents cases where the server sent a value that wasn’t recognized
by the client. This can happen when the server adds new functionality, but the client has not been updated.
To investigate this, consider turning on debug logging to print the raw HTTP response.
Implementations§
source§impl ManagementPreference
impl ManagementPreference
sourcepub fn as_aws_managed_resources(&self) -> Result<&AwsManagedResources, &Self>
pub fn as_aws_managed_resources(&self) -> Result<&AwsManagedResources, &Self>
Tries to convert the enum instance into AwsManagedResources, extracting the inner AwsManagedResources.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_aws_managed_resources(&self) -> bool
pub fn is_aws_managed_resources(&self) -> bool
Returns true if this is a AwsManagedResources.
sourcepub fn as_no_preference(&self) -> Result<&NoManagementPreference, &Self>
pub fn as_no_preference(&self) -> Result<&NoManagementPreference, &Self>
Tries to convert the enum instance into NoPreference, extracting the inner NoManagementPreference.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_no_preference(&self) -> bool
pub fn is_no_preference(&self) -> bool
Returns true if this is a NoPreference.
sourcepub fn as_self_manage_resources(&self) -> Result<&SelfManageResources, &Self>
pub fn as_self_manage_resources(&self) -> Result<&SelfManageResources, &Self>
Tries to convert the enum instance into SelfManageResources, extracting the inner SelfManageResources.
Returns Err(&Self) if it can’t be converted.
sourcepub fn is_self_manage_resources(&self) -> bool
pub fn is_self_manage_resources(&self) -> bool
Returns true if this is a SelfManageResources.
sourcepub fn is_unknown(&self) -> bool
pub fn is_unknown(&self) -> bool
Returns true if the enum instance is the Unknown variant.
Trait Implementations§
source§impl Clone for ManagementPreference
impl Clone for ManagementPreference
source§fn clone(&self) -> ManagementPreference
fn clone(&self) -> ManagementPreference
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for ManagementPreference
impl Debug for ManagementPreference
source§impl PartialEq for ManagementPreference
impl PartialEq for ManagementPreference
source§fn eq(&self, other: &ManagementPreference) -> bool
fn eq(&self, other: &ManagementPreference) -> bool
self and other values to be equal, and is used
by ==.