Class ListConfigurationsResult
- java.lang.Object
-
- com.amazonaws.services.applicationdiscovery.model.ListConfigurationsResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListConfigurationsResult extends Object implements Serializable, Cloneable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListConfigurationsResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListConfigurationsResultclone()booleanequals(Object obj)List<Map<String,String>>getConfigurations()Returns configuration details, including the configuration ID, attribute names, and attribute values.StringgetNextToken()The call returns a token.inthashCode()voidsetConfigurations(Collection<Map<String,String>> configurations)Returns configuration details, including the configuration ID, attribute names, and attribute values.voidsetNextToken(String nextToken)The call returns a token.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListConfigurationsResultwithConfigurations(Collection<Map<String,String>> configurations)Returns configuration details, including the configuration ID, attribute names, and attribute values.ListConfigurationsResultwithConfigurations(Map<String,String>... configurations)Returns configuration details, including the configuration ID, attribute names, and attribute values.ListConfigurationsResultwithNextToken(String nextToken)The call returns a token.
-
-
-
Method Detail
-
getConfigurations
public List<Map<String,String>> getConfigurations()
Returns configuration details, including the configuration ID, attribute names, and attribute values.
- Returns:
- Returns configuration details, including the configuration ID, attribute names, and attribute values.
-
setConfigurations
public void setConfigurations(Collection<Map<String,String>> configurations)
Returns configuration details, including the configuration ID, attribute names, and attribute values.
- Parameters:
configurations- Returns configuration details, including the configuration ID, attribute names, and attribute values.
-
withConfigurations
public ListConfigurationsResult withConfigurations(Map<String,String>... configurations)
Returns configuration details, including the configuration ID, attribute names, and attribute values.
NOTE: This method appends the values to the existing list (if any). Use
setConfigurations(java.util.Collection)orwithConfigurations(java.util.Collection)if you want to override the existing values.- Parameters:
configurations- Returns configuration details, including the configuration ID, attribute names, and attribute values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withConfigurations
public ListConfigurationsResult withConfigurations(Collection<Map<String,String>> configurations)
Returns configuration details, including the configuration ID, attribute names, and attribute values.
- Parameters:
configurations- Returns configuration details, including the configuration ID, attribute names, and attribute values.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
The call returns a token. Use this token to get the next set of results.
- Parameters:
nextToken- The call returns a token. Use this token to get the next set of results.
-
getNextToken
public String getNextToken()
The call returns a token. Use this token to get the next set of results.
- Returns:
- The call returns a token. Use this token to get the next set of results.
-
withNextToken
public ListConfigurationsResult withNextToken(String nextToken)
The call returns a token. Use this token to get the next set of results.
- Parameters:
nextToken- The call returns a token. Use this token to get the next set of results.- 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 ListConfigurationsResult clone()
-
-