Class: Aws::CodeCommit::Types::PullRequestCreatedEventMetadata

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

Overview

Metadata about the pull request that is used when comparing the pull request source with its destination.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#destination_commit_idString

The commit ID of the tip of the branch specified as the destination branch when the pull request was created.

Returns:

  • (String)


5665
5666
5667
5668
5669
5670
5671
5672
# File 'lib/aws-sdk-codecommit/types.rb', line 5665

class PullRequestCreatedEventMetadata < Struct.new(
  :repository_name,
  :source_commit_id,
  :destination_commit_id,
  :merge_base)
  SENSITIVE = []
  include Aws::Structure
end

#merge_baseString

The commit ID of the most recent commit that the source branch and the destination branch have in common.

Returns:

  • (String)


5665
5666
5667
5668
5669
5670
5671
5672
# File 'lib/aws-sdk-codecommit/types.rb', line 5665

class PullRequestCreatedEventMetadata < Struct.new(
  :repository_name,
  :source_commit_id,
  :destination_commit_id,
  :merge_base)
  SENSITIVE = []
  include Aws::Structure
end

#repository_nameString

The name of the repository where the pull request was created.

Returns:

  • (String)


5665
5666
5667
5668
5669
5670
5671
5672
# File 'lib/aws-sdk-codecommit/types.rb', line 5665

class PullRequestCreatedEventMetadata < Struct.new(
  :repository_name,
  :source_commit_id,
  :destination_commit_id,
  :merge_base)
  SENSITIVE = []
  include Aws::Structure
end

#source_commit_idString

The commit ID on the source branch used when the pull request was created.

Returns:

  • (String)


5665
5666
5667
5668
5669
5670
5671
5672
# File 'lib/aws-sdk-codecommit/types.rb', line 5665

class PullRequestCreatedEventMetadata < Struct.new(
  :repository_name,
  :source_commit_id,
  :destination_commit_id,
  :merge_base)
  SENSITIVE = []
  include Aws::Structure
end