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