Struct aws_sdk_appfabric::types::Oauth2Credential
source · #[non_exhaustive]pub struct Oauth2Credential {
pub client_id: Option<String>,
pub client_secret: Option<String>,
}
Expand description
Contains OAuth2 client credential information.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.client_id: Option<String>
The client ID of the client application.
client_secret: Option<String>
The client secret of the client application.
Implementations§
source§impl Oauth2Credential
impl Oauth2Credential
sourcepub fn builder() -> Oauth2CredentialBuilder
pub fn builder() -> Oauth2CredentialBuilder
Creates a new builder-style object to manufacture Oauth2Credential
.
Trait Implementations§
source§impl Clone for Oauth2Credential
impl Clone for Oauth2Credential
source§fn clone(&self) -> Oauth2Credential
fn clone(&self) -> Oauth2Credential
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 Oauth2Credential
impl Debug for Oauth2Credential
source§impl PartialEq<Oauth2Credential> for Oauth2Credential
impl PartialEq<Oauth2Credential> for Oauth2Credential
source§fn eq(&self, other: &Oauth2Credential) -> bool
fn eq(&self, other: &Oauth2Credential) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for Oauth2Credential
Auto Trait Implementations§
impl RefUnwindSafe for Oauth2Credential
impl Send for Oauth2Credential
impl Sync for Oauth2Credential
impl Unpin for Oauth2Credential
impl UnwindSafe for Oauth2Credential
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