CodePipeline / Client / list_action_executions

list_action_executions#

CodePipeline.Client.list_action_executions(**kwargs)#

Lists the action executions that have occurred in a pipeline.

See also: AWS API Documentation

Request Syntax

response = client.list_action_executions(
    pipelineName='string',
    filter={
        'pipelineExecutionId': 'string',
        'latestInPipelineExecution': {
            'pipelineExecutionId': 'string',
            'startTimeRange': 'Latest'|'All'
        }
    },
    maxResults=123,
    nextToken='string'
)
Parameters:
  • pipelineName (string) –

    [REQUIRED]

    The name of the pipeline for which you want to list action execution history.

  • filter (dict) –

    Input information used to filter action execution history.

    • pipelineExecutionId (string) –

      The pipeline execution ID used to filter action execution history.

    • latestInPipelineExecution (dict) –

      The latest execution in the pipeline.

      Note

      Filtering on the latest execution is available for executions run on or after February 08, 2024.

      • pipelineExecutionId (string) – [REQUIRED]

        The execution ID for the latest execution in the pipeline.

      • startTimeRange (string) – [REQUIRED]

        The start time to filter on for the latest execution in the pipeline. Valid options:

        • All

        • Latest

  • maxResults (integer) –

    The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned nextToken value. Action execution history is retained for up to 12 months, based on action execution start times. Default value is 100.

    Note

    Detailed execution history is available for executions run on or after February 21, 2019.

  • nextToken (string) – The token that was returned from the previous ListActionExecutions call, which can be used to return the next set of action executions in the list.

Return type:

dict

Returns:

Response Syntax

{
    'actionExecutionDetails': [
        {
            'pipelineExecutionId': 'string',
            'actionExecutionId': 'string',
            'pipelineVersion': 123,
            'stageName': 'string',
            'actionName': 'string',
            'startTime': datetime(2015, 1, 1),
            'lastUpdateTime': datetime(2015, 1, 1),
            'updatedBy': 'string',
            'status': 'InProgress'|'Abandoned'|'Succeeded'|'Failed',
            'input': {
                'actionTypeId': {
                    'category': 'Source'|'Build'|'Deploy'|'Test'|'Invoke'|'Approval',
                    'owner': 'AWS'|'ThirdParty'|'Custom',
                    'provider': 'string',
                    'version': 'string'
                },
                'configuration': {
                    'string': 'string'
                },
                'resolvedConfiguration': {
                    'string': 'string'
                },
                'roleArn': 'string',
                'region': 'string',
                'inputArtifacts': [
                    {
                        'name': 'string',
                        's3location': {
                            'bucket': 'string',
                            'key': 'string'
                        }
                    },
                ],
                'namespace': 'string'
            },
            'output': {
                'outputArtifacts': [
                    {
                        'name': 'string',
                        's3location': {
                            'bucket': 'string',
                            'key': 'string'
                        }
                    },
                ],
                'executionResult': {
                    'externalExecutionId': 'string',
                    'externalExecutionSummary': 'string',
                    'externalExecutionUrl': 'string',
                    'errorDetails': {
                        'code': 'string',
                        'message': 'string'
                    }
                },
                'outputVariables': {
                    'string': 'string'
                }
            }
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) –

    • actionExecutionDetails (list) –

      The details for a list of recent executions, such as action execution ID.

      • (dict) –

        Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the action.

        • pipelineExecutionId (string) –

          The pipeline execution ID for the action execution.

        • actionExecutionId (string) –

          The action execution ID.

        • pipelineVersion (integer) –

          The version of the pipeline where the action was run.

        • stageName (string) –

          The name of the stage that contains the action.

        • actionName (string) –

          The name of the action.

        • startTime (datetime) –

          The start time of the action execution.

        • lastUpdateTime (datetime) –

          The last update time of the action execution.

        • updatedBy (string) –

          The ARN of the user who changed the pipeline execution details.

        • status (string) –

          The status of the action execution. Status categories are InProgress, Succeeded, and Failed.

        • input (dict) –

          Input details for the action execution, such as role ARN, Region, and input artifacts.

          • actionTypeId (dict) –

            Represents information about an action type.

            • category (string) –

              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 following values.

              • Source

              • Build

              • Test

              • Deploy

              • Invoke

              • Approval

            • owner (string) –

              The creator of the action being called. There are three valid values for the Owner field in the action category section within your pipeline structure: AWS, ThirdParty, and Custom. For more information, see Valid Action Types and Providers in CodePipeline.

            • provider (string) –

              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 CodeDeploy, which would be specified as CodeDeploy. For more information, see Valid Action Types and Providers in CodePipeline.

            • version (string) –

              A string that describes the action version.

          • configuration (dict) –

            Configuration data for an action execution.

            • (string) –

              • (string) –

          • resolvedConfiguration (dict) –

            Configuration data for an action execution with all variable references replaced with their real values for the execution.

            • (string) –

              • (string) –

          • roleArn (string) –

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

          • region (string) –

            The Amazon Web Services Region for the action, such as us-east-1.

          • inputArtifacts (list) –

            Details of input artifacts of the action that correspond to the action execution.

            • (dict) –

              Artifact details for the action execution, such as the artifact location.

              • name (string) –

                The artifact object name for the action execution.

              • s3location (dict) –

                The Amazon S3 artifact location for the action execution.

                • bucket (string) –

                  The Amazon S3 artifact bucket for an action’s artifacts.

                • key (string) –

                  The artifact name.

          • namespace (string) –

            The variable namespace associated with the action. All variables produced as output by this action fall under this namespace.

        • output (dict) –

          Output details for the action execution, such as the action execution result.

          • outputArtifacts (list) –

            Details of output artifacts of the action that correspond to the action execution.

            • (dict) –

              Artifact details for the action execution, such as the artifact location.

              • name (string) –

                The artifact object name for the action execution.

              • s3location (dict) –

                The Amazon S3 artifact location for the action execution.

                • bucket (string) –

                  The Amazon S3 artifact bucket for an action’s artifacts.

                • key (string) –

                  The artifact name.

          • executionResult (dict) –

            Execution result information listed in the output details for an action execution.

            • externalExecutionId (string) –

              The action provider’s external ID for the action execution.

            • externalExecutionSummary (string) –

              The action provider’s summary for the action execution.

            • externalExecutionUrl (string) –

              The deepest external link to the external resource (for example, a repository URL or deployment endpoint) that is used when running the action.

            • errorDetails (dict) –

              Represents information about an error in CodePipeline.

              • code (string) –

                The system ID or number code of the error.

              • message (string) –

                The text of the error message.

          • outputVariables (dict) –

            The outputVariables field shows the key-value pairs that were output as part of that execution.

            • (string) –

              • (string) –

    • nextToken (string) –

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

Exceptions

  • CodePipeline.Client.exceptions.ValidationException

  • CodePipeline.Client.exceptions.PipelineNotFoundException

  • CodePipeline.Client.exceptions.InvalidNextTokenException

  • CodePipeline.Client.exceptions.PipelineExecutionNotFoundException