Amazon CodePipeline · JSON Structure

Amazon Codepipeline Artifact Details Structure

Returns information about the details of an artifact.

Type: object Properties: 2 Required: 2
AmazonCI/CDContinuous DeliveryDevOpsPipelineRelease Automation

ArtifactDetails is a JSON Structure definition published by Amazon CodePipeline, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

minimumCount maximumCount

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codepipeline/refs/heads/main/json-structure/amazon-codepipeline-artifact-details-structure.json",
  "name": "ArtifactDetails",
  "description": "Returns information about the details of an artifact.",
  "type": "object",
  "properties": {
    "minimumCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MinimumArtifactCount"
        },
        {
          "description": "The minimum number of artifacts allowed for the action type."
        }
      ]
    },
    "maximumCount": {
      "allOf": [
        {
          "$ref": "#/components/schemas/MaximumArtifactCount"
        },
        {
          "description": "The maximum number of artifacts allowed for the action type."
        }
      ]
    }
  },
  "required": [
    "minimumCount",
    "maximumCount"
  ]
}