Class DescribeTrustedAdvisorCheckRefreshStatusesResult
- java.lang.Object
-
- com.amazonaws.services.support.model.DescribeTrustedAdvisorCheckRefreshStatusesResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeTrustedAdvisorCheckRefreshStatusesResult extends Object implements Serializable, Cloneable
The statuses of the Trusted Advisor checks returned by the DescribeTrustedAdvisorCheckRefreshStatuses operation.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeTrustedAdvisorCheckRefreshStatusesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeTrustedAdvisorCheckRefreshStatusesResult
clone()
boolean
equals(Object obj)
List<TrustedAdvisorCheckRefreshStatus>
getStatuses()
The refresh status of the specified Trusted Advisor checks.int
hashCode()
void
setStatuses(Collection<TrustedAdvisorCheckRefreshStatus> statuses)
The refresh status of the specified Trusted Advisor checks.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeTrustedAdvisorCheckRefreshStatusesResult
withStatuses(TrustedAdvisorCheckRefreshStatus... statuses)
The refresh status of the specified Trusted Advisor checks.DescribeTrustedAdvisorCheckRefreshStatusesResult
withStatuses(Collection<TrustedAdvisorCheckRefreshStatus> statuses)
The refresh status of the specified Trusted Advisor checks.
-
-
-
Method Detail
-
getStatuses
public List<TrustedAdvisorCheckRefreshStatus> getStatuses()
The refresh status of the specified Trusted Advisor checks.
- Returns:
- The refresh status of the specified Trusted Advisor checks.
-
setStatuses
public void setStatuses(Collection<TrustedAdvisorCheckRefreshStatus> statuses)
The refresh status of the specified Trusted Advisor checks.
- Parameters:
statuses
- The refresh status of the specified Trusted Advisor checks.
-
withStatuses
public DescribeTrustedAdvisorCheckRefreshStatusesResult withStatuses(TrustedAdvisorCheckRefreshStatus... statuses)
The refresh status of the specified Trusted Advisor checks.
NOTE: This method appends the values to the existing list (if any). Use
setStatuses(java.util.Collection)
orwithStatuses(java.util.Collection)
if you want to override the existing values.- Parameters:
statuses
- The refresh status of the specified Trusted Advisor checks.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withStatuses
public DescribeTrustedAdvisorCheckRefreshStatusesResult withStatuses(Collection<TrustedAdvisorCheckRefreshStatus> statuses)
The refresh status of the specified Trusted Advisor checks.
- Parameters:
statuses
- The refresh status of the specified 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 DescribeTrustedAdvisorCheckRefreshStatusesResult clone()
-
-