{ "$schema": "https://json-structure.org/meta/core/v0/#", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-codedeploy/refs/heads/main/json-structure/amazon-codedeploy-list-deployments-input-structure.json", "name": "ListDeploymentsInput", "description": "Represents the input of a ListDeployments operation.", "type": "object", "properties": { "applicationName": { "allOf": [ { "$ref": "#/components/schemas/ApplicationName" }, { "description": "

The name of an CodeDeploy application associated with the IAM user or Amazon Web Services account.

If applicationName is specified, then deploymentGroupName must be specified. If it is not specified, then deploymentGroupName must not be specified.

" } ] }, "deploymentGroupName": { "allOf": [ { "$ref": "#/components/schemas/DeploymentGroupName" }, { "description": "

The name of a deployment group for the specified application.

If deploymentGroupName is specified, then applicationName must be specified. If it is not specified, then applicationName must not be specified.

" } ] }, "externalId": { "allOf": [ { "$ref": "#/components/schemas/ExternalId" }, { "description": "The unique ID of an external resource for returning deployments linked to the external resource." } ] }, "includeOnlyStatuses": { "allOf": [ { "$ref": "#/components/schemas/DeploymentStatusList" }, { "description": "

A subset of deployments to list by status:

" } ] }, "createTimeRange": { "allOf": [ { "$ref": "#/components/schemas/TimeRange" }, { "description": "A time range (start and end) for returning a subset of the list of deployments." } ] }, "nextToken": { "allOf": [ { "$ref": "#/components/schemas/NextToken" }, { "description": "An identifier returned from the previous list deployments call. It can be used to return the next set of deployments in the list." } ] } } }