#[non_exhaustive]
pub enum ExportableLambdaFunctionField {
Show 27 variants
AccountId,
CurrentConfigurationMemorySize,
CurrentConfigurationTimeout,
CurrentCostAverage,
CurrentCostTotal,
CurrentPerformanceRisk,
Finding,
FindingReasonCodes,
FunctionArn,
FunctionVersion,
LastRefreshTimestamp,
LookbackPeriodInDays,
NumberOfInvocations,
RecommendationOptionsConfigurationMemorySize,
RecommendationOptionsCostHigh,
RecommendationOptionsCostLow,
RecommendationOptionsEstimatedMonthlySavingsCurrency,
RecommendationOptionsEstimatedMonthlySavingsValue,
RecommendationOptionsProjectedUtilizationMetricsDurationExpected,
RecommendationOptionsProjectedUtilizationMetricsDurationLowerBound,
RecommendationOptionsProjectedUtilizationMetricsDurationUpperBound,
RecommendationOptionsSavingsOpportunityPercentage,
UtilizationMetricsDurationAverage,
UtilizationMetricsDurationMaximum,
UtilizationMetricsMemoryAverage,
UtilizationMetricsMemoryMaximum,
Unknown(UnknownVariantValue),
}
Expand description
When writing a match expression against ExportableLambdaFunctionField
, it is important to ensure
your code is forward-compatible. That is, if a match arm handles a case for a
feature that is supported by the service but has not been represented as an enum
variant in a current version of SDK, your code should continue to work when you
upgrade SDK to a future version in which the enum does include a variant for that
feature.
Here is an example of how you can make a match expression forward-compatible:
# let exportablelambdafunctionfield = unimplemented!();
match exportablelambdafunctionfield {
ExportableLambdaFunctionField::AccountId => { /* ... */ },
ExportableLambdaFunctionField::CurrentConfigurationMemorySize => { /* ... */ },
ExportableLambdaFunctionField::CurrentConfigurationTimeout => { /* ... */ },
ExportableLambdaFunctionField::CurrentCostAverage => { /* ... */ },
ExportableLambdaFunctionField::CurrentCostTotal => { /* ... */ },
ExportableLambdaFunctionField::CurrentPerformanceRisk => { /* ... */ },
ExportableLambdaFunctionField::Finding => { /* ... */ },
ExportableLambdaFunctionField::FindingReasonCodes => { /* ... */ },
ExportableLambdaFunctionField::FunctionArn => { /* ... */ },
ExportableLambdaFunctionField::FunctionVersion => { /* ... */ },
ExportableLambdaFunctionField::LastRefreshTimestamp => { /* ... */ },
ExportableLambdaFunctionField::LookbackPeriodInDays => { /* ... */ },
ExportableLambdaFunctionField::NumberOfInvocations => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsConfigurationMemorySize => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsCostHigh => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsCostLow => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsEstimatedMonthlySavingsCurrency => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsEstimatedMonthlySavingsValue => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsProjectedUtilizationMetricsDurationExpected => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsProjectedUtilizationMetricsDurationLowerBound => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsProjectedUtilizationMetricsDurationUpperBound => { /* ... */ },
ExportableLambdaFunctionField::RecommendationOptionsSavingsOpportunityPercentage => { /* ... */ },
ExportableLambdaFunctionField::UtilizationMetricsDurationAverage => { /* ... */ },
ExportableLambdaFunctionField::UtilizationMetricsDurationMaximum => { /* ... */ },
ExportableLambdaFunctionField::UtilizationMetricsMemoryAverage => { /* ... */ },
ExportableLambdaFunctionField::UtilizationMetricsMemoryMaximum => { /* ... */ },
other @ _ if other.as_str() == "NewFeature" => { /* handles a case for `NewFeature` */ },
_ => { /* ... */ },
}
The above code demonstrates that when exportablelambdafunctionfield
represents
NewFeature
, the execution path will lead to the second last match arm,
even though the enum does not contain a variant ExportableLambdaFunctionField::NewFeature
in the current version of SDK. The reason is that the variable other
,
created by the @
operator, is bound to
ExportableLambdaFunctionField::Unknown(UnknownVariantValue("NewFeature".to_owned()))
and calling as_str
on it yields "NewFeature"
.
This match expression is forward-compatible when executed with a newer
version of SDK where the variant ExportableLambdaFunctionField::NewFeature
is defined.
Specifically, when exportablelambdafunctionfield
represents NewFeature
,
the execution path will hit the second last match arm as before by virtue of
calling as_str
on ExportableLambdaFunctionField::NewFeature
also yielding "NewFeature"
.
Explicitly matching on the Unknown
variant should
be avoided for two reasons:
- The inner data
UnknownVariantValue
is opaque, and no further information can be extracted. - It might inadvertently shadow other intended match arms.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
AccountId
CurrentConfigurationMemorySize
CurrentConfigurationTimeout
CurrentCostAverage
CurrentCostTotal
CurrentPerformanceRisk
Finding
FindingReasonCodes
FunctionArn
FunctionVersion
LastRefreshTimestamp
LookbackPeriodInDays
NumberOfInvocations
RecommendationOptionsConfigurationMemorySize
RecommendationOptionsCostHigh
RecommendationOptionsCostLow
RecommendationOptionsEstimatedMonthlySavingsCurrency
RecommendationOptionsEstimatedMonthlySavingsValue
RecommendationOptionsProjectedUtilizationMetricsDurationExpected
RecommendationOptionsProjectedUtilizationMetricsDurationLowerBound
RecommendationOptionsProjectedUtilizationMetricsDurationUpperBound
RecommendationOptionsSavingsOpportunityPercentage
UtilizationMetricsDurationAverage
UtilizationMetricsDurationMaximum
UtilizationMetricsMemoryAverage
UtilizationMetricsMemoryMaximum
Unknown(UnknownVariantValue)
Unknown
contains new variants that have been added since this code was generated.
Implementations§
source§impl ExportableLambdaFunctionField
impl ExportableLambdaFunctionField
sourcepub fn as_str(&self) -> &str
pub fn as_str(&self) -> &str
Returns the &str
value of the enum member.
Examples found in repository?
More examples
250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302
pub fn serialize_structure_crate_input_export_lambda_function_recommendations_input(
object: &mut aws_smithy_json::serialize::JsonObjectWriter,
input: &crate::input::ExportLambdaFunctionRecommendationsInput,
) -> Result<(), aws_smithy_http::operation::error::SerializationError> {
if let Some(var_59) = &input.account_ids {
let mut array_60 = object.key("accountIds").start_array();
for item_61 in var_59 {
{
array_60.value().string(item_61.as_str());
}
}
array_60.finish();
}
if let Some(var_62) = &input.filters {
let mut array_63 = object.key("filters").start_array();
for item_64 in var_62 {
{
#[allow(unused_mut)]
let mut object_65 = array_63.value().start_object();
crate::json_ser::serialize_structure_crate_model_lambda_function_recommendation_filter(&mut object_65, item_64)?;
object_65.finish();
}
}
array_63.finish();
}
if let Some(var_66) = &input.fields_to_export {
let mut array_67 = object.key("fieldsToExport").start_array();
for item_68 in var_66 {
{
array_67.value().string(item_68.as_str());
}
}
array_67.finish();
}
if let Some(var_69) = &input.s3_destination_config {
#[allow(unused_mut)]
let mut object_70 = object.key("s3DestinationConfig").start_object();
crate::json_ser::serialize_structure_crate_model_s3_destination_config(
&mut object_70,
var_69,
)?;
object_70.finish();
}
if let Some(var_71) = &input.file_format {
object.key("fileFormat").string(var_71.as_str());
}
if input.include_member_accounts {
object
.key("includeMemberAccounts")
.boolean(input.include_member_accounts);
}
Ok(())
}
Trait Implementations§
source§impl AsRef<str> for ExportableLambdaFunctionField
impl AsRef<str> for ExportableLambdaFunctionField
source§impl Clone for ExportableLambdaFunctionField
impl Clone for ExportableLambdaFunctionField
source§fn clone(&self) -> ExportableLambdaFunctionField
fn clone(&self) -> ExportableLambdaFunctionField
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl From<&str> for ExportableLambdaFunctionField
impl From<&str> for ExportableLambdaFunctionField
source§impl Hash for ExportableLambdaFunctionField
impl Hash for ExportableLambdaFunctionField
source§impl Ord for ExportableLambdaFunctionField
impl Ord for ExportableLambdaFunctionField
source§fn cmp(&self, other: &ExportableLambdaFunctionField) -> Ordering
fn cmp(&self, other: &ExportableLambdaFunctionField) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq<ExportableLambdaFunctionField> for ExportableLambdaFunctionField
impl PartialEq<ExportableLambdaFunctionField> for ExportableLambdaFunctionField
source§fn eq(&self, other: &ExportableLambdaFunctionField) -> bool
fn eq(&self, other: &ExportableLambdaFunctionField) -> bool
source§impl PartialOrd<ExportableLambdaFunctionField> for ExportableLambdaFunctionField
impl PartialOrd<ExportableLambdaFunctionField> for ExportableLambdaFunctionField
source§fn partial_cmp(&self, other: &ExportableLambdaFunctionField) -> Option<Ordering>
fn partial_cmp(&self, other: &ExportableLambdaFunctionField) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moreimpl Eq for ExportableLambdaFunctionField
impl StructuralEq for ExportableLambdaFunctionField
impl StructuralPartialEq for ExportableLambdaFunctionField
Auto Trait Implementations§
impl RefUnwindSafe for ExportableLambdaFunctionField
impl Send for ExportableLambdaFunctionField
impl Sync for ExportableLambdaFunctionField
impl Unpin for ExportableLambdaFunctionField
impl UnwindSafe for ExportableLambdaFunctionField
Blanket Implementations§
source§impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Qwhere
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.