Class: Aws::CodeGuruReviewer::Types::EventInfo
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeGuruReviewer::Types::EventInfo
- Defined in:
- gems/aws-sdk-codegurureviewer/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 'gems/aws-sdk-codegurureviewer/lib/aws-sdk-codegurureviewer/types.rb', line 725 class EventInfo < Struct.new( :name, :state) SENSITIVE = [] include Aws::Structure end |