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: