Struct aws_sdk_codeartifact::model::PackageVersionSummary [−][src]
#[non_exhaustive]pub struct PackageVersionSummary {
pub version: Option<String>,
pub revision: Option<String>,
pub status: Option<PackageVersionStatus>,
}
Expand description
Details about a package version, including its status, version, and revision. The
ListPackageVersions
operation returns a list of PackageVersionSummary
objects.
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.version: Option<String>
Information about a package version.
revision: Option<String>
The revision associated with a package version.
status: Option<PackageVersionStatus>
A string that contains the status of the package version. It can be one of the following:
-
Published
-
Unfinished
-
Unlisted
-
Archived
-
Disposed
Implementations
Creates a new builder-style object to manufacture PackageVersionSummary
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 RefUnwindSafe for PackageVersionSummary
impl Send for PackageVersionSummary
impl Sync for PackageVersionSummary
impl Unpin for PackageVersionSummary
impl UnwindSafe for PackageVersionSummary
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