Class: Aws::CodeBuild::Types::UpdateWebhookInput

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb

Overview

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#branch_filterString

A regular expression used to determine which repository branches are built when a webhook is triggered. If the name of a branch matches the regular expression, then it is built. If branchFilter is empty, then all branches are built.

It is recommended that you use filterGroups instead of branchFilter.

Returns:

  • (String)


8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 8128

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type,
  :pull_request_build_policy)
  SENSITIVE = []
  include Aws::Structure
end

#build_typeString

Specifies the type of build this webhook will trigger.

RUNNER_BUILDKITE_BUILD is only available for NO_SOURCE source type projects configured for Buildkite runner builds. For more information about CodeBuild-hosted Buildkite runner builds, see Tutorial: Configure a CodeBuild-hosted Buildkite runner in the CodeBuild user guide.

Returns:

  • (String)


8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 8128

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type,
  :pull_request_build_policy)
  SENSITIVE = []
  include Aws::Structure
end

#filter_groupsArray<Array<Types::WebhookFilter>>

An array of arrays of WebhookFilter objects used to determine if a webhook event can trigger a build. A filter group must contain at least one EVENT WebhookFilter.

Returns:



8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 8128

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type,
  :pull_request_build_policy)
  SENSITIVE = []
  include Aws::Structure
end

#project_nameString

The name of the CodeBuild project.

Returns:

  • (String)


8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 8128

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type,
  :pull_request_build_policy)
  SENSITIVE = []
  include Aws::Structure
end

#pull_request_build_policyTypes::PullRequestBuildPolicy

A PullRequestBuildPolicy object that defines comment-based approval requirements for triggering builds on pull requests. This policy helps control when automated builds are executed based on contributor permissions and approval workflows.



8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 8128

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type,
  :pull_request_build_policy)
  SENSITIVE = []
  include Aws::Structure
end

#rotate_secretBoolean

A boolean value that specifies whether the associated GitHub repository's secret token should be updated. If you use Bitbucket for your repository, rotateSecret is ignored.

Returns:

  • (Boolean)


8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
# File 'gems/aws-sdk-codebuild/lib/aws-sdk-codebuild/types.rb', line 8128

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type,
  :pull_request_build_policy)
  SENSITIVE = []
  include Aws::Structure
end