Class: Aws::CodeCommit::Types::BatchGetCommitsInput

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

#commit_idsArray<String>

The full commit IDs of the commits to get information about.

<note markdown=“1”> You must supply the full SHA IDs of each commit. You cannot use shortened SHA IDs.

</note>

Returns:

  • (Array<String>)


624
625
626
627
628
629
# File 'lib/aws-sdk-codecommit/types.rb', line 624

class BatchGetCommitsInput < Struct.new(
  :commit_ids,
  :repository_name)
  SENSITIVE = []
  include Aws::Structure
end

#repository_nameString

The name of the repository that contains the commits.

Returns:

  • (String)


624
625
626
627
628
629
# File 'lib/aws-sdk-codecommit/types.rb', line 624

class BatchGetCommitsInput < Struct.new(
  :commit_ids,
  :repository_name)
  SENSITIVE = []
  include Aws::Structure
end