Skip to main content

pull_request_override_states

Creates, updates, deletes, gets or lists a pull_request_override_states resource.

Overview

Namepull_request_override_states
TypeResource
Idaws.codecommit.pull_request_override_states

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
overriddenbooleanA Boolean value that indicates whether a pull request has had its rules set aside (TRUE) or whether all approval rules still apply (FALSE).
overriderstringThe Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_pull_request_override_stateselectregionReturns information about whether approval rules have been set aside (overridden) for a pull request, and if so, the Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Returns information about whether approval rules have been set aside (overridden) for a pull request, and if so, the Amazon Resource Name (ARN) of the user or identity that overrode the rules and their requirements for the pull request.

SELECT
overridden,
overrider
FROM aws.codecommit.pull_request_override_states
WHERE region = '{{ region }}' -- required
;