Struct aws_sdk_codebuild::model::SourceAuth
source · [−]#[non_exhaustive]pub struct SourceAuth { /* private fields */ }
Expand description
Information about the authorization settings for CodeBuild to access the source code to be built.
This information is for the CodeBuild console's use only. Your code should not get or set this information directly.
Implementations
sourceimpl SourceAuth
impl SourceAuth
sourcepub fn type(&self) -> Option<&SourceAuthType>
pub fn type(&self) -> Option<&SourceAuthType>
This data type is deprecated and is no longer accurate or used.
The authorization type to use. The only valid value is OAUTH
, which represents the OAuth authorization type.
sourceimpl SourceAuth
impl SourceAuth
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceAuth
.
Trait Implementations
sourceimpl Clone for SourceAuth
impl Clone for SourceAuth
sourcefn clone(&self) -> SourceAuth
fn clone(&self) -> SourceAuth
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 SourceAuth
impl Debug for SourceAuth
sourceimpl PartialEq<SourceAuth> for SourceAuth
impl PartialEq<SourceAuth> for SourceAuth
sourcefn eq(&self, other: &SourceAuth) -> bool
fn eq(&self, other: &SourceAuth) -> bool
impl StructuralPartialEq for SourceAuth
Auto Trait Implementations
impl RefUnwindSafe for SourceAuth
impl Send for SourceAuth
impl Sync for SourceAuth
impl Unpin for SourceAuth
impl UnwindSafe for SourceAuth
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