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

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
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.

<note markdown=“1”> It is recommended that you use ‘filterGroups` instead of `branchFilter`.

</note>

Returns:

  • (String)


5974
5975
5976
5977
5978
5979
5980
5981
5982
# File 'lib/aws-sdk-codebuild/types.rb', line 5974

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

#build_typeString

Specifies the type of build this webhook will trigger.

Returns:

  • (String)


5974
5975
5976
5977
5978
5979
5980
5981
5982
# File 'lib/aws-sdk-codebuild/types.rb', line 5974

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type)
  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:



5974
5975
5976
5977
5978
5979
5980
5981
5982
# File 'lib/aws-sdk-codebuild/types.rb', line 5974

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

#project_nameString

The name of the CodeBuild project.

Returns:

  • (String)


5974
5975
5976
5977
5978
5979
5980
5981
5982
# File 'lib/aws-sdk-codebuild/types.rb', line 5974

class UpdateWebhookInput < Struct.new(
  :project_name,
  :branch_filter,
  :rotate_secret,
  :filter_groups,
  :build_type)
  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)


5974
5975
5976
5977
5978
5979
5980
5981
5982
# File 'lib/aws-sdk-codebuild/types.rb', line 5974

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