ListPackageVersionsResult
public struct ListPackageVersionsResult : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The default package version to display. This depends on the package format: For Maven and PyPI packages, it’s the most recently published package version. For npm packages, it’s the version referenced by the latest tag. If the latest tag is not set, it’s the most recently published package version.
Declaration
Swift
public let defaultDisplayVersion: String?
-
A format of the package. Valid package format values are: npm pypi maven
Declaration
Swift
public let format: PackageFormat?
-
The namespace of the package. The package component that specifies its namespace depends on its type. For example: The namespace of a Maven package is its groupId. The namespace of an npm package is its scope. A Python package does not contain a corresponding component, so Python packages do not have a namespace.
Declaration
Swift
public let namespace: String?
-
If there are additional results, this is the token for the next set of results.
Declaration
Swift
public let nextToken: String?
-
The name of the package.
Declaration
Swift
public let package: String?
-
The returned list of PackageVersionSummary objects.
Declaration
Swift
public let versions: [PackageVersionSummary]?
-
Undocumented
Declaration
Swift
public init(defaultDisplayVersion: String? = nil, format: PackageFormat? = nil, namespace: String? = nil, nextToken: String? = nil, package: String? = nil, versions: [PackageVersionSummary]? = nil)