ListPackageVersionDependenciesResult
public struct ListPackageVersionDependenciesResult : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
The returned list of PackageDependency objects.
Declaration
Swift
public let dependencies: [PackageDependency]?
-
A format that specifies the type of the package that contains the returned dependencies. The valid 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?
-
The token for the next set of results. Use the value returned in the previous response in the next request to retrieve the next set of results.
Declaration
Swift
public let nextToken: String?
-
The name of the package that contains the returned package versions dependencies.
Declaration
Swift
public let package: String?
-
The version of the package that is specified in the request.
Declaration
Swift
public let version: String?
-
The current revision associated with the package version.
Declaration
Swift
public let versionRevision: String?
-
Undocumented
Declaration
Swift
public init(dependencies: [PackageDependency]? = nil, format: PackageFormat? = nil, namespace: String? = nil, nextToken: String? = nil, package: String? = nil, version: String? = nil, versionRevision: String? = nil)