Struct aws_sdk_codeartifact::model::DomainEntryPoint
source · #[non_exhaustive]pub struct DomainEntryPoint { /* private fields */ }
Expand description
Information about how a package originally entered the CodeArtifact domain. For packages published directly to CodeArtifact, the entry point is the repository it was published to. For packages ingested from an external repository, the entry point is the external connection that it was ingested from. An external connection is a CodeArtifact repository that is connected to an external repository such as the npm registry or NuGet gallery.
Implementations§
source§impl DomainEntryPoint
impl DomainEntryPoint
sourcepub fn repository_name(&self) -> Option<&str>
pub fn repository_name(&self) -> Option<&str>
The name of the repository that a package was originally published to.
sourcepub fn external_connection_name(&self) -> Option<&str>
pub fn external_connection_name(&self) -> Option<&str>
The name of the external connection that a package was ingested from.
source§impl DomainEntryPoint
impl DomainEntryPoint
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DomainEntryPoint
.
Trait Implementations§
source§impl Clone for DomainEntryPoint
impl Clone for DomainEntryPoint
source§fn clone(&self) -> DomainEntryPoint
fn clone(&self) -> DomainEntryPoint
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 DomainEntryPoint
impl Debug for DomainEntryPoint
source§impl PartialEq<DomainEntryPoint> for DomainEntryPoint
impl PartialEq<DomainEntryPoint> for DomainEntryPoint
source§fn eq(&self, other: &DomainEntryPoint) -> bool
fn eq(&self, other: &DomainEntryPoint) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.