Class: Aws::CodeGuruReviewer::Types::EventInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::EventInfo
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codegurureviewer/types.rb
Overview
Information about an event. The event might be a push, pull request, scheduled request, or another type of event.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The name of the event.
-
#state ⇒ String
The state of an event.
Instance Attribute Details
#name ⇒ String
The name of the event. The possible names are ‘pull_request`, `workflow_dispatch`, `schedule`, and `push`
725 726 727 728 729 730 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 725 class EventInfo < Struct.new( :name, :state) SENSITIVE = [] include Aws::Structure end |
#state ⇒ String
The state of an event. The state might be open, closed, or another state.
725 726 727 728 729 730 |
# File 'lib/aws-sdk-codegurureviewer/types.rb', line 725 class EventInfo < Struct.new( :name, :state) SENSITIVE = [] include Aws::Structure end |