pub struct SourceAuth {
pub resource: Option<String>,
pub type_: String,
}
Expand description
Information about the authorization settings for AWS CodeBuild to access the source code to be built.
This information is for the AWS CodeBuild console's use only. Your code should not get or set this information directly.
Fields§
§resource: Option<String>
The resource value that applies to the specified authorization type.
type_: String
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.
Trait Implementations§
Source§impl Clone for SourceAuth
impl Clone for SourceAuth
Source§fn clone(&self) -> SourceAuth
fn clone(&self) -> SourceAuth
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 SourceAuth
impl Debug for SourceAuth
Source§impl Default for SourceAuth
impl Default for SourceAuth
Source§fn default() -> SourceAuth
fn default() -> SourceAuth
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SourceAuth
impl<'de> Deserialize<'de> for SourceAuth
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for SourceAuth
impl PartialEq for SourceAuth
Source§impl Serialize for SourceAuth
impl Serialize for SourceAuth
impl StructuralPartialEq for SourceAuth
Auto Trait Implementations§
impl Freeze for SourceAuth
impl RefUnwindSafe for SourceAuth
impl Send for SourceAuth
impl Sync for SourceAuth
impl Unpin for SourceAuth
impl UnwindSafe for SourceAuth
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