{ "version": "2.0", "operations": { "AcknowledgeJob": "

Returns information about a specified job and whether that job has been received by the job worker. Only used for custom actions.

", "AcknowledgeThirdPartyJob": "

Confirms a job worker has received the specified job. Only used for partner actions.

", "CreateCustomActionType": "

Creates a new custom action that can be used in all pipelines associated with the AWS account. Only used for custom actions.

", "CreatePipeline": "

Creates a pipeline.

", "DeleteCustomActionType": "

Marks a custom action as deleted. PollForJobs for the custom action will fail after the action is marked for deletion. Only used for custom actions.

You cannot recreate a custom action after it has been deleted unless you increase the version number of the action.

", "DeletePipeline": "

Deletes the specified pipeline.

", "DisableStageTransition": "

Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.

", "EnableStageTransition": "

Enables artifacts in a pipeline to transition to a stage in a pipeline.

", "GetJobDetails": "

Returns information about a job. Only used for custom actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

", "GetPipeline": "

Returns the metadata, structure, stages, and actions of a pipeline. Can be used to return the entire structure of a pipeline in JSON format, which can then be modified and used to update the pipeline structure with UpdatePipeline.

", "GetPipelineState": "

Returns information about the state of a pipeline, including the stages, actions, and details about the last run of the pipeline.

", "GetThirdPartyJobDetails": "

Requests the details of a job for a third party action. Only used for partner actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

", "ListActionTypes": "

Gets a summary of all AWS CodePipeline action types associated with your account.

", "ListPipelines": "

Gets a summary of all of the pipelines associated with your account.

", "PollForJobs": "

Returns information about any jobs for AWS CodePipeline to act upon.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts. Additionally, this API returns any secret values defined for the action.

", "PollForThirdPartyJobs": "

Determines whether there are any third party jobs for a job worker to act on. Only used for partner actions.

When this API is called, AWS CodePipeline returns temporary credentials for the Amazon S3 bucket used to store artifacts for the pipeline, if the action requires access to that Amazon S3 bucket for input or output artifacts.

", "PutActionRevision": "

Provides information to AWS CodePipeline about new revisions to a source.

", "PutJobFailureResult": "

Represents the failure of a job as returned to the pipeline by a job worker. Only used for custom actions.

", "PutJobSuccessResult": "

Represents the success of a job as returned to the pipeline by a job worker. Only used for custom actions.

", "PutThirdPartyJobFailureResult": "

Represents the failure of a third party job as returned to the pipeline by a job worker. Only used for partner actions.

", "PutThirdPartyJobSuccessResult": "

Represents the success of a third party job as returned to the pipeline by a job worker. Only used for partner actions.

", "StartPipelineExecution": "

Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.

", "UpdatePipeline": "

Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure in conjunction with UpdatePipeline to provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.

" }, "service": "AWS CodePipeline Overview

This is the AWS CodePipeline API Reference. This guide provides descriptions of the actions and data types for AWS CodePipeline. Some functionality for your pipeline is only configurable through the API. For additional information, see the AWS CodePipeline User Guide.

You can use the AWS CodePipeline API to work with pipelines, stages, actions, gates, and transitions, as described below.

Pipelines are models of automated release processes. Each pipeline is uniquely named, and consists of actions, gates, and stages.

You can work with pipelines by calling:

Pipelines include stages, which are which are logical groupings of gates and actions. Each stage contains one or more actions that must complete before the next stage begins. A stage will result in success or failure. If a stage fails, then the pipeline stops at that stage and will remain stopped until either a new version of an artifact appears in the source location, or a user takes action to re-run the most recent artifact through the pipeline. You can call GetPipelineState, which displays the status of a pipeline, including the status of stages in the pipeline, or GetPipeline, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, also refer to the AWS CodePipeline Pipeline Structure Reference.

Pipeline stages include actions, which are categorized into categories such as source or build actions performed within a stage of a pipeline. For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with actions when working with pipeline operations such as CreatePipeline and GetPipelineState.

Pipelines also include transitions, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.

You can work with transitions by calling:

Using the API to integrate with AWS CodePipeline

For third-party integrators or developers who want to create their own integrations with AWS CodePipeline, the expected sequence varies from the standard API user. In order to integrate with AWS CodePipeline, developers will need to work with the following items:

", "shapes": { "AWSSessionCredentials": { "base": "

Represents an AWS session credentials object. These credentials are temporary credentials that are issued by AWS Secure Token Service (STS). They can be used to access input and output artifacts in the Amazon S3 bucket used to store artifact for the pipeline in AWS CodePipeline.

", "refs": { "JobData$artifactCredentials": null, "ThirdPartyJobData$artifactCredentials": null } }, "AccessKeyId": { "base": null, "refs": { "AWSSessionCredentials$accessKeyId": "

The access key for the session.

" } }, "AccountId": { "base": null, "refs": { "Job$accountId": "

The ID of the AWS account to use when performing the job.

", "JobDetails$accountId": "

The AWS account ID associated with the job.

" } }, "AcknowledgeJobInput": { "base": "

Represents the input of an acknowledge job action.

", "refs": { } }, "AcknowledgeJobOutput": { "base": "

Represents the output of an acknowledge job action.

", "refs": { } }, "AcknowledgeThirdPartyJobInput": { "base": "

Represents the input of an acknowledge third party job action.

", "refs": { } }, "AcknowledgeThirdPartyJobOutput": { "base": "

Represents the output of an acknowledge third party job action.

", "refs": { } }, "ActionCategory": { "base": null, "refs": { "ActionTypeId$category": "

A category defines what kind of action can be taken in the stage, and constrains the provider type for the action. Valid categories are limited to one of the values below.

", "CreateCustomActionTypeInput$category": "

The category of the custom action, such as a source action or a build action.

", "DeleteCustomActionTypeInput$category": "

The category of the custom action that you want to delete, such as source or deploy.

" } }, "ActionConfiguration": { "base": "

Represents information about an action configuration.

", "refs": { "JobData$actionConfiguration": null, "ThirdPartyJobData$actionConfiguration": null } }, "ActionConfigurationKey": { "base": null, "refs": { "ActionConfigurationMap$key": null, "ActionConfigurationProperty$name": "

The name of the action configuration property.

", "QueryParamMap$key": null } }, "ActionConfigurationMap": { "base": null, "refs": { "ActionConfiguration$configuration": "

The configuration data for the action.

", "ActionDeclaration$configuration": "

The action declaration's configuration.

" } }, "ActionConfigurationProperty": { "base": "

Represents information about an action configuration property.

", "refs": { "ActionConfigurationPropertyList$member": null } }, "ActionConfigurationPropertyList": { "base": null, "refs": { "ActionType$actionConfigurationProperties": "

The configuration properties for the action type.

", "CreateCustomActionTypeInput$configurationProperties": "

The configuration properties for the custom action.

" } }, "ActionConfigurationPropertyType": { "base": null, "refs": { "ActionConfigurationProperty$type": "

The type of the configuration property.

" } }, "ActionConfigurationQueryableValue": { "base": null, "refs": { "QueryParamMap$value": null } }, "ActionConfigurationValue": { "base": null, "refs": { "ActionConfigurationMap$value": null } }, "ActionContext": { "base": "

Represents the context of an action within the stage of a pipeline to a job worker.

", "refs": { "PipelineContext$action": null } }, "ActionDeclaration": { "base": "

Represents information about an action declaration.

", "refs": { "StageActionDeclarationList$member": null } }, "ActionExecution": { "base": "

Represents information about how an action runs.

", "refs": { "ActionState$latestExecution": null } }, "ActionExecutionStatus": { "base": null, "refs": { "ActionExecution$status": "

The status of the action, or for a completed action, the last status of the action.

" } }, "ActionName": { "base": null, "refs": { "ActionContext$name": "

The name of the action within the context of a job.

", "ActionDeclaration$name": "

The action declaration's name.

", "ActionState$actionName": "

The name of the action.

", "PutActionRevisionInput$actionName": "

The name of the action that will process the revision.

" } }, "ActionNotFoundException": { "base": "

The specified action cannot be found.

", "refs": { } }, "ActionOwner": { "base": null, "refs": { "ActionTypeId$owner": "

The creator of the action being called.

", "ListActionTypesInput$actionOwnerFilter": "

Filters the list of action types to those created by a specified entity.

" } }, "ActionProvider": { "base": null, "refs": { "ActionTypeId$provider": "

The provider of the service being called by the action. Valid providers are determined by the action category. For example, an action in the Deploy category type might have a provider of AWS CodeDeploy, which would be specified as CodeDeploy.

", "CreateCustomActionTypeInput$provider": "

The provider of the service used in the custom action, such as AWS CodeDeploy.

", "DeleteCustomActionTypeInput$provider": "

The provider of the service used in the custom action, such as AWS CodeDeploy.

" } }, "ActionRevision": { "base": "

Represents information about the version (or revision) of an action.

", "refs": { "ActionState$currentRevision": null, "PutActionRevisionInput$actionRevision": null } }, "ActionRunOrder": { "base": null, "refs": { "ActionDeclaration$runOrder": "

The order in which actions are run.

" } }, "ActionState": { "base": "

Represents information about the state of an action.

", "refs": { "ActionStateList$member": null } }, "ActionStateList": { "base": null, "refs": { "StageState$actionStates": "

The state of the stage.

" } }, "ActionType": { "base": "

Returns information about the details of an action type.

", "refs": { "ActionTypeList$member": null, "CreateCustomActionTypeOutput$actionType": null } }, "ActionTypeId": { "base": "

Represents information about an action type.

", "refs": { "ActionDeclaration$actionTypeId": "

The configuration information for the action type.

", "ActionType$id": null, "JobData$actionTypeId": null, "PollForJobsInput$actionTypeId": null, "PollForThirdPartyJobsInput$actionTypeId": null, "ThirdPartyJobData$actionTypeId": null } }, "ActionTypeList": { "base": null, "refs": { "ListActionTypesOutput$actionTypes": "

Provides details of the action types.

" } }, "ActionTypeNotFoundException": { "base": "

The specified action type cannot be found.

", "refs": { } }, "ActionTypeSettings": { "base": "

Returns information about the settings for an action type.

", "refs": { "ActionType$settings": "

The settings for the action type.

", "CreateCustomActionTypeInput$settings": null } }, "Artifact": { "base": "

Represents information about an artifact that will be worked upon by actions in the pipeline.

", "refs": { "ArtifactList$member": null } }, "ArtifactDetails": { "base": "

Returns information about the details of an artifact.

", "refs": { "ActionType$inputArtifactDetails": "

The details of the input artifact for the action, such as its commit ID.

", "ActionType$outputArtifactDetails": "

The details of the output artifact of the action, such as its commit ID.

", "CreateCustomActionTypeInput$inputArtifactDetails": null, "CreateCustomActionTypeInput$outputArtifactDetails": null } }, "ArtifactList": { "base": null, "refs": { "JobData$inputArtifacts": "

The artifact supplied to the job.

", "JobData$outputArtifacts": "

The output of the job.

", "ThirdPartyJobData$inputArtifacts": "

The name of the artifact that will be worked upon by the action, if any. This name might be system-generated, such as \"MyApp\", or might be defined by the user when the action is created. The input artifact name must match the name of an output artifact generated by an action in an earlier action or stage of the pipeline.

", "ThirdPartyJobData$outputArtifacts": "

The name of the artifact that will be the result of the action, if any. This name might be system-generated, such as \"MyBuiltApp\", or might be defined by the user when the action is created.

" } }, "ArtifactLocation": { "base": "

Represents information about the location of an artifact.

", "refs": { "Artifact$location": "

The location of an artifact.

" } }, "ArtifactLocationType": { "base": null, "refs": { "ArtifactLocation$type": "

The type of artifact in the location.

" } }, "ArtifactName": { "base": null, "refs": { "Artifact$name": "

The artifact's name.

", "InputArtifact$name": "

The name of the artifact to be worked on, for example, \"My App\".

The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.

", "OutputArtifact$name": "

The name of the output of an artifact, such as \"My App\".

The input artifact of an action must exactly match the output artifact declared in a preceding action, but the input artifact does not have to be the next action in strict sequence from the action that provided the output artifact. Actions in parallel can declare different output artifacts, which are in turn consumed by different following actions.

Output artifact names must be unique within a pipeline.

" } }, "ArtifactStore": { "base": "

The Amazon S3 location where artifacts are stored for the pipeline. If this Amazon S3 bucket is created manually, it must meet the requirements for AWS CodePipeline. For more information, see the Concepts.

", "refs": { "PipelineDeclaration$artifactStore": null } }, "ArtifactStoreLocation": { "base": null, "refs": { "ArtifactStore$location": "

The location for storing the artifacts for a pipeline, such as an S3 bucket or folder.

" } }, "ArtifactStoreType": { "base": null, "refs": { "ArtifactStore$type": "

The type of the artifact store, such as S3.

" } }, "BlockerDeclaration": { "base": "

Represents information about a gate declaration.

", "refs": { "StageBlockerDeclarationList$member": null } }, "BlockerName": { "base": null, "refs": { "BlockerDeclaration$name": "

The name of the gate declaration.

" } }, "BlockerType": { "base": null, "refs": { "BlockerDeclaration$type": "

The type of the gate declaration.

" } }, "Boolean": { "base": null, "refs": { "ActionConfigurationProperty$required": "

Whether the configuration property is a required value.

", "ActionConfigurationProperty$key": "

Whether the configuration property is a key.

", "ActionConfigurationProperty$secret": "

Whether the configuration property is secret. Secrets are hidden from all calls except for GetJobDetails, GetThirdPartyJobDetails, PollForJobs, and PollForThirdPartyJobs.

When updating a pipeline, passing * * * * * without changing any other values of the action will preserve the prior value of the secret.

", "ActionConfigurationProperty$queryable": "

Indicates that the proprety will be used in conjunction with PollForJobs. When creating a custom action, an action can have up to one queryable property. If it has one, that property must be both required and not secret.

If you create a pipeline with a custom action type, and that custom action contains a queryable property, the value for that configuration property is subject to additional restrictions. The value must be less than or equal to twenty (20) characters. The value can contain only alphanumeric characters, underscores, and hyphens.

", "PutActionRevisionOutput$newRevision": "

The new revision number or ID for the revision after the action completes.

" } }, "ClientId": { "base": null, "refs": { "ThirdPartyJob$clientId": "

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

" } }, "ClientToken": { "base": null, "refs": { "AcknowledgeThirdPartyJobInput$clientToken": "

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

", "GetThirdPartyJobDetailsInput$clientToken": "

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

", "PutThirdPartyJobFailureResultInput$clientToken": "

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

", "PutThirdPartyJobSuccessResultInput$clientToken": "

The clientToken portion of the clientId and clientToken pair used to verify that the calling entity is allowed access to the job and its details.

" } }, "Code": { "base": null, "refs": { "ErrorDetails$code": "

The system ID or error number code of the error.

" } }, "ContinuationToken": { "base": null, "refs": { "JobData$continuationToken": "

A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires in order to continue the job asynchronously.

", "PutJobSuccessResultInput$continuationToken": "

A system-generated token, such as a AWS CodeDeploy deployment ID, that the successful job used to complete a job asynchronously.

", "PutThirdPartyJobSuccessResultInput$continuationToken": "

A system-generated token, such as a AWS CodeDeploy deployment ID, that a job uses in order to continue the job asynchronously.

", "ThirdPartyJobData$continuationToken": "

A system-generated token, such as a AWS CodeDeploy deployment ID, that a job requires in order to continue the job asynchronously.

" } }, "CreateCustomActionTypeInput": { "base": "

Represents the input of a create custom action operation.

", "refs": { } }, "CreateCustomActionTypeOutput": { "base": "

Represents the output of a create custom action operation.

", "refs": { } }, "CreatePipelineInput": { "base": "

Represents the input of a create pipeline action.

", "refs": { } }, "CreatePipelineOutput": { "base": "

Represents the output of a create pipeline action.

", "refs": { } }, "CurrentRevision": { "base": "

Represents information about a current revision.

", "refs": { "PutJobSuccessResultInput$currentRevision": "

The ID of the current revision of the artifact successfully worked upon by the job.

", "PutThirdPartyJobSuccessResultInput$currentRevision": null } }, "DeleteCustomActionTypeInput": { "base": "

Represents the input of a delete custom action operation. The custom action will be marked as deleted.

", "refs": { } }, "DeletePipelineInput": { "base": "

Represents the input of a delete pipeline action.

", "refs": { } }, "Description": { "base": null, "refs": { "ActionConfigurationProperty$description": "

The description of the action configuration property that will be displayed to users.

" } }, "DisableStageTransitionInput": { "base": "

Represents the input of a disable stage transition input action.

", "refs": { } }, "DisabledReason": { "base": null, "refs": { "DisableStageTransitionInput$reason": "

The reason given to the user why a stage is disabled, such as waiting for manual approval or manual tests. This message is displayed in the pipeline console UI.

", "TransitionState$disabledReason": "

The user-specified reason why the transition between two stages of a pipeline was disabled.

" } }, "EnableStageTransitionInput": { "base": "

Represents the input of an enable stage transition action.

", "refs": { } }, "Enabled": { "base": null, "refs": { "TransitionState$enabled": "

Whether the transition between stages is enabled (true) or disabled (false).

" } }, "EncryptionKey": { "base": "

Represents information about the AWS Key Management Service (AWS KMS) key used to encrypt data in the artifact store.

", "refs": { "ArtifactStore$encryptionKey": "

The AWS Key Management Service (AWS KMS) key used to encrypt the data in the artifact store. If this is undefined, the default key for Amazon S3 is used.

", "JobData$encryptionKey": null, "ThirdPartyJobData$encryptionKey": "

The AWS Key Management Service (AWS KMS) key used to encrypt and decrypt data in the artifact store for the pipeline.

" } }, "EncryptionKeyId": { "base": null, "refs": { "EncryptionKey$id": "

The ID of the AWS KMS key.

" } }, "EncryptionKeyType": { "base": null, "refs": { "EncryptionKey$type": "

The type of AWS KMS key, such as a customer master key.

" } }, "ErrorDetails": { "base": "

Represents information about an error in AWS CodePipeline.

", "refs": { "ActionExecution$errorDetails": "

The details of an error returned by a URL external to AWS.

" } }, "ExecutionDetails": { "base": "

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

", "refs": { "PutJobSuccessResultInput$executionDetails": "

The execution details of the successful job, such as the actions taken by the job worker.

", "PutThirdPartyJobSuccessResultInput$executionDetails": null } }, "ExecutionId": { "base": null, "refs": { "ActionExecution$externalExecutionId": "

The external ID of the run of the action.

", "ExecutionDetails$externalExecutionId": "

The system-generated unique ID of this action used to identify this job worker in any external systems, such as AWS CodeDeploy.

", "FailureDetails$externalExecutionId": "

The external ID of the run of the action that failed.

" } }, "ExecutionSummary": { "base": null, "refs": { "ActionExecution$summary": "

A summary of the run of the action.

", "ExecutionDetails$summary": "

The summary of the current status of the actions.

" } }, "FailureDetails": { "base": "

Represents information about failure details.

", "refs": { "PutJobFailureResultInput$failureDetails": "

The details about the failure of a job.

", "PutThirdPartyJobFailureResultInput$failureDetails": null } }, "FailureType": { "base": null, "refs": { "FailureDetails$type": "

The type of the failure.

" } }, "GetJobDetailsInput": { "base": "

Represents the input of a get job details action.

", "refs": { } }, "GetJobDetailsOutput": { "base": "

Represents the output of a get job details action.

", "refs": { } }, "GetPipelineInput": { "base": "

Represents the input of a get pipeline action.

", "refs": { } }, "GetPipelineOutput": { "base": "

Represents the output of a get pipeline action.

", "refs": { } }, "GetPipelineStateInput": { "base": "

Represents the input of a get pipeline state action.

", "refs": { } }, "GetPipelineStateOutput": { "base": "

Represents the output of a get pipeline state action.

", "refs": { } }, "GetThirdPartyJobDetailsInput": { "base": "

Represents the input of a get third party job details action.

", "refs": { } }, "GetThirdPartyJobDetailsOutput": { "base": "

Represents the output of a get third party job details action.

", "refs": { } }, "InputArtifact": { "base": "

Represents information about an artifact to be worked on, such as a test or build artifact.

", "refs": { "InputArtifactList$member": null } }, "InputArtifactList": { "base": null, "refs": { "ActionDeclaration$inputArtifacts": "

The name or ID of the artifact consumed by the action, such as a test or build artifact.

" } }, "InvalidActionDeclarationException": { "base": "

The specified action declaration was specified in an invalid format.

", "refs": { } }, "InvalidBlockerDeclarationException": { "base": "

The specified gate declaration was specified in an invalid format.

", "refs": { } }, "InvalidClientTokenException": { "base": "

The client token was specified in an invalid format

", "refs": { } }, "InvalidJobException": { "base": "

The specified job was specified in an invalid format or cannot be found.

", "refs": { } }, "InvalidJobStateException": { "base": "

The specified job state was specified in an invalid format.

", "refs": { } }, "InvalidNextTokenException": { "base": "

The next token was specified in an invalid format. Make sure that the next token you provided is the token returned by a previous call.

", "refs": { } }, "InvalidNonceException": { "base": "

The specified nonce was specified in an invalid format.

", "refs": { } }, "InvalidStageDeclarationException": { "base": "

The specified stage declaration was specified in an invalid format.

", "refs": { } }, "InvalidStructureException": { "base": "

The specified structure was specified in an invalid format.

", "refs": { } }, "Job": { "base": "

Represents information about a job.

", "refs": { "JobList$member": null } }, "JobData": { "base": "

Represents additional information about a job required for a job worker to complete the job.

", "refs": { "Job$data": "

Additional data about a job.

", "JobDetails$data": null } }, "JobDetails": { "base": "

Represents information about the details of a job.

", "refs": { "GetJobDetailsOutput$jobDetails": "

The details of the job.

If AWSSessionCredentials is used, a long-running job can call GetJobDetails again to obtain new credentials.

" } }, "JobId": { "base": null, "refs": { "AcknowledgeJobInput$jobId": "

The unique system-generated ID of the job for which you want to confirm receipt.

", "GetJobDetailsInput$jobId": "

The unique system-generated ID for the job.

", "Job$id": "

The unique system-generated ID of the job.

", "JobDetails$id": "

The unique system-generated ID of the job.

", "PutJobFailureResultInput$jobId": "

The unique system-generated ID of the job that failed. This is the same ID returned from PollForJobs.

", "PutJobSuccessResultInput$jobId": "

The unique system-generated ID of the job that succeeded. This is the same ID returned from PollForJobs.

", "ThirdPartyJob$jobId": "

The identifier used to identify the job in AWS CodePipeline.

" } }, "JobList": { "base": null, "refs": { "PollForJobsOutput$jobs": "

Information about the jobs to take action on.

" } }, "JobNotFoundException": { "base": "

The specified job was specified in an invalid format or cannot be found.

", "refs": { } }, "JobStatus": { "base": null, "refs": { "AcknowledgeJobOutput$status": "

Whether the job worker has received the specified job.

", "AcknowledgeThirdPartyJobOutput$status": "

The status information for the third party job, if any.

" } }, "LastChangedAt": { "base": null, "refs": { "TransitionState$lastChangedAt": "

The timestamp when the transition state was last changed.

" } }, "LastChangedBy": { "base": null, "refs": { "TransitionState$lastChangedBy": "

The ID of the user who last changed the transition state.

" } }, "LimitExceededException": { "base": "

The number of pipelines associated with the AWS account has exceeded the limit allowed for the account.

", "refs": { } }, "ListActionTypesInput": { "base": "

Represents the input of a list action types action.

", "refs": { } }, "ListActionTypesOutput": { "base": "

Represents the output of a list action types action.

", "refs": { } }, "ListPipelinesInput": { "base": "

Represents the input of a list pipelines action.

", "refs": { } }, "ListPipelinesOutput": { "base": "

Represents the output of a list pipelines action.

", "refs": { } }, "MaxBatchSize": { "base": null, "refs": { "PollForJobsInput$maxBatchSize": "

The maximum number of jobs to return in a poll for jobs call.

", "PollForThirdPartyJobsInput$maxBatchSize": "

The maximum number of jobs to return in a poll for jobs call.

" } }, "MaximumArtifactCount": { "base": null, "refs": { "ArtifactDetails$maximumCount": "

The maximum number of artifacts allowed for the action type.

" } }, "Message": { "base": null, "refs": { "ErrorDetails$message": "

The text of the error message.

", "FailureDetails$message": "

The message about the failure.

" } }, "MinimumArtifactCount": { "base": null, "refs": { "ArtifactDetails$minimumCount": "

The minimum number of artifacts allowed for the action type.

" } }, "NextToken": { "base": null, "refs": { "ListActionTypesInput$nextToken": "

An identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.

", "ListActionTypesOutput$nextToken": "

If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list action types call to return the next set of action types in the list.

", "ListPipelinesInput$nextToken": "

An identifier that was returned from the previous list pipelines call, which can be used to return the next set of pipelines in the list.

", "ListPipelinesOutput$nextToken": "

If the amount of returned information is significantly large, an identifier is also returned which can be used in a subsequent list pipelines call to return the next set of pipelines in the list.

" } }, "Nonce": { "base": null, "refs": { "AcknowledgeJobInput$nonce": "

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.

", "AcknowledgeThirdPartyJobInput$nonce": "

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.

", "Job$nonce": "

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.

", "ThirdPartyJobDetails$nonce": "

A system-generated random number that AWS CodePipeline uses to ensure that the job is being worked on by only one job worker. This number must be returned in the response.

" } }, "OutputArtifact": { "base": "

Represents information about the output of an action.

", "refs": { "OutputArtifactList$member": null } }, "OutputArtifactList": { "base": null, "refs": { "ActionDeclaration$outputArtifacts": "

The name or ID of the result of the action declaration, such as a test or build artifact.

" } }, "Percentage": { "base": null, "refs": { "ActionExecution$percentComplete": "

A percentage of completeness of the action as it runs.

", "ExecutionDetails$percentComplete": "

The percentage of work completed on the action, represented on a scale of zero to one hundred percent.

" } }, "PipelineContext": { "base": "

Represents information about a pipeline to a job worker.

", "refs": { "JobData$pipelineContext": null, "ThirdPartyJobData$pipelineContext": null } }, "PipelineDeclaration": { "base": "

Represents the structure of actions and stages to be performed in the pipeline.

", "refs": { "CreatePipelineInput$pipeline": null, "CreatePipelineOutput$pipeline": null, "GetPipelineOutput$pipeline": null, "UpdatePipelineInput$pipeline": "

The name of the pipeline to be updated.

", "UpdatePipelineOutput$pipeline": "

The structure of the updated pipeline.

" } }, "PipelineExecutionId": { "base": null, "refs": { "PutActionRevisionOutput$pipelineExecutionId": "

The ID of the current workflow state of the pipeline.

", "StartPipelineExecutionOutput$pipelineExecutionId": "

The unique system-generated ID of the pipeline that was started.

" } }, "PipelineList": { "base": null, "refs": { "ListPipelinesOutput$pipelines": "

The list of pipelines.

" } }, "PipelineName": { "base": null, "refs": { "DeletePipelineInput$name": "

The name of the pipeline to be deleted.

", "DisableStageTransitionInput$pipelineName": "

The name of the pipeline in which you want to disable the flow of artifacts from one stage to another.

", "EnableStageTransitionInput$pipelineName": "

The name of the pipeline in which you want to enable the flow of artifacts from one stage to another.

", "GetPipelineInput$name": "

The name of the pipeline for which you want to get information. Pipeline names must be unique under an Amazon Web Services (AWS) user account.

", "GetPipelineStateInput$name": "

The name of the pipeline about which you want to get information.

", "GetPipelineStateOutput$pipelineName": "

The name of the pipeline for which you want to get the state.

", "PipelineContext$pipelineName": "

The name of the pipeline. This is a user-specified value. Pipeline names must be unique across all pipeline names under an Amazon Web Services account.

", "PipelineDeclaration$name": "

The name of the action to be performed.

", "PipelineSummary$name": "

The name of the pipeline.

", "PutActionRevisionInput$pipelineName": "

The name of the pipeline that will start processing the revision to the source.

", "StartPipelineExecutionInput$name": "

The name of the pipeline to start.

" } }, "PipelineNameInUseException": { "base": "

The specified pipeline name is already in use.

", "refs": { } }, "PipelineNotFoundException": { "base": "

The specified pipeline was specified in an invalid format or cannot be found.

", "refs": { } }, "PipelineStageDeclarationList": { "base": null, "refs": { "PipelineDeclaration$stages": "

The stage in which to perform the action.

" } }, "PipelineSummary": { "base": "

Returns a summary of a pipeline.

", "refs": { "PipelineList$member": null } }, "PipelineVersion": { "base": null, "refs": { "GetPipelineInput$version": "

The version number of the pipeline. If you do not specify a version, defaults to the most current version.

", "GetPipelineStateOutput$pipelineVersion": "

The version number of the pipeline.

A newly-created pipeline is always assigned a version number of 1.", "PipelineDeclaration$version": "

The version number of the pipeline. A new pipeline always has a version number of 1. This number is automatically incremented when a pipeline is updated.

", "PipelineSummary$version": "

The version number of the pipeline.

" } }, "PipelineVersionNotFoundException": { "base": "

The specified pipeline version was specified in an invalid format or cannot be found.

", "refs": { } }, "PollForJobsInput": { "base": "

Represents the input of a poll for jobs action.

", "refs": { } }, "PollForJobsOutput": { "base": "

Represents the output of a poll for jobs action.

", "refs": { } }, "PollForThirdPartyJobsInput": { "base": "

Represents the input of a poll for third party jobs action.

", "refs": { } }, "PollForThirdPartyJobsOutput": { "base": "

Represents the output of a poll for third party jobs action.

", "refs": { } }, "PutActionRevisionInput": { "base": "

Represents the input of a put action revision action.

", "refs": { } }, "PutActionRevisionOutput": { "base": "

Represents the output of a put action revision action.

", "refs": { } }, "PutJobFailureResultInput": { "base": "

Represents the input of a put job failure result action.

", "refs": { } }, "PutJobSuccessResultInput": { "base": "

Represents the input of a put job success result action.

", "refs": { } }, "PutThirdPartyJobFailureResultInput": { "base": "

Represents the input of a third party job failure result action.

", "refs": { } }, "PutThirdPartyJobSuccessResultInput": { "base": "

Represents the input of a put third party job success result action.

", "refs": { } }, "QueryParamMap": { "base": null, "refs": { "PollForJobsInput$queryParam": "

A map of property names and values. For an action type with no queryable properties, this value must be null or an empty map. For an action type with a queryable property, you must supply that property as a key in the map. Only jobs whose action configuration matches the mapped value will be returned.

" } }, "Revision": { "base": null, "refs": { "Artifact$revision": "

The artifact's revision ID. Depending on the type of object, this could be a commit ID (GitHub) or a revision ID (Amazon S3).

", "CurrentRevision$revision": "

The revision ID of the current version of an artifact.

" } }, "RevisionChangeId": { "base": null, "refs": { "ActionRevision$revisionChangeId": "

The unique identifier of the change that set the state to this revision, for example a deployment ID or timestamp.

" } }, "RevisionChangeIdentifier": { "base": null, "refs": { "CurrentRevision$changeIdentifier": "

The change identifier for the current revision.

" } }, "RevisionId": { "base": null, "refs": { "ActionRevision$revisionId": "

The system-generated unique ID that identifies the revision number of the action.

" } }, "RoleArn": { "base": null, "refs": { "ActionDeclaration$roleArn": "

The ARN of the IAM service role that will perform the declared action. This is assumed through the roleArn for the pipeline.

", "PipelineDeclaration$roleArn": "

The Amazon Resource Name (ARN) for AWS CodePipeline to use to either perform actions with no actionRoleArn, or to use to assume roles for actions with an actionRoleArn.

" } }, "S3ArtifactLocation": { "base": "

The location of the Amazon S3 bucket that contains a revision.

", "refs": { "ArtifactLocation$s3Location": "

The Amazon S3 bucket that contains the artifact.

" } }, "S3BucketName": { "base": null, "refs": { "S3ArtifactLocation$bucketName": "

The name of the Amazon S3 bucket.

" } }, "S3ObjectKey": { "base": null, "refs": { "S3ArtifactLocation$objectKey": "

The key of the object in the Amazon S3 bucket, which uniquely identifies the object in the bucket.

" } }, "SecretAccessKey": { "base": null, "refs": { "AWSSessionCredentials$secretAccessKey": "

The secret access key for the session.

" } }, "SessionToken": { "base": null, "refs": { "AWSSessionCredentials$sessionToken": "

The token for the session.

" } }, "StageActionDeclarationList": { "base": null, "refs": { "StageDeclaration$actions": "

The actions included in a stage.

" } }, "StageBlockerDeclarationList": { "base": null, "refs": { "StageDeclaration$blockers": "

The gates included in a stage.

" } }, "StageContext": { "base": "

Represents information about a stage to a job worker.

", "refs": { "PipelineContext$stage": "

The stage of the pipeline.

" } }, "StageDeclaration": { "base": "

Represents information about a stage and its definition.

", "refs": { "PipelineStageDeclarationList$member": null } }, "StageName": { "base": null, "refs": { "DisableStageTransitionInput$stageName": "

The name of the stage where you want to disable the inbound or outbound transition of artifacts.

", "EnableStageTransitionInput$stageName": "

The name of the stage where you want to enable the transition of artifacts, either into the stage (inbound) or from that stage to the next stage (outbound).

", "PutActionRevisionInput$stageName": "

The name of the stage that contains the action that will act upon the revision.

", "StageContext$name": "

The name of the stage.

", "StageDeclaration$name": "

The name of the stage.

", "StageState$stageName": "

The name of the stage.

" } }, "StageNotFoundException": { "base": "

The specified stage was specified in an invalid format or cannot be found.

", "refs": { } }, "StageState": { "base": "

Represents information about the state of the stage.

", "refs": { "StageStateList$member": null } }, "StageStateList": { "base": null, "refs": { "GetPipelineStateOutput$stageStates": "

A list of the pipeline stage output information, including stage name, state, most recent run details, whether the stage is disabled, and other data.

" } }, "StageTransitionType": { "base": null, "refs": { "DisableStageTransitionInput$transitionType": "

Specifies whether artifacts will be prevented from transitioning into the stage and being processed by the actions in that stage (inbound), or prevented from transitioning from the stage after they have been processed by the actions in that stage (outbound).

", "EnableStageTransitionInput$transitionType": "

Specifies whether artifacts will be allowed to enter the stage and be processed by the actions in that stage (inbound) or whether already-processed artifacts will be allowed to transition to the next stage (outbound).

" } }, "StartPipelineExecutionInput": { "base": "

Represents the input of a start pipeline execution action.

", "refs": { } }, "StartPipelineExecutionOutput": { "base": "

Represents the output of a start pipeline execution action.

", "refs": { } }, "ThirdPartyJob": { "base": "

A response to a PollForThirdPartyJobs request returned by AWS CodePipeline when there is a job to be worked upon by a partner action.

", "refs": { "ThirdPartyJobList$member": null } }, "ThirdPartyJobData": { "base": "

Represents information about the job data for a partner action.

", "refs": { "ThirdPartyJobDetails$data": "

The data to be returned by the third party job worker.

" } }, "ThirdPartyJobDetails": { "base": "

The details of a job sent in response to a GetThirdPartyJobDetails request.

", "refs": { "GetThirdPartyJobDetailsOutput$jobDetails": "

The details of the job, including any protected values defined for the job.

" } }, "ThirdPartyJobId": { "base": null, "refs": { "AcknowledgeThirdPartyJobInput$jobId": "

The unique system-generated ID of the job.

", "GetThirdPartyJobDetailsInput$jobId": "

The unique system-generated ID used for identifying the job.

", "PutThirdPartyJobFailureResultInput$jobId": "

The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs.

", "PutThirdPartyJobSuccessResultInput$jobId": "

The ID of the job that successfully completed. This is the same ID returned from PollForThirdPartyJobs.

", "ThirdPartyJobDetails$id": "

The identifier used to identify the job details in AWS CodePipeline.

" } }, "ThirdPartyJobList": { "base": null, "refs": { "PollForThirdPartyJobsOutput$jobs": "

Information about the jobs to take action on.

" } }, "Timestamp": { "base": null, "refs": { "ActionExecution$lastStatusChange": "

The last status change of the action.

", "ActionRevision$created": "

The date and time when the most recent version of the action was created, in timestamp format.

", "GetPipelineStateOutput$created": "

The date and time the pipeline was created, in timestamp format.

", "GetPipelineStateOutput$updated": "

The date and time the pipeline was last updated, in timestamp format.

", "PipelineSummary$created": "

The date and time the pipeline was created, in timestamp format.

", "PipelineSummary$updated": "

The date and time of the last update to the pipeline, in timestamp format.

" } }, "TransitionState": { "base": "

Represents information about the state of transitions between one stage and another stage.

", "refs": { "StageState$inboundTransitionState": "

The state of the inbound transition, which is either enabled or disabled.

" } }, "UpdatePipelineInput": { "base": "

Represents the input of an update pipeline action.

", "refs": { } }, "UpdatePipelineOutput": { "base": "

Represents the output of an update pipeline action.

", "refs": { } }, "Url": { "base": null, "refs": { "ActionExecution$externalExecutionUrl": "

The URL of a resource external to AWS that will be used when running the action, for example an external repository URL.

", "ActionState$entityUrl": "

A URL link for more information about the state of the action, such as a deployment group details page.

", "ActionState$revisionUrl": "

A URL link for more information about the revision, such as a commit details page.

", "ActionTypeSettings$thirdPartyConfigurationUrl": "

The URL of a sign-up page where users can sign up for an external service and perform initial configuration of the action provided by that service.

" } }, "UrlTemplate": { "base": null, "refs": { "ActionTypeSettings$entityUrlTemplate": "

The URL returned to the AWS CodePipeline console that provides a deep link to the resources of the external system, such as the configuration page for an AWS CodeDeploy deployment group. This link is provided as part of the action display within the pipeline.

", "ActionTypeSettings$executionUrlTemplate": "

The URL returned to the AWS CodePipeline console that contains a link to the top-level landing page for the external system, such as console page for AWS CodeDeploy. This link is shown on the pipeline view page in the AWS CodePipeline console and provides a link to the execution entity of the external action.

", "ActionTypeSettings$revisionUrlTemplate": "

The URL returned to the AWS CodePipeline console that contains a link to the page where customers can update or change the configuration of the external action.

" } }, "ValidationException": { "base": "

The validation was specified in an invalid format.

", "refs": { } }, "Version": { "base": null, "refs": { "ActionTypeId$version": "

A string that identifies the action type.

", "CreateCustomActionTypeInput$version": "

The version number of the custom action.

A newly-created custom action is always assigned a version number of 1. This is required.", "DeleteCustomActionTypeInput$version": "

The version of the custom action to delete.

" } } } }