Interface ListEnvironmentsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,Cloud9Response.Builder,CopyableBuilder<ListEnvironmentsResponse.Builder,ListEnvironmentsResponse>,SdkBuilder<ListEnvironmentsResponse.Builder,ListEnvironmentsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListEnvironmentsResponse
public static interface ListEnvironmentsResponse.Builder extends Cloud9Response.Builder, SdkPojo, CopyableBuilder<ListEnvironmentsResponse.Builder,ListEnvironmentsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListEnvironmentsResponse.BuilderenvironmentIds(String... environmentIds)The list of environment identifiers.ListEnvironmentsResponse.BuilderenvironmentIds(Collection<String> environmentIds)The list of environment identifiers.ListEnvironmentsResponse.BuildernextToken(String nextToken)If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token.-
Methods inherited from interface software.amazon.awssdk.services.cloud9.model.Cloud9Response.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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
ListEnvironmentsResponse.Builder nextToken(String nextToken)
If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call.
- Parameters:
nextToken- If there are more than 25 items in the list, only the first 25 items are returned, along with a unique string called a next token. To get the next batch of items in the list, call this operation again, adding the next token to the call.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentIds
ListEnvironmentsResponse.Builder environmentIds(Collection<String> environmentIds)
The list of environment identifiers.
- Parameters:
environmentIds- The list of environment identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
environmentIds
ListEnvironmentsResponse.Builder environmentIds(String... environmentIds)
The list of environment identifiers.
- Parameters:
environmentIds- The list of environment identifiers.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-