Struct aws_sdk_appflow::types::AuthenticationConfig
source · #[non_exhaustive]pub struct AuthenticationConfig { /* private fields */ }Expand description
Contains information about the authentication config that the connector supports.
Implementations§
source§impl AuthenticationConfig
impl AuthenticationConfig
sourcepub fn is_basic_auth_supported(&self) -> bool
pub fn is_basic_auth_supported(&self) -> bool
Indicates whether basic authentication is supported by the connector.
sourcepub fn is_api_key_auth_supported(&self) -> bool
pub fn is_api_key_auth_supported(&self) -> bool
Indicates whether API key authentication is supported by the connector
sourcepub fn is_o_auth2_supported(&self) -> bool
pub fn is_o_auth2_supported(&self) -> bool
Indicates whether OAuth 2.0 authentication is supported by the connector.
sourcepub fn is_custom_auth_supported(&self) -> bool
pub fn is_custom_auth_supported(&self) -> bool
Indicates whether custom authentication is supported by the connector
sourcepub fn o_auth2_defaults(&self) -> Option<&OAuth2Defaults>
pub fn o_auth2_defaults(&self) -> Option<&OAuth2Defaults>
Contains the default values required for OAuth 2.0 authentication.
sourcepub fn custom_auth_configs(&self) -> Option<&[CustomAuthConfig]>
pub fn custom_auth_configs(&self) -> Option<&[CustomAuthConfig]>
Contains information required for custom authentication.
source§impl AuthenticationConfig
impl AuthenticationConfig
sourcepub fn builder() -> AuthenticationConfigBuilder
pub fn builder() -> AuthenticationConfigBuilder
Creates a new builder-style object to manufacture AuthenticationConfig.
Trait Implementations§
source§impl Clone for AuthenticationConfig
impl Clone for AuthenticationConfig
source§fn clone(&self) -> AuthenticationConfig
fn clone(&self) -> AuthenticationConfig
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 AuthenticationConfig
impl Debug for AuthenticationConfig
source§impl PartialEq<AuthenticationConfig> for AuthenticationConfig
impl PartialEq<AuthenticationConfig> for AuthenticationConfig
source§fn eq(&self, other: &AuthenticationConfig) -> bool
fn eq(&self, other: &AuthenticationConfig) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AuthenticationConfig
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationConfig
impl Send for AuthenticationConfig
impl Sync for AuthenticationConfig
impl Unpin for AuthenticationConfig
impl UnwindSafe for AuthenticationConfig
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