Struct aws_sdk_redshift::types::AuthenticationProfile
source · #[non_exhaustive]pub struct AuthenticationProfile { /* private fields */ }
Expand description
Describes an authentication profile.
Implementations§
source§impl AuthenticationProfile
impl AuthenticationProfile
sourcepub fn authentication_profile_name(&self) -> Option<&str>
pub fn authentication_profile_name(&self) -> Option<&str>
The name of the authentication profile.
sourcepub fn authentication_profile_content(&self) -> Option<&str>
pub fn authentication_profile_content(&self) -> Option<&str>
The content of the authentication profile in JSON format. The maximum length of the JSON string is determined by a quota for your account.
source§impl AuthenticationProfile
impl AuthenticationProfile
sourcepub fn builder() -> AuthenticationProfileBuilder
pub fn builder() -> AuthenticationProfileBuilder
Creates a new builder-style object to manufacture AuthenticationProfile
.
Trait Implementations§
source§impl Clone for AuthenticationProfile
impl Clone for AuthenticationProfile
source§fn clone(&self) -> AuthenticationProfile
fn clone(&self) -> AuthenticationProfile
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 AuthenticationProfile
impl Debug for AuthenticationProfile
source§impl PartialEq<AuthenticationProfile> for AuthenticationProfile
impl PartialEq<AuthenticationProfile> for AuthenticationProfile
source§fn eq(&self, other: &AuthenticationProfile) -> bool
fn eq(&self, other: &AuthenticationProfile) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AuthenticationProfile
Auto Trait Implementations§
impl RefUnwindSafe for AuthenticationProfile
impl Send for AuthenticationProfile
impl Sync for AuthenticationProfile
impl Unpin for AuthenticationProfile
impl UnwindSafe for AuthenticationProfile
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