Interface ListUserProfilesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CodeStarResponse.Builder,CopyableBuilder<ListUserProfilesResponse.Builder,ListUserProfilesResponse>,SdkBuilder<ListUserProfilesResponse.Builder,ListUserProfilesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- ListUserProfilesResponse
public static interface ListUserProfilesResponse.Builder extends CodeStarResponse.Builder, SdkPojo, CopyableBuilder<ListUserProfilesResponse.Builder,ListUserProfilesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListUserProfilesResponse.BuildernextToken(String nextToken)The continuation token to use when requesting the next set of results, if there are more results to be returned.ListUserProfilesResponse.BuilderuserProfiles(Collection<UserProfileSummary> userProfiles)All the user profiles configured in AWS CodeStar for an AWS account.ListUserProfilesResponse.BuilderuserProfiles(Consumer<UserProfileSummary.Builder>... userProfiles)All the user profiles configured in AWS CodeStar for an AWS account.ListUserProfilesResponse.BuilderuserProfiles(UserProfileSummary... userProfiles)All the user profiles configured in AWS CodeStar for an AWS account.-
Methods inherited from interface software.amazon.awssdk.services.codestar.model.CodeStarResponse.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
-
userProfiles
ListUserProfilesResponse.Builder userProfiles(Collection<UserProfileSummary> userProfiles)
All the user profiles configured in AWS CodeStar for an AWS account.
- Parameters:
userProfiles- All the user profiles configured in AWS CodeStar for an AWS account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProfiles
ListUserProfilesResponse.Builder userProfiles(UserProfileSummary... userProfiles)
All the user profiles configured in AWS CodeStar for an AWS account.
- Parameters:
userProfiles- All the user profiles configured in AWS CodeStar for an AWS account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
userProfiles
ListUserProfilesResponse.Builder userProfiles(Consumer<UserProfileSummary.Builder>... userProfiles)
All the user profiles configured in AWS CodeStar for an AWS account.
This is a convenience method that creates an instance of theUserProfileSummary.Builderavoiding the need to create one manually viaUserProfileSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#userProfiles(List.) - Parameters:
userProfiles- a consumer that will call methods onUserProfileSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#userProfiles(java.util.Collection)
-
nextToken
ListUserProfilesResponse.Builder nextToken(String nextToken)
The continuation token to use when requesting the next set of results, if there are more results to be returned.
- Parameters:
nextToken- The continuation token to use when requesting the next set of results, if there are more results to be returned.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-