public class ListVersionsByFunctionResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Modifier and Type | Field and Description |
---|---|
private java.lang.String |
nextMarker
A string, present if there are more function versions.
|
private SdkInternalList<FunctionConfiguration> |
versions
A list of Lambda function versions.
|
Constructor and Description |
---|
ListVersionsByFunctionResult() |
Modifier and Type | Method and Description |
---|---|
ListVersionsByFunctionResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.lang.String |
getNextMarker()
A string, present if there are more function versions.
|
java.util.List<FunctionConfiguration> |
getVersions()
A list of Lambda function versions.
|
int |
hashCode() |
void |
setNextMarker(java.lang.String nextMarker)
A string, present if there are more function versions.
|
void |
setVersions(java.util.Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListVersionsByFunctionResult |
withNextMarker(java.lang.String nextMarker)
A string, present if there are more function versions.
|
ListVersionsByFunctionResult |
withVersions(java.util.Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
|
ListVersionsByFunctionResult |
withVersions(FunctionConfiguration... versions)
A list of Lambda function versions.
|
private java.lang.String nextMarker
A string, present if there are more function versions.
private SdkInternalList<FunctionConfiguration> versions
A list of Lambda function versions.
public void setNextMarker(java.lang.String nextMarker)
A string, present if there are more function versions.
nextMarker
- A string, present if there are more function versions.public java.lang.String getNextMarker()
A string, present if there are more function versions.
public ListVersionsByFunctionResult withNextMarker(java.lang.String nextMarker)
A string, present if there are more function versions.
nextMarker
- A string, present if there are more function versions.public java.util.List<FunctionConfiguration> getVersions()
A list of Lambda function versions.
public void setVersions(java.util.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(java.util.Collection<FunctionConfiguration> versions)
A list of Lambda function versions.
versions
- A list of Lambda function versions.public java.lang.String toString()
toString
in class java.lang.Object
Object.toString()
public boolean equals(java.lang.Object obj)
equals
in class java.lang.Object
public int hashCode()
hashCode
in class java.lang.Object
public ListVersionsByFunctionResult clone()
clone
in class java.lang.Object