Struct aws_sdk_glue::model::SourceControlDetails
source · #[non_exhaustive]pub struct SourceControlDetails { /* private fields */ }Expand description
The details for a source control configuration for a job, allowing synchronization of job artifacts to or from a remote repository.
Implementations§
source§impl SourceControlDetails
impl SourceControlDetails
sourcepub fn provider(&self) -> Option<&SourceControlProvider>
pub fn provider(&self) -> Option<&SourceControlProvider>
The provider for the remote repository.
sourcepub fn repository(&self) -> Option<&str>
pub fn repository(&self) -> Option<&str>
The name of the remote repository that contains the job artifacts.
sourcepub fn owner(&self) -> Option<&str>
pub fn owner(&self) -> Option<&str>
The owner of the remote repository that contains the job artifacts.
sourcepub fn last_commit_id(&self) -> Option<&str>
pub fn last_commit_id(&self) -> Option<&str>
The last commit ID for a commit in the remote repository.
sourcepub fn auth_strategy(&self) -> Option<&SourceControlAuthStrategy>
pub fn auth_strategy(&self) -> Option<&SourceControlAuthStrategy>
The type of authentication, which can be an authentication token stored in Amazon Web Services Secrets Manager, or a personal access token.
sourcepub fn auth_token(&self) -> Option<&str>
pub fn auth_token(&self) -> Option<&str>
The value of an authorization token.
source§impl SourceControlDetails
impl SourceControlDetails
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture SourceControlDetails.
Trait Implementations§
source§impl Clone for SourceControlDetails
impl Clone for SourceControlDetails
source§fn clone(&self) -> SourceControlDetails
fn clone(&self) -> SourceControlDetails
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 SourceControlDetails
impl Debug for SourceControlDetails
source§impl PartialEq<SourceControlDetails> for SourceControlDetails
impl PartialEq<SourceControlDetails> for SourceControlDetails
source§fn eq(&self, other: &SourceControlDetails) -> bool
fn eq(&self, other: &SourceControlDetails) -> bool
This method tests for
self and other values to be equal, and is used
by ==.