Struct aws_sdk_appflow::types::OAuth2CustomParameter
source · #[non_exhaustive]pub struct OAuth2CustomParameter { /* private fields */ }Expand description
Custom parameter required for OAuth 2.0 authentication.
Implementations§
source§impl OAuth2CustomParameter
impl OAuth2CustomParameter
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
The key of the custom parameter required for OAuth 2.0 authentication.
sourcepub fn is_required(&self) -> bool
pub fn is_required(&self) -> bool
Indicates whether the custom parameter for OAuth 2.0 authentication is required.
sourcepub fn label(&self) -> Option<&str>
pub fn label(&self) -> Option<&str>
The label of the custom parameter used for OAuth 2.0 authentication.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description about the custom parameter used for OAuth 2.0 authentication.
sourcepub fn is_sensitive_field(&self) -> bool
pub fn is_sensitive_field(&self) -> bool
Indicates whether this authentication custom parameter is a sensitive field.
sourcepub fn connector_supplied_values(&self) -> Option<&[String]>
pub fn connector_supplied_values(&self) -> Option<&[String]>
Contains default values for this authentication parameter that are supplied by the connector.
sourcepub fn type(&self) -> Option<&OAuth2CustomPropType>
pub fn type(&self) -> Option<&OAuth2CustomPropType>
Indicates whether custom parameter is used with TokenUrl or AuthUrl.
source§impl OAuth2CustomParameter
impl OAuth2CustomParameter
sourcepub fn builder() -> OAuth2CustomParameterBuilder
pub fn builder() -> OAuth2CustomParameterBuilder
Creates a new builder-style object to manufacture OAuth2CustomParameter.
Trait Implementations§
source§impl Clone for OAuth2CustomParameter
impl Clone for OAuth2CustomParameter
source§fn clone(&self) -> OAuth2CustomParameter
fn clone(&self) -> OAuth2CustomParameter
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 OAuth2CustomParameter
impl Debug for OAuth2CustomParameter
source§impl PartialEq<OAuth2CustomParameter> for OAuth2CustomParameter
impl PartialEq<OAuth2CustomParameter> for OAuth2CustomParameter
source§fn eq(&self, other: &OAuth2CustomParameter) -> bool
fn eq(&self, other: &OAuth2CustomParameter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for OAuth2CustomParameter
Auto Trait Implementations§
impl RefUnwindSafe for OAuth2CustomParameter
impl Send for OAuth2CustomParameter
impl Sync for OAuth2CustomParameter
impl Unpin for OAuth2CustomParameter
impl UnwindSafe for OAuth2CustomParameter
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