Class DescribeTrustedAdvisorChecksResult
- java.lang.Object
-
- com.amazonaws.services.support.model.DescribeTrustedAdvisorChecksResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeTrustedAdvisorChecksResult extends Object implements Serializable, Cloneable
Information about the Trusted Advisor checks returned by the DescribeTrustedAdvisorChecks operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeTrustedAdvisorChecksResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeTrustedAdvisorChecksResult
clone()
boolean
equals(Object obj)
List<TrustedAdvisorCheckDescription>
getChecks()
Information about all available Trusted Advisor checks.int
hashCode()
void
setChecks(Collection<TrustedAdvisorCheckDescription> checks)
Information about all available Trusted Advisor checks.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeTrustedAdvisorChecksResult
withChecks(TrustedAdvisorCheckDescription... checks)
Information about all available Trusted Advisor checks.DescribeTrustedAdvisorChecksResult
withChecks(Collection<TrustedAdvisorCheckDescription> checks)
Information about all available Trusted Advisor checks.
-
-
-
Method Detail
-
getChecks
public List<TrustedAdvisorCheckDescription> getChecks()
Information about all available Trusted Advisor checks.
- Returns:
- Information about all available Trusted Advisor checks.
-
setChecks
public void setChecks(Collection<TrustedAdvisorCheckDescription> checks)
Information about all available Trusted Advisor checks.
- Parameters:
checks
- Information about all available Trusted Advisor checks.
-
withChecks
public DescribeTrustedAdvisorChecksResult withChecks(TrustedAdvisorCheckDescription... checks)
Information about all available Trusted Advisor checks.
NOTE: This method appends the values to the existing list (if any). Use
setChecks(java.util.Collection)
orwithChecks(java.util.Collection)
if you want to override the existing values.- Parameters:
checks
- Information about all available Trusted Advisor checks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withChecks
public DescribeTrustedAdvisorChecksResult withChecks(Collection<TrustedAdvisorCheckDescription> checks)
Information about all available Trusted Advisor checks.
- Parameters:
checks
- Information about all available 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:
toString
in classObject
- Returns:
- A string representation of this object.
- See Also:
Object.toString()
-
clone
public DescribeTrustedAdvisorChecksResult clone()
-
-