Class: Aws::CodeCommit::Types::Evaluation
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::Evaluation
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Returns information about the approval rules applied to a pull request and whether conditions have been met.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#approval_rules_not_satisfied ⇒ Array<String>
The names of the approval rules that have not had their conditions met.
-
#approval_rules_satisfied ⇒ Array<String>
The names of the approval rules that have had their conditions met.
-
#approved ⇒ Boolean
Whether the state of the pull request is approved.
-
#overridden ⇒ Boolean
Whether the approval rule requirements for the pull request have been overridden and no longer need to be met.
Instance Attribute Details
#approval_rules_not_satisfied ⇒ Array<String>
The names of the approval rules that have not had their conditions met.
2390 2391 2392 2393 2394 2395 2396 2397 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2390 class Evaluation < Struct.new( :approved, :overridden, :approval_rules_satisfied, :approval_rules_not_satisfied) SENSITIVE = [] include Aws::Structure end |
#approval_rules_satisfied ⇒ Array<String>
The names of the approval rules that have had their conditions met.
2390 2391 2392 2393 2394 2395 2396 2397 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2390 class Evaluation < Struct.new( :approved, :overridden, :approval_rules_satisfied, :approval_rules_not_satisfied) SENSITIVE = [] include Aws::Structure end |
#approved ⇒ Boolean
Whether the state of the pull request is approved.
2390 2391 2392 2393 2394 2395 2396 2397 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2390 class Evaluation < Struct.new( :approved, :overridden, :approval_rules_satisfied, :approval_rules_not_satisfied) SENSITIVE = [] include Aws::Structure end |
#overridden ⇒ Boolean
Whether the approval rule requirements for the pull request have been overridden and no longer need to be met.
2390 2391 2392 2393 2394 2395 2396 2397 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2390 class Evaluation < Struct.new( :approved, :overridden, :approval_rules_satisfied, :approval_rules_not_satisfied) SENSITIVE = [] include Aws::Structure end |