Interface ListStackRefactorActionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CloudFormationResponse.Builder,CopyableBuilder<ListStackRefactorActionsResponse.Builder,ListStackRefactorActionsResponse>,SdkBuilder<ListStackRefactorActionsResponse.Builder,ListStackRefactorActionsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListStackRefactorActionsResponse
@Mutable @NotThreadSafe public static interface ListStackRefactorActionsResponse.Builder extends CloudFormationResponse.Builder, SdkPojo, CopyableBuilder<ListStackRefactorActionsResponse.Builder,ListStackRefactorActionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListStackRefactorActionsResponse.BuildernextToken(String nextToken)If the request doesn't return all the remaining results,NextTokenis set to a token.ListStackRefactorActionsResponse.BuilderstackRefactorActions(Collection<StackRefactorAction> stackRefactorActions)The stack refactor actions.ListStackRefactorActionsResponse.BuilderstackRefactorActions(Consumer<StackRefactorAction.Builder>... stackRefactorActions)The stack refactor actions.ListStackRefactorActionsResponse.BuilderstackRefactorActions(StackRefactorAction... stackRefactorActions)The stack refactor actions.-
Methods inherited from interface software.amazon.awssdk.services.cloudformation.model.CloudFormationResponse.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
-
stackRefactorActions
ListStackRefactorActionsResponse.Builder stackRefactorActions(Collection<StackRefactorAction> stackRefactorActions)
The stack refactor actions.
- Parameters:
stackRefactorActions- The stack refactor actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackRefactorActions
ListStackRefactorActionsResponse.Builder stackRefactorActions(StackRefactorAction... stackRefactorActions)
The stack refactor actions.
- Parameters:
stackRefactorActions- The stack refactor actions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stackRefactorActions
ListStackRefactorActionsResponse.Builder stackRefactorActions(Consumer<StackRefactorAction.Builder>... stackRefactorActions)
The stack refactor actions.
This is a convenience method that creates an instance of theStackRefactorAction.Builderavoiding the need to create one manually viaStackRefactorAction.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#stackRefactorActions(List.) - Parameters:
stackRefactorActions- a consumer that will call methods onStackRefactorAction.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#stackRefactorActions(java.util.Collection)
-
nextToken
ListStackRefactorActionsResponse.Builder nextToken(String nextToken)
If the request doesn't return all the remaining results,
NextTokenis set to a token. To retrieve the next set of results, call this action again and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Parameters:
nextToken- If the request doesn't return all the remaining results,NextTokenis set to a token. To retrieve the next set of results, call this action again and assign that token to the request object'sNextTokenparameter. If the request returns all results,NextTokenis set tonull.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-