Struct aws_sdk_appflow::types::OAuthProperties
source · #[non_exhaustive]pub struct OAuthProperties { /* private fields */ }Expand description
The OAuth properties required for OAuth type authentication.
Implementations§
source§impl OAuthProperties
impl OAuthProperties
sourcepub fn token_url(&self) -> Option<&str>
pub fn token_url(&self) -> Option<&str>
The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.
sourcepub fn auth_code_url(&self) -> Option<&str>
pub fn auth_code_url(&self) -> Option<&str>
The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.
sourcepub fn o_auth_scopes(&self) -> Option<&[String]>
pub fn o_auth_scopes(&self) -> Option<&[String]>
The OAuth scopes required for OAuth type authentication.
source§impl OAuthProperties
impl OAuthProperties
sourcepub fn builder() -> OAuthPropertiesBuilder
pub fn builder() -> OAuthPropertiesBuilder
Creates a new builder-style object to manufacture OAuthProperties.
Trait Implementations§
source§impl Clone for OAuthProperties
impl Clone for OAuthProperties
source§fn clone(&self) -> OAuthProperties
fn clone(&self) -> OAuthProperties
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 OAuthProperties
impl Debug for OAuthProperties
source§impl PartialEq<OAuthProperties> for OAuthProperties
impl PartialEq<OAuthProperties> for OAuthProperties
source§fn eq(&self, other: &OAuthProperties) -> bool
fn eq(&self, other: &OAuthProperties) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for OAuthProperties
Auto Trait Implementations§
impl RefUnwindSafe for OAuthProperties
impl Send for OAuthProperties
impl Sync for OAuthProperties
impl Unpin for OAuthProperties
impl UnwindSafe for OAuthProperties
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