Class: Aws::CodeBuild::Types::Webhook

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

Overview

Information about a webhook that connects repository events to a build project in CodeBuild.

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)


6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end

#build_typeString

Specifies the type of build this webhook will trigger.

Returns:

  • (String)


6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end

#filter_groupsArray<Array<Types::WebhookFilter>>

An array of arrays of ‘WebhookFilter` objects used to determine which webhooks are triggered. At least one `WebhookFilter` in the array must specify `EVENT` as its `type`.

For a build to be triggered, at least one filter group in the ‘filterGroups` array must pass. For a filter group to pass, each of its filters must pass.

Returns:



6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end

#last_modified_secretTime

A timestamp that indicates the last time a repository’s secret token was modified.

Returns:

  • (Time)


6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end

#payload_urlString

The CodeBuild endpoint where webhook events are sent.

Returns:

  • (String)


6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end

#secretString

The secret token of the associated repository.

<note markdown=“1”> A Bitbucket webhook does not support ‘secret`.

</note>

Returns:

  • (String)


6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end

#urlString

The URL to the webhook.

Returns:

  • (String)


6835
6836
6837
6838
6839
6840
6841
6842
6843
6844
6845
# File 'lib/aws-sdk-codebuild/types.rb', line 6835

class Webhook < Struct.new(
  :url,
  :payload_url,
  :secret,
  :branch_filter,
  :filter_groups,
  :build_type,
  :last_modified_secret)
  SENSITIVE = []
  include Aws::Structure
end