Class: Aws::CodeCommit::Types::BatchGetCommitsError
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeCommit::Types::BatchGetCommitsError
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codecommit/types.rb
Overview
Returns information about errors in a BatchGetCommits operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#commit_id ⇒ String
A commit ID that either could not be found or was not in a valid format.
-
#error_code ⇒ String
An error code that specifies whether the commit ID was not valid or not found.
-
#error_message ⇒ String
An error message that provides detail about why the commit ID either was not found or was not valid.
Instance Attribute Details
#commit_id ⇒ String
A commit ID that either could not be found or was not in a valid format.
601 602 603 604 605 606 607 |
# File 'lib/aws-sdk-codecommit/types.rb', line 601 class BatchGetCommitsError < Struct.new( :commit_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_code ⇒ String
An error code that specifies whether the commit ID was not valid or not found.
601 602 603 604 605 606 607 |
# File 'lib/aws-sdk-codecommit/types.rb', line 601 class BatchGetCommitsError < Struct.new( :commit_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |
#error_message ⇒ String
An error message that provides detail about why the commit ID either was not found or was not valid.
601 602 603 604 605 606 607 |
# File 'lib/aws-sdk-codecommit/types.rb', line 601 class BatchGetCommitsError < Struct.new( :commit_id, :error_code, :error_message) SENSITIVE = [] include Aws::Structure end |