Class: Aws::SSOAdmin::Types::SignInOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SSOAdmin::Types::SignInOptions
- Defined in:
- gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb
Overview
A structure that describes the sign-in options for an application portal.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#application_url ⇒ String
The URL that accepts authentication requests for an application.
-
#origin ⇒ String
This determines how IAM Identity Center navigates the user to the target application.
Instance Attribute Details
#application_url ⇒ String
The URL that accepts authentication requests for an application.
This is a required parameter if the Origin
parameter is
APPLICATION
.
3876 3877 3878 3879 3880 3881 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 3876 class SignInOptions < Struct.new( :application_url, :origin) SENSITIVE = [] include Aws::Structure end |
#origin ⇒ String
This determines how IAM Identity Center navigates the user to the target application. It can be one of the following values:
APPLICATION
: IAM Identity Center redirects the customer to the configuredApplicationUrl
.IDENTITY_CENTER
: IAM Identity Center uses SAML identity-provider initiated authentication to sign the customer directly into a SAML-based application.
3876 3877 3878 3879 3880 3881 |
# File 'gems/aws-sdk-ssoadmin/lib/aws-sdk-ssoadmin/types.rb', line 3876 class SignInOptions < Struct.new( :application_url, :origin) SENSITIVE = [] include Aws::Structure end |