You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateWebhookInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  project_name: "ProjectName", # required
  branch_filter: "String",
  rotate_secret: false,
  filter_groups: [
    [
      {
        type: "EVENT", # required, accepts EVENT, BASE_REF, HEAD_REF, ACTOR_ACCOUNT_ID, FILE_PATH, COMMIT_MESSAGE
        pattern: "String", # required
        exclude_matched_pattern: false,
      },
    ],
  ],
  build_type: "BUILD", # accepts BUILD, BUILD_BATCH
}

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)

    A regular expression used to determine which repository branches are built when a webhook is triggered.

#build_typeString

Specifies the type of build this webhook will trigger.

Possible values:

  • BUILD
  • BUILD_BATCH

Returns:

  • (String)

    Specifies the type of build this webhook will trigger.

#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:

  • (Array<Array<Types::WebhookFilter>>)

    An array of arrays of WebhookFilter objects used to determine if a webhook event can trigger a build.

#project_nameString

The name of the AWS CodeBuild project.

Returns:

  • (String)

    The name of the AWS CodeBuild project.

#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)

    A boolean value that specifies whether the associated GitHub repository\'s secret token should be updated.