Interface PortalOptions.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<PortalOptions.Builder,PortalOptions>
,SdkBuilder<PortalOptions.Builder,PortalOptions>
,SdkPojo
- Enclosing class:
- PortalOptions
public static interface PortalOptions.Builder extends SdkPojo, CopyableBuilder<PortalOptions.Builder,PortalOptions>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default PortalOptions.Builder
signInOptions(Consumer<SignInOptions.Builder> signInOptions)
A structure that describes the sign-in options for the access portal.PortalOptions.Builder
signInOptions(SignInOptions signInOptions)
A structure that describes the sign-in options for the access portal.PortalOptions.Builder
visibility(String visibility)
Indicates whether this application is visible in the access portal.PortalOptions.Builder
visibility(ApplicationVisibility visibility)
Indicates whether this application is visible in the access portal.-
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
-
-
-
-
Method Detail
-
signInOptions
PortalOptions.Builder signInOptions(SignInOptions signInOptions)
A structure that describes the sign-in options for the access portal.
- Parameters:
signInOptions
- A structure that describes the sign-in options for the access portal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
signInOptions
default PortalOptions.Builder signInOptions(Consumer<SignInOptions.Builder> signInOptions)
A structure that describes the sign-in options for the access portal.
This is a convenience method that creates an instance of theSignInOptions.Builder
avoiding the need to create one manually viaSignInOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tosignInOptions(SignInOptions)
.- Parameters:
signInOptions
- a consumer that will call methods onSignInOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
signInOptions(SignInOptions)
-
visibility
PortalOptions.Builder visibility(String visibility)
Indicates whether this application is visible in the access portal.
- Parameters:
visibility
- Indicates whether this application is visible in the access portal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationVisibility
,ApplicationVisibility
-
visibility
PortalOptions.Builder visibility(ApplicationVisibility visibility)
Indicates whether this application is visible in the access portal.
- Parameters:
visibility
- Indicates whether this application is visible in the access portal.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationVisibility
,ApplicationVisibility
-
-