Struct aws_sdk_appflow::types::AuthParameter
source · #[non_exhaustive]pub struct AuthParameter { /* private fields */ }Expand description
Information about required authentication parameters.
Implementations§
source§impl 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.
source§impl AuthParameter
impl AuthParameter
sourcepub fn builder() -> AuthParameterBuilder
pub fn builder() -> AuthParameterBuilder
Creates a new builder-style object to manufacture AuthParameter.
Trait Implementations§
source§impl Clone for AuthParameter
impl Clone for AuthParameter
source§fn clone(&self) -> AuthParameter
fn clone(&self) -> AuthParameter
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 AuthParameter
impl Debug for AuthParameter
source§impl PartialEq<AuthParameter> for AuthParameter
impl PartialEq<AuthParameter> for AuthParameter
source§fn eq(&self, other: &AuthParameter) -> bool
fn eq(&self, other: &AuthParameter) -> bool
This method tests for
self and other values to be equal, and is used
by ==.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§
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