Struct aws_sdk_codeartifact::model::RepositoryExternalConnectionInfo [−][src]
#[non_exhaustive]pub struct RepositoryExternalConnectionInfo {
pub external_connection_name: Option<String>,
pub package_format: Option<PackageFormat>,
pub status: Option<ExternalConnectionStatus>,
}
Expand description
Contains information about the external connection of a repository.
Fields (Non-exhaustive)
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.external_connection_name: Option<String>
The name of the external connection associated with a repository.
package_format: Option<PackageFormat>
The package format associated with a repository's external connection. The valid package formats are:
-
npm
: A Node Package Manager (npm) package. -
pypi
: A Python Package Index (PyPI) package. -
maven
: A Maven package that contains compiled code in a distributable format, such as a JAR file.
status: Option<ExternalConnectionStatus>
The status of the external connection of a repository. There is one valid value, Available
.
Implementations
Creates a new builder-style object to manufacture RepositoryExternalConnectionInfo
Trait Implementations
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
Auto Trait Implementations
impl Send for RepositoryExternalConnectionInfo
impl Sync for RepositoryExternalConnectionInfo
impl Unpin for RepositoryExternalConnectionInfo
Blanket Implementations
Mutably borrows from an owned value. Read more
Attaches the provided Subscriber
to this type, returning a
WithDispatch
wrapper. Read more
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more