CreateRepositoryRequest

public struct CreateRepositoryRequest : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A description of the created repository.

    Declaration

    Swift

    public let description: String?
  • The domain that contains the created repository.

    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 create.

    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