Interface SearchSecurityProfilesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ConnectResponse.Builder,CopyableBuilder<SearchSecurityProfilesResponse.Builder,SearchSecurityProfilesResponse>,SdkBuilder<SearchSecurityProfilesResponse.Builder,SearchSecurityProfilesResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- SearchSecurityProfilesResponse
public static interface SearchSecurityProfilesResponse.Builder extends ConnectResponse.Builder, SdkPojo, CopyableBuilder<SearchSecurityProfilesResponse.Builder,SearchSecurityProfilesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description SearchSecurityProfilesResponse.BuilderapproximateTotalCount(Long approximateTotalCount)The total number of security profiles which matched your search query.SearchSecurityProfilesResponse.BuildernextToken(String nextToken)If there are additional results, this is the token for the next set of results.SearchSecurityProfilesResponse.BuildersecurityProfiles(Collection<SecurityProfileSearchSummary> securityProfiles)Information about the security profiles.SearchSecurityProfilesResponse.BuildersecurityProfiles(Consumer<SecurityProfileSearchSummary.Builder>... securityProfiles)Information about the security profiles.SearchSecurityProfilesResponse.BuildersecurityProfiles(SecurityProfileSearchSummary... securityProfiles)Information about the security profiles.-
Methods inherited from interface software.amazon.awssdk.services.connect.model.ConnectResponse.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
-
securityProfiles
SearchSecurityProfilesResponse.Builder securityProfiles(Collection<SecurityProfileSearchSummary> securityProfiles)
Information about the security profiles.
- Parameters:
securityProfiles- Information about the security profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityProfiles
SearchSecurityProfilesResponse.Builder securityProfiles(SecurityProfileSearchSummary... securityProfiles)
Information about the security profiles.
- Parameters:
securityProfiles- Information about the security profiles.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
securityProfiles
SearchSecurityProfilesResponse.Builder securityProfiles(Consumer<SecurityProfileSearchSummary.Builder>... securityProfiles)
Information about the security profiles.
This is a convenience method that creates an instance of theSecurityProfileSearchSummary.Builderavoiding the need to create one manually viaSecurityProfileSearchSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#securityProfiles(List.) - Parameters:
securityProfiles- a consumer that will call methods onSecurityProfileSearchSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#securityProfiles(java.util.Collection)
-
nextToken
SearchSecurityProfilesResponse.Builder nextToken(String nextToken)
If there are additional results, this is the token for the next set of results.
- Parameters:
nextToken- If there are additional results, this is the token for the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
approximateTotalCount
SearchSecurityProfilesResponse.Builder approximateTotalCount(Long approximateTotalCount)
The total number of security profiles which matched your search query.
- Parameters:
approximateTotalCount- The total number of security profiles which matched your search query.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-