Class DescribeTrustedAdvisorCheckSummariesResult
- java.lang.Object
-
- com.amazonaws.services.support.model.DescribeTrustedAdvisorCheckSummariesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class DescribeTrustedAdvisorCheckSummariesResult extends Object implements Serializable, Cloneable
The summaries of the Trusted Advisor checks returned by the DescribeTrustedAdvisorCheckSummaries operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeTrustedAdvisorCheckSummariesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeTrustedAdvisorCheckSummariesResultclone()booleanequals(Object obj)List<TrustedAdvisorCheckSummary>getSummaries()The summary information for the requested Trusted Advisor checks.inthashCode()voidsetSummaries(Collection<TrustedAdvisorCheckSummary> summaries)The summary information for the requested Trusted Advisor checks.StringtoString()Returns a string representation of this object; useful for testing and debugging.DescribeTrustedAdvisorCheckSummariesResultwithSummaries(TrustedAdvisorCheckSummary... summaries)The summary information for the requested Trusted Advisor checks.DescribeTrustedAdvisorCheckSummariesResultwithSummaries(Collection<TrustedAdvisorCheckSummary> summaries)The summary information for the requested Trusted Advisor checks.
-
-
-
Method Detail
-
getSummaries
public List<TrustedAdvisorCheckSummary> getSummaries()
The summary information for the requested Trusted Advisor checks.
- Returns:
- The summary information for the requested Trusted Advisor checks.
-
setSummaries
public void setSummaries(Collection<TrustedAdvisorCheckSummary> summaries)
The summary information for the requested Trusted Advisor checks.
- Parameters:
summaries- The summary information for the requested Trusted Advisor checks.
-
withSummaries
public DescribeTrustedAdvisorCheckSummariesResult withSummaries(TrustedAdvisorCheckSummary... summaries)
The summary information for the requested Trusted Advisor checks.
NOTE: This method appends the values to the existing list (if any). Use
setSummaries(java.util.Collection)orwithSummaries(java.util.Collection)if you want to override the existing values.- Parameters:
summaries- The summary information for the requested Trusted Advisor checks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withSummaries
public DescribeTrustedAdvisorCheckSummariesResult withSummaries(Collection<TrustedAdvisorCheckSummary> summaries)
The summary information for the requested Trusted Advisor checks.
- Parameters:
summaries- The summary information for the requested Trusted Advisor checks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
toString
public String toString()
Returns a string representation of this object; useful for testing and debugging.- Overrides:
toStringin classObject- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeTrustedAdvisorCheckSummariesResult clone()
-
-