pub struct RecommendationSource {
pub recommendation_source_arn: Option<String>,
pub recommendation_source_type: Option<String>,
}
Expand description
Describes the source of a recommendation, such as an Amazon EC2 instance or Auto Scaling group.
Fields§
§recommendation_source_arn: Option<String>
The Amazon Resource Name (ARN) of the recommendation source.
recommendation_source_type: Option<String>
The resource type of the recommendation source.
Trait Implementations§
Source§impl Clone for RecommendationSource
impl Clone for RecommendationSource
Source§fn clone(&self) -> RecommendationSource
fn clone(&self) -> RecommendationSource
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 RecommendationSource
impl Debug for RecommendationSource
Source§impl Default for RecommendationSource
impl Default for RecommendationSource
Source§fn default() -> RecommendationSource
fn default() -> RecommendationSource
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecommendationSource
impl<'de> Deserialize<'de> for RecommendationSource
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 RecommendationSource
impl PartialEq for RecommendationSource
impl StructuralPartialEq for RecommendationSource
Auto Trait Implementations§
impl Freeze for RecommendationSource
impl RefUnwindSafe for RecommendationSource
impl Send for RecommendationSource
impl Sync for RecommendationSource
impl Unpin for RecommendationSource
impl UnwindSafe for RecommendationSource
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