[−][src]Struct rusoto_elbv2::AuthenticateOidcActionConfig
Request parameters when using an identity provider (IdP) that is compliant with OpenID Connect (OIDC) to authenticate users.
Fields
authentication_request_extra_params: Option<HashMap<String, String>>
The query parameters (up to 10) to include in the redirect request to the authorization endpoint.
The authorization endpoint of the IdP. This must be a full URL, including the HTTPS protocol, the domain, and the path.
client_id: String
The OAuth 2.0 client identifier.
client_secret: Option<String>
The OAuth 2.0 client secret. This parameter is required if you are creating a rule. If you are modifying a rule, you can omit this parameter if you set UseExistingClientSecret
to true.
issuer: String
The OIDC issuer identifier of the IdP. This must be a full URL, including the HTTPS protocol, the domain, and the path.
on_unauthenticated_request: Option<String>
The behavior if the user is not authenticated. The following are possible values:
-
deny
- Return an HTTP 401 Unauthorized error.
-
allow
- Allow the request to be forwarded to the target.
-
authenticate
- Redirect the request to the IdP authorization endpoint. This is the default value.
scope: Option<String>
The set of user claims to be requested from the IdP. The default is openid
.
To verify which scope values your IdP supports and how to separate multiple values, see the documentation for your IdP.
The name of the cookie used to maintain session information. The default is AWSELBAuthSessionCookie.
session_timeout: Option<i64>
The maximum duration of the authentication session, in seconds. The default is 604800 seconds (7 days).
token_endpoint: String
The token endpoint of the IdP. This must be a full URL, including the HTTPS protocol, the domain, and the path.
use_existing_client_secret: Option<bool>
Indicates whether to use the existing client secret when modifying a rule. If you are creating a rule, you can omit this parameter or set it to false.
user_info_endpoint: String
The user info endpoint of the IdP. This must be a full URL, including the HTTPS protocol, the domain, and the path.
Trait Implementations
impl PartialEq<AuthenticateOidcActionConfig> for AuthenticateOidcActionConfig
[src]
fn eq(&self, other: &AuthenticateOidcActionConfig) -> bool
[src]
fn ne(&self, other: &AuthenticateOidcActionConfig) -> bool
[src]
impl Default for AuthenticateOidcActionConfig
[src]
impl Clone for AuthenticateOidcActionConfig
[src]
fn clone(&self) -> AuthenticateOidcActionConfig
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl Debug for AuthenticateOidcActionConfig
[src]
Auto Trait Implementations
impl Send for AuthenticateOidcActionConfig
impl Sync for AuthenticateOidcActionConfig
Blanket Implementations
impl<T> From for T
[src]
impl<T, U> Into for T where
U: From<T>,
[src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
impl<T, U> TryFrom for T where
T: From<U>,
[src]
T: From<U>,
type Error = !
try_from
)The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T> Borrow for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T, U> TryInto for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
try_from
)The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
fn get_type_id(&self) -> TypeId
[src]
impl<T> Erased for T
impl<T> Same for T
type Output = T
Should always be Self