Struct aws_sdk_appflow::model::AuthParameter
source · [−]#[non_exhaustive]pub struct AuthParameter { /* private fields */ }
Expand description
Information about required authentication parameters.
Implementations
sourceimpl AuthParameter
impl AuthParameter
sourcepub fn key(&self) -> Option<&str>
pub fn key(&self) -> Option<&str>
The authentication key required to authenticate with the connector.
sourcepub fn is_required(&self) -> bool
pub fn is_required(&self) -> bool
Indicates whether this authentication parameter is required.
sourcepub fn description(&self) -> Option<&str>
pub fn description(&self) -> Option<&str>
A description about the authentication parameter.
sourcepub fn is_sensitive_field(&self) -> bool
pub fn is_sensitive_field(&self) -> bool
Indicates whether this authentication 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.
sourceimpl AuthParameter
impl AuthParameter
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture AuthParameter
.
Trait Implementations
sourceimpl Clone for AuthParameter
impl Clone for AuthParameter
sourcefn clone(&self) -> AuthParameter
fn clone(&self) -> AuthParameter
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 AuthParameter
impl Debug for AuthParameter
sourceimpl PartialEq<AuthParameter> for AuthParameter
impl PartialEq<AuthParameter> for AuthParameter
sourcefn eq(&self, other: &AuthParameter) -> bool
fn eq(&self, other: &AuthParameter) -> bool
impl StructuralPartialEq for AuthParameter
Auto Trait Implementations
impl RefUnwindSafe for AuthParameter
impl Send for AuthParameter
impl Sync for AuthParameter
impl Unpin for AuthParameter
impl UnwindSafe for AuthParameter
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