Interface CfnApplication.PortalOptionsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplication.PortalOptionsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplication
@Stability(Stable)
public static interface CfnApplication.PortalOptionsConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
A structure that describes the options for the portal associated with an application.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.sso.*;
PortalOptionsConfigurationProperty portalOptionsConfigurationProperty = PortalOptionsConfigurationProperty.builder()
.signInOptions(SignInOptionsProperty.builder()
.origin("origin")
// the properties below are optional
.applicationUrl("applicationUrl")
.build())
.visibility("visibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnApplication.PortalOptionsConfigurationPropertystatic final classAn implementation forCfnApplication.PortalOptionsConfigurationProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getSignInOptions
A structure that describes the sign-in options for the access portal.Returns union: either
IResolvableorCfnApplication.SignInOptionsProperty- See Also:
-
getVisibility
Indicates whether this application is visible in the access portal.- See Also:
-
builder
-