Struct aws_sdk_appfabric::types::AuthRequest
source · #[non_exhaustive]pub struct AuthRequest {
pub redirect_uri: Option<String>,
pub code: Option<String>,
}
Expand description
Contains authorization request information, which is required for Amazon Web Services AppFabric to get the OAuth2 access token for an application.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.redirect_uri: Option<String>
The redirect URL that is specified in the AuthURL and the application client.
code: Option<String>
The authorization code returned by the application after permission is granted in the application OAuth page (after clicking on the AuthURL).
Implementations§
source§impl AuthRequest
impl AuthRequest
sourcepub fn redirect_uri(&self) -> Option<&str>
pub fn redirect_uri(&self) -> Option<&str>
The redirect URL that is specified in the AuthURL and the application client.
source§impl AuthRequest
impl AuthRequest
sourcepub fn builder() -> AuthRequestBuilder
pub fn builder() -> AuthRequestBuilder
Creates a new builder-style object to manufacture AuthRequest
.
Trait Implementations§
source§impl Clone for AuthRequest
impl Clone for AuthRequest
source§fn clone(&self) -> AuthRequest
fn clone(&self) -> AuthRequest
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for AuthRequest
impl Debug for AuthRequest
source§impl PartialEq<AuthRequest> for AuthRequest
impl PartialEq<AuthRequest> for AuthRequest
source§fn eq(&self, other: &AuthRequest) -> bool
fn eq(&self, other: &AuthRequest) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthRequest
Auto Trait Implementations§
impl RefUnwindSafe for AuthRequest
impl Send for AuthRequest
impl Sync for AuthRequest
impl Unpin for AuthRequest
impl UnwindSafe for AuthRequest
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more