public class ListFunctionsResult
extends java.lang.Object
implements java.io.Serializable, java.lang.Cloneable
Contains a list of AWS Lambda function configurations (see FunctionConfiguration.
Modifier and Type | Field and Description |
---|---|
private SdkInternalList<FunctionConfiguration> |
functions
A list of Lambda functions.
|
private java.lang.String |
nextMarker
A string, present if there are more functions.
|
Constructor and Description |
---|
ListFunctionsResult() |
Modifier and Type | Method and Description |
---|---|
ListFunctionsResult |
clone() |
boolean |
equals(java.lang.Object obj) |
java.util.List<FunctionConfiguration> |
getFunctions()
A list of Lambda functions.
|
java.lang.String |
getNextMarker()
A string, present if there are more functions.
|
int |
hashCode() |
void |
setFunctions(java.util.Collection<FunctionConfiguration> functions)
A list of Lambda functions.
|
void |
setNextMarker(java.lang.String nextMarker)
A string, present if there are more functions.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
ListFunctionsResult |
withFunctions(java.util.Collection<FunctionConfiguration> functions)
A list of Lambda functions.
|
ListFunctionsResult |
withFunctions(FunctionConfiguration... functions)
A list of Lambda functions.
|
ListFunctionsResult |
withNextMarker(java.lang.String nextMarker)
A string, present if there are more functions.
|
private java.lang.String nextMarker
A string, present if there are more functions.
private SdkInternalList<FunctionConfiguration> functions
A list of Lambda functions.
public void setNextMarker(java.lang.String nextMarker)
A string, present if there are more functions.
nextMarker
- A string, present if there are more functions.public java.lang.String getNextMarker()
A string, present if there are more functions.
public ListFunctionsResult withNextMarker(java.lang.String nextMarker)
A string, present if there are more functions.
nextMarker
- A string, present if there are more functions.public java.util.List<FunctionConfiguration> getFunctions()
A list of Lambda functions.
public void setFunctions(java.util.Collection<FunctionConfiguration> functions)
A list of Lambda functions.
functions
- A list of Lambda functions.public ListFunctionsResult withFunctions(FunctionConfiguration... functions)
A list of Lambda functions.
NOTE: This method appends the values to the existing list (if
any). Use setFunctions(java.util.Collection)
or
withFunctions(java.util.Collection)
if you want to override the
existing values.
functions
- A list of Lambda functions.public ListFunctionsResult withFunctions(java.util.Collection<FunctionConfiguration> functions)
A list of Lambda functions.
functions
- A list of Lambda functions.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 ListFunctionsResult clone()
clone
in class java.lang.Object