Struct aws_sdk_appflow::types::OAuthCredentials  
source · #[non_exhaustive]pub struct OAuthCredentials {
    pub client_id: String,
    pub client_secret: String,
    pub access_token: Option<String>,
    pub refresh_token: Option<String>,
    pub o_auth_request: Option<ConnectorOAuthRequest>,
}Expand description
The OAuth credentials required for OAuth type authentication.
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.client_id: StringThe identifier for the desired client.
client_secret: StringThe client secret used by the OAuth client to authenticate to the authorization server.
access_token: Option<String>The access token used to access protected SAPOData resources.
refresh_token: Option<String>The refresh token used to refresh expired access token.
o_auth_request: Option<ConnectorOAuthRequest>The OAuth requirement needed to request security tokens from the connector endpoint.
Implementations§
source§impl OAuthCredentials
 
impl OAuthCredentials
sourcepub fn client_secret(&self) -> &str
 
pub fn client_secret(&self) -> &str
The client secret used by the OAuth client to authenticate to the authorization server.
sourcepub fn access_token(&self) -> Option<&str>
 
pub fn access_token(&self) -> Option<&str>
The access token used to access protected SAPOData resources.
sourcepub fn refresh_token(&self) -> Option<&str>
 
pub fn refresh_token(&self) -> Option<&str>
The refresh token used to refresh expired access token.
sourcepub fn o_auth_request(&self) -> Option<&ConnectorOAuthRequest>
 
pub fn o_auth_request(&self) -> Option<&ConnectorOAuthRequest>
The OAuth requirement needed to request security tokens from the connector endpoint.
source§impl OAuthCredentials
 
impl OAuthCredentials
sourcepub fn builder() -> OAuthCredentialsBuilder
 
pub fn builder() -> OAuthCredentialsBuilder
Creates a new builder-style object to manufacture OAuthCredentials.
Trait Implementations§
source§impl Clone for OAuthCredentials
 
impl Clone for OAuthCredentials
source§fn clone(&self) -> OAuthCredentials
 
fn clone(&self) -> OAuthCredentials
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 OAuthCredentials
 
impl Debug for OAuthCredentials
source§impl PartialEq for OAuthCredentials
 
impl PartialEq for OAuthCredentials
impl StructuralPartialEq for OAuthCredentials
Auto Trait Implementations§
impl Freeze for OAuthCredentials
impl RefUnwindSafe for OAuthCredentials
impl Send for OAuthCredentials
impl Sync for OAuthCredentials
impl Unpin for OAuthCredentials
impl UnwindSafe for OAuthCredentials
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
source§impl<T> CloneToUninit for Twhere
    T: Clone,
 
impl<T> CloneToUninit for Twhere
    T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
 
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)source§impl<T> Instrument for T
 
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
 
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
 
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
 
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
 
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
 
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts 
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.