Struct aws_sdk_appflow::model::OAuthCredentials
source · [−]#[non_exhaustive]pub struct OAuthCredentials { /* private fields */ }
Expand description
The OAuth credentials required for OAuth type authentication.
Implementations
sourceimpl OAuthCredentials
impl OAuthCredentials
sourcepub fn client_secret(&self) -> Option<&str>
pub fn client_secret(&self) -> Option<&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.
sourceimpl OAuthCredentials
impl OAuthCredentials
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OAuthCredentials
.
Trait Implementations
sourceimpl Clone for OAuthCredentials
impl Clone for OAuthCredentials
sourcefn clone(&self) -> OAuthCredentials
fn clone(&self) -> OAuthCredentials
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresourceimpl Debug for OAuthCredentials
impl Debug for OAuthCredentials
sourceimpl PartialEq<OAuthCredentials> for OAuthCredentials
impl PartialEq<OAuthCredentials> for OAuthCredentials
sourcefn eq(&self, other: &OAuthCredentials) -> bool
fn eq(&self, other: &OAuthCredentials) -> bool
impl StructuralPartialEq for OAuthCredentials
Auto Trait Implementations
impl RefUnwindSafe for OAuthCredentials
impl Send for OAuthCredentials
impl Sync for OAuthCredentials
impl Unpin for OAuthCredentials
impl UnwindSafe for OAuthCredentials
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more