Class: Aws::CodeCommit::Types::DescribePullRequestEventsInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::DescribePullRequestEventsInput
- Defined in:
- gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#actor_arn ⇒ String
The Amazon Resource Name (ARN) of the user whose actions resulted in the event.
-
#max_results ⇒ Integer
A non-zero, non-negative integer used to limit the number of returned results.
-
#next_token ⇒ String
An enumeration token that, when provided in a request, returns the next batch of the results.
-
#pull_request_event_type ⇒ String
Optional.
-
#pull_request_id ⇒ String
The system-generated ID of the pull request.
Instance Attribute Details
#actor_arn ⇒ String
The Amazon Resource Name (ARN) of the user whose actions resulted in the event. Examples include updating the pull request with more commits or changing the status of a pull request.
2202 2203 2204 2205 2206 2207 2208 2209 2210 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2202 class DescribePullRequestEventsInput < Struct.new( :pull_request_id, :pull_request_event_type, :actor_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#max_results ⇒ Integer
A non-zero, non-negative integer used to limit the number of returned results. The default is 100 events, which is also the maximum number of events that can be returned in a result.
2202 2203 2204 2205 2206 2207 2208 2209 2210 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2202 class DescribePullRequestEventsInput < Struct.new( :pull_request_id, :pull_request_event_type, :actor_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#next_token ⇒ String
An enumeration token that, when provided in a request, returns the next batch of the results.
2202 2203 2204 2205 2206 2207 2208 2209 2210 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2202 class DescribePullRequestEventsInput < Struct.new( :pull_request_id, :pull_request_event_type, :actor_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#pull_request_event_type ⇒ String
Optional. The pull request event type about which you want to return information.
2202 2203 2204 2205 2206 2207 2208 2209 2210 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2202 class DescribePullRequestEventsInput < Struct.new( :pull_request_id, :pull_request_event_type, :actor_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |
#pull_request_id ⇒ String
The system-generated ID of the pull request. To get this ID, use ListPullRequests.
2202 2203 2204 2205 2206 2207 2208 2209 2210 |
# File 'gems/aws-sdk-codecommit/lib/aws-sdk-codecommit/types.rb', line 2202 class DescribePullRequestEventsInput < Struct.new( :pull_request_id, :pull_request_event_type, :actor_arn, :next_token, :max_results) SENSITIVE = [] include Aws::Structure end |