Interface ListActionTypesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodePipelineResponse.Builder,CopyableBuilder<ListActionTypesResponse.Builder,ListActionTypesResponse>,SdkBuilder<ListActionTypesResponse.Builder,ListActionTypesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListActionTypesResponse
public static interface ListActionTypesResponse.Builder extends CodePipelineResponse.Builder, SdkPojo, CopyableBuilder<ListActionTypesResponse.Builder,ListActionTypesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListActionTypesResponse.BuilderactionTypes(Collection<ActionType> actionTypes)Provides details of the action types.ListActionTypesResponse.BuilderactionTypes(Consumer<ActionType.Builder>... actionTypes)Provides details of the action types.ListActionTypesResponse.BuilderactionTypes(ActionType... actionTypes)Provides details of the action types.ListActionTypesResponse.BuildernextToken(String nextToken)If the amount of returned information is significantly large, an identifier is also returned.-
Methods inherited from interface software.amazon.awssdk.services.codepipeline.model.CodePipelineResponse.Builder
build, responseMetadata, responseMetadata
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
actionTypes
ListActionTypesResponse.Builder actionTypes(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.
-
actionTypes
ListActionTypesResponse.Builder actionTypes(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.
-
actionTypes
ListActionTypesResponse.Builder actionTypes(Consumer<ActionType.Builder>... actionTypes)
Provides details of the action types.
This is a convenience method that creates an instance of theActionType.Builderavoiding the need to create one manually viaActionType.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#actionTypes(List.) - Parameters:
actionTypes- a consumer that will call methods onActionType.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#actionTypes(java.util.Collection)
-
nextToken
ListActionTypesResponse.Builder nextToken(String nextToken)
If the amount of returned information is significantly large, an identifier is also returned. It 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. It 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.
-
-