Amazon CodeDeploy · JSON Structure

Amazon Codedeploy Ecs Service Structure

Contains the service and cluster names used to identify an Amazon ECS deployment's target.

Type: object Properties: 2
AmazonDeploymentDevOpsCI/CDRelease ManagementBlue/Green Deployment

ECSService is a JSON Structure definition published by Amazon CodeDeploy, describing 2 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

serviceName clusterName

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-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-ecs-service-structure.json",
  "name": "ECSService",
  "description": " Contains the service and cluster names used to identify an Amazon ECS deployment's target. ",
  "type": "object",
  "properties": {
    "serviceName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ECSServiceName"
        },
        {
          "description": " The name of the target Amazon ECS service. "
        }
      ]
    },
    "clusterName": {
      "allOf": [
        {
          "$ref": "#/components/schemas/ECSClusterName"
        },
        {
          "description": " The name of the cluster that the Amazon ECS service is associated with. "
        }
      ]
    }
  }
}