RepositoryExternalConnectionInfo

public struct RepositoryExternalConnectionInfo : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • The name of the external connection associated with a repository.

    Declaration

    Swift

    public let externalConnectionName: String?
  • The package format associated with a repository’s external connection. The valid package formats are: npm: A Node Package Manager (npm) package. pypi: A Python Package Index (PyPI) package. maven: A Maven package that contains compiled code in a distributable format, such as a JAR file.

    Declaration

    Swift

    public let packageFormat: PackageFormat?
  • The status of the external connection of a repository. There is one valid value, Available.

    Declaration

    Swift

    public let status: ExternalConnectionStatus?
  • Undocumented

    Declaration

    Swift

    public init(externalConnectionName: String? = nil, packageFormat: PackageFormat? = nil, status: ExternalConnectionStatus? = nil)