Interface ListApplicationAuthenticationMethodsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListApplicationAuthenticationMethodsResponse.Builder,ListApplicationAuthenticationMethodsResponse>,SdkBuilder<ListApplicationAuthenticationMethodsResponse.Builder,ListApplicationAuthenticationMethodsResponse>,SdkPojo,SdkResponse.Builder,SsoAdminResponse.Builder
- Enclosing class:
- ListApplicationAuthenticationMethodsResponse
public static interface ListApplicationAuthenticationMethodsResponse.Builder extends SsoAdminResponse.Builder, SdkPojo, CopyableBuilder<ListApplicationAuthenticationMethodsResponse.Builder,ListApplicationAuthenticationMethodsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListApplicationAuthenticationMethodsResponse.BuilderauthenticationMethods(Collection<AuthenticationMethodItem> authenticationMethods)An array list of authentication methods for the specified application.ListApplicationAuthenticationMethodsResponse.BuilderauthenticationMethods(Consumer<AuthenticationMethodItem.Builder>... authenticationMethods)An array list of authentication methods for the specified application.ListApplicationAuthenticationMethodsResponse.BuilderauthenticationMethods(AuthenticationMethodItem... authenticationMethods)An array list of authentication methods for the specified application.ListApplicationAuthenticationMethodsResponse.BuildernextToken(String nextToken)If present, this value indicates that more output is available than is included in the current response.-
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
-
Methods inherited from interface software.amazon.awssdk.services.ssoadmin.model.SsoAdminResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
authenticationMethods
ListApplicationAuthenticationMethodsResponse.Builder authenticationMethods(Collection<AuthenticationMethodItem> authenticationMethods)
An array list of authentication methods for the specified application.
- Parameters:
authenticationMethods- An array list of authentication methods for the specified application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMethods
ListApplicationAuthenticationMethodsResponse.Builder authenticationMethods(AuthenticationMethodItem... authenticationMethods)
An array list of authentication methods for the specified application.
- Parameters:
authenticationMethods- An array list of authentication methods for the specified application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
authenticationMethods
ListApplicationAuthenticationMethodsResponse.Builder authenticationMethods(Consumer<AuthenticationMethodItem.Builder>... authenticationMethods)
An array list of authentication methods for the specified application.
This is a convenience method that creates an instance of theAuthenticationMethodItem.Builderavoiding the need to create one manually viaAuthenticationMethodItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#authenticationMethods(List.) - Parameters:
authenticationMethods- a consumer that will call methods onAuthenticationMethodItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#authenticationMethods(java.util.Collection)
-
nextToken
ListApplicationAuthenticationMethodsResponse.Builder nextToken(String nextToken)
If present, this value indicates that more output is available than is included in the current response. Use this value in the
NextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull. This indicates that this is the last page of results.- Parameters:
nextToken- If present, this value indicates that more output is available than is included in the current response. Use this value in theNextTokenrequest parameter in a subsequent call to the operation to get the next part of the output. You should repeat this until theNextTokenresponse element comes back asnull. This indicates that this is the last page of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-