Interface CfnApplicationPropsMixin.PortalOptionsConfigurationProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnApplicationPropsMixin.PortalOptionsConfigurationProperty.Jsii$Proxy
- Enclosing class:
CfnApplicationPropsMixin
@Stability(Stable)
public static interface CfnApplicationPropsMixin.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.mixins.preview.services.sso.mixins.*;
PortalOptionsConfigurationProperty portalOptionsConfigurationProperty = PortalOptionsConfigurationProperty.builder()
.signInOptions(SignInOptionsProperty.builder()
.applicationUrl("applicationUrl")
.origin("origin")
.build())
.visibility("visibility")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classstatic final classAn implementation forCfnApplicationPropsMixin.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
IResolvableorCfnApplicationPropsMixin.SignInOptionsProperty- See Also:
-
getVisibility
Indicates whether this application is visible in the access portal.- See Also:
-
builder
@Stability(Stable) static CfnApplicationPropsMixin.PortalOptionsConfigurationProperty.Builder builder()
-