GetAuthorizationTokenResult

GetAuthorizationTokenResult schema from Amazon CodeArtifact API

AmazonArtifact RepositoryPackage ManagementDevOpsSoftware Supply ChainnpmMavenPyPINuGet

Properties

Name Type Description
authorizationToken object
expiration object
View JSON Schema on GitHub

JSON Schema

codeartifact-get-authorization-token-result-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-get-authorization-token-result-schema.json",
  "title": "GetAuthorizationTokenResult",
  "description": "GetAuthorizationTokenResult schema from Amazon CodeArtifact API",
  "type": "object",
  "properties": {
    "authorizationToken": {
      "allOf": [
        {
          "$ref": "#/components/schemas/String"
        },
        {
          "description": " The returned authentication token. "
        }
      ]
    },
    "expiration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/Timestamp"
        },
        {
          "description": " A timestamp that specifies the date and time the authorization token expires. "
        }
      ]
    }
  }
}