Class DescribeConfigurationRecorderStatusResult
- java.lang.Object
-
- com.amazonaws.services.config.model.DescribeConfigurationRecorderStatusResult
-
- All Implemented Interfaces:
Serializable
,Cloneable
public class DescribeConfigurationRecorderStatusResult extends Object implements Serializable, Cloneable
The output for the DescribeConfigurationRecorderStatus action in JSON format.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DescribeConfigurationRecorderStatusResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description DescribeConfigurationRecorderStatusResult
clone()
boolean
equals(Object obj)
List<ConfigurationRecorderStatus>
getConfigurationRecordersStatus()
A list that contains status of the specified recorders.int
hashCode()
void
setConfigurationRecordersStatus(Collection<ConfigurationRecorderStatus> configurationRecordersStatus)
A list that contains status of the specified recorders.String
toString()
Returns a string representation of this object; useful for testing and debugging.DescribeConfigurationRecorderStatusResult
withConfigurationRecordersStatus(ConfigurationRecorderStatus... configurationRecordersStatus)
A list that contains status of the specified recorders.DescribeConfigurationRecorderStatusResult
withConfigurationRecordersStatus(Collection<ConfigurationRecorderStatus> configurationRecordersStatus)
A list that contains status of the specified recorders.
-
-
-
Method Detail
-
getConfigurationRecordersStatus
public List<ConfigurationRecorderStatus> getConfigurationRecordersStatus()
A list that contains status of the specified recorders.
- Returns:
- A list that contains status of the specified recorders.
-
setConfigurationRecordersStatus
public void setConfigurationRecordersStatus(Collection<ConfigurationRecorderStatus> configurationRecordersStatus)
A list that contains status of the specified recorders.
- Parameters:
configurationRecordersStatus
- A list that contains status of the specified recorders.
-
withConfigurationRecordersStatus
public DescribeConfigurationRecorderStatusResult withConfigurationRecordersStatus(ConfigurationRecorderStatus... configurationRecordersStatus)
A list that contains status of the specified recorders.
NOTE: This method appends the values to the existing list (if any). Use
setConfigurationRecordersStatus(java.util.Collection)
orwithConfigurationRecordersStatus(java.util.Collection)
if you want to override the existing values.- Parameters:
configurationRecordersStatus
- A list that contains status of the specified recorders.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withConfigurationRecordersStatus
public DescribeConfigurationRecorderStatusResult withConfigurationRecordersStatus(Collection<ConfigurationRecorderStatus> configurationRecordersStatus)
A list that contains status of the specified recorders.
- Parameters:
configurationRecordersStatus
- A list that contains status of the specified recorders.- 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 DescribeConfigurationRecorderStatusResult clone()
-
-