public class ListVersionsByFunctionResult extends Object implements Serializable, Cloneable
Constructor and Description |
---|
ListVersionsByFunctionResult() |
Modifier and Type | Method and Description |
---|---|
ListVersionsByFunctionResult |
clone() |
boolean |
equals(Object obj) |
String |
getNextMarker()
A string, present if there are more function versions.
|
List<FunctionConfiguration> |
getVersions()
A list of Lambda function versions.
|
int |
hashCode() |
void |
setNextMarker(String nextMarker)
A string, present if there are more function versions.
|
void |
setVersions(Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
|
String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListVersionsByFunctionResult |
withNextMarker(String nextMarker)
A string, present if there are more function versions.
|
ListVersionsByFunctionResult |
withVersions(Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
|
ListVersionsByFunctionResult |
withVersions(FunctionConfiguration... versions)
A list of Lambda function versions.
|
public void setNextMarker(String nextMarker)
A string, present if there are more function versions.
nextMarker
- A string, present if there are more function versions.public String getNextMarker()
A string, present if there are more function versions.
public ListVersionsByFunctionResult withNextMarker(String nextMarker)
A string, present if there are more function versions.
nextMarker
- A string, present if there are more function versions.public List<FunctionConfiguration> getVersions()
A list of Lambda function versions.
public void setVersions(Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
versions
- A list of Lambda function versions.public ListVersionsByFunctionResult withVersions(FunctionConfiguration... versions)
A list of Lambda function versions.
NOTE: This method appends the values to the existing list (if
any). Use setVersions(java.util.Collection)
or
withVersions(java.util.Collection)
if you want to override the
existing values.
versions
- A list of Lambda function versions.public ListVersionsByFunctionResult withVersions(Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
versions
- A list of Lambda function versions.public String toString()
toString
in class Object
Object.toString()
public ListVersionsByFunctionResult clone()
Copyright © 2016. All rights reserved.