Class ListActionTypesResult
- java.lang.Object
-
- com.amazonaws.services.codepipeline.model.ListActionTypesResult
-
- All Implemented Interfaces:
Serializable,Cloneable
public class ListActionTypesResult extends Object implements Serializable, Cloneable
Represents the output of a list action types action.
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ListActionTypesResult()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ListActionTypesResultclone()booleanequals(Object obj)List<ActionType>getActionTypes()Provides details of the action types.StringgetNextToken()If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.inthashCode()voidsetActionTypes(Collection<ActionType> actionTypes)Provides details of the action types.voidsetNextToken(String nextToken)If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.StringtoString()Returns a string representation of this object; useful for testing and debugging.ListActionTypesResultwithActionTypes(ActionType... actionTypes)Provides details of the action types.ListActionTypesResultwithActionTypes(Collection<ActionType> actionTypes)Provides details of the action types.ListActionTypesResultwithNextToken(String nextToken)If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
-
-
-
Method Detail
-
getActionTypes
public List<ActionType> getActionTypes()
Provides details of the action types.
- Returns:
- Provides details of the action types.
-
setActionTypes
public void setActionTypes(Collection<ActionType> actionTypes)
Provides details of the action types.
- Parameters:
actionTypes- Provides details of the action types.
-
withActionTypes
public ListActionTypesResult withActionTypes(ActionType... actionTypes)
Provides details of the action types.
NOTE: This method appends the values to the existing list (if any). Use
setActionTypes(java.util.Collection)orwithActionTypes(java.util.Collection)if you want to override the existing values.- Parameters:
actionTypes- Provides details of the action types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
withActionTypes
public ListActionTypesResult withActionTypes(Collection<ActionType> actionTypes)
Provides details of the action types.
- Parameters:
actionTypes- Provides details of the action types.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
setNextToken
public void setNextToken(String nextToken)
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
- Parameters:
nextToken- If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
-
getNextToken
public String getNextToken()
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
- Returns:
- If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
-
withNextToken
public ListActionTypesResult withNextToken(String nextToken)
If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.
- Parameters:
nextToken- If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.- 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 ListActionTypesResult clone()
-
-