Struct aws_sdk_appflow::model::OAuth2CustomParameter
source · [−]#[non_exhaustive]pub struct OAuth2CustomParameter { /* private fields */ }
Expand description
Custom parameter required for OAuth 2.0 authentication.
Implementations
sourceimpl 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.
sourceimpl OAuth2CustomParameter
impl OAuth2CustomParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture OAuth2CustomParameter
.
Trait Implementations
sourceimpl Clone for OAuth2CustomParameter
impl Clone for OAuth2CustomParameter
sourcefn clone(&self) -> OAuth2CustomParameter
fn clone(&self) -> OAuth2CustomParameter
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 OAuth2CustomParameter
impl Debug for OAuth2CustomParameter
sourceimpl PartialEq<OAuth2CustomParameter> for OAuth2CustomParameter
impl PartialEq<OAuth2CustomParameter> for OAuth2CustomParameter
sourcefn eq(&self, other: &OAuth2CustomParameter) -> bool
fn eq(&self, other: &OAuth2CustomParameter) -> bool
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
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