RepositoryExternalConnectionInfo

Contains information about the external connection of a repository.

AmazonArtifact RepositoryPackage ManagementDevOpsSoftware Supply ChainnpmMavenPyPINuGet

Properties

Name Type Description
externalConnectionName object
packageFormat object
status object
View JSON Schema on GitHub

JSON Schema

codeartifact-repository-external-connection-info-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codeartifact/refs/heads/main/json-schema/codeartifact-repository-external-connection-info-schema.json",
  "title": "RepositoryExternalConnectionInfo",
  "description": " Contains information about the external connection of a repository. ",
  "type": "object",
  "properties": {
    "externalConnectionName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalConnectionName"
        },
        {
          "description": " The name of the external connection associated with a repository. "
        }
      ]
    },
    "packageFormat": {
      "allOf": [
        {
          "$ref": "#/components/schemas/PackageFormat"
        },
        {
          "description": "<p> The package format associated with a repository's external connection. The valid package formats are: </p> <ul> <li> <p> <code>npm</code>: A Node Package Manager (npm) package. </p> </li> <li> <p> <code>pypi</code>: A Python Package Index (PyPI) package. </p> </li> <li> <p> <code>maven</code>: A Maven package that contains compiled code in a distributable format, such as a JAR file. </p> </li> <li> <p> <code>nuget</code>: A NuGet package. </p> </li> </ul>"
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ExternalConnectionStatus"
        },
        {
          "description": " The status of the external connection of a repository. There is one valid value, <code>Available</code>. "
        }
      ]
    }
  }
}