#[non_exhaustive]pub struct RepositoryScanningConfiguration { /* private fields */ }
Expand description
The details of the scanning configuration for a repository.
Implementations§
source§impl RepositoryScanningConfiguration
impl RepositoryScanningConfiguration
sourcepub fn repository_arn(&self) -> Option<&str>
pub fn repository_arn(&self) -> Option<&str>
The ARN of the repository.
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository.
sourcepub fn scan_on_push(&self) -> bool
pub fn scan_on_push(&self) -> bool
Whether or not scan on push is configured for the repository.
sourcepub fn scan_frequency(&self) -> Option<&ScanFrequency>
pub fn scan_frequency(&self) -> Option<&ScanFrequency>
The scan frequency for the repository.
sourcepub fn applied_scan_filters(&self) -> Option<&[ScanningRepositoryFilter]>
pub fn applied_scan_filters(&self) -> Option<&[ScanningRepositoryFilter]>
The scan filters applied to the repository.
source§impl RepositoryScanningConfiguration
impl RepositoryScanningConfiguration
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture RepositoryScanningConfiguration
.
Trait Implementations§
source§impl Clone for RepositoryScanningConfiguration
impl Clone for RepositoryScanningConfiguration
source§fn clone(&self) -> RepositoryScanningConfiguration
fn clone(&self) -> RepositoryScanningConfiguration
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 PartialEq<RepositoryScanningConfiguration> for RepositoryScanningConfiguration
impl PartialEq<RepositoryScanningConfiguration> for RepositoryScanningConfiguration
source§fn eq(&self, other: &RepositoryScanningConfiguration) -> bool
fn eq(&self, other: &RepositoryScanningConfiguration) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.