pub struct RecommendationSummary {
pub account_id: Option<String>,
pub recommendation_resource_type: Option<String>,
pub summaries: Option<Vec<Summary>>,
}
Expand description
A summary of a recommendation.
Fields§
§account_id: Option<String>
The AWS account ID of the recommendation summary.
recommendation_resource_type: Option<String>
The resource type of the recommendation.
summaries: Option<Vec<Summary>>
An array of objects that describe a recommendation summary.
Trait Implementations§
Source§impl Clone for RecommendationSummary
impl Clone for RecommendationSummary
Source§fn clone(&self) -> RecommendationSummary
fn clone(&self) -> RecommendationSummary
Returns a duplicate 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 RecommendationSummary
impl Debug for RecommendationSummary
Source§impl Default for RecommendationSummary
impl Default for RecommendationSummary
Source§fn default() -> RecommendationSummary
fn default() -> RecommendationSummary
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecommendationSummary
impl<'de> Deserialize<'de> for RecommendationSummary
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RecommendationSummary
impl PartialEq for RecommendationSummary
impl StructuralPartialEq for RecommendationSummary
Auto Trait Implementations§
impl Freeze for RecommendationSummary
impl RefUnwindSafe for RecommendationSummary
impl Send for RecommendationSummary
impl Sync for RecommendationSummary
impl Unpin for RecommendationSummary
impl UnwindSafe for RecommendationSummary
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