UpdateRepositoryRequest
public struct UpdateRepositoryRequest : AWSShape
Undocumented
-
Declaration
Swift
public static var _members: [AWSShapeMember]
-
An updated repository description.
Declaration
Swift
public let description: String?
-
The name of the domain associated with the repository to update.
Declaration
Swift
public let domain: String
-
The 12-digit account number of the AWS account that owns the domain. It does not include dashes or spaces.
Declaration
Swift
public let domainOwner: String?
-
The name of the repository to update.
Declaration
Swift
public let repository: String
-
A list of upstream repositories to associate with the repository. The order of the upstream repositories in the list determines their priority order when AWS CodeArtifact looks for a requested package version. For more information, see Working with upstream repositories.
Declaration
Swift
public let upstreams: [UpstreamRepository]?
-
Undocumented
Declaration
Swift
public init(description: String? = nil, domain: String, domainOwner: String? = nil, repository: String, upstreams: [UpstreamRepository]? = nil)
-
Declaration
Swift
public func validate(name: String) throws