Class: Aws::CodeCommit::Types::BatchGetCommitsOutput

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-codecommit/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#commitsArray<Types::Commit>

An array of commit data type objects, each of which contains information about a specified commit.

Returns:



645
646
647
648
649
650
# File 'lib/aws-sdk-codecommit/types.rb', line 645

class BatchGetCommitsOutput < Struct.new(
  :commits,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end

#errorsArray<Types::BatchGetCommitsError>

Returns any commit IDs for which information could not be found. For example, if one of the commit IDs was a shortened SHA ID or that commit was not found in the specified repository, the ID returns an error object with more information.

Returns:



645
646
647
648
649
650
# File 'lib/aws-sdk-codecommit/types.rb', line 645

class BatchGetCommitsOutput < Struct.new(
  :commits,
  :errors)
  SENSITIVE = []
  include Aws::Structure
end