Skip to content

Batch Disassociate Approval Rule Template From Repositories

codecommit_batch_disassociate_approval_rule_template_from_repositories R Documentation

Removes the association between an approval rule template and one or more specified repositories

Description

Removes the association between an approval rule template and one or more specified repositories.

Usage

codecommit_batch_disassociate_approval_rule_template_from_repositories(
  approvalRuleTemplateName, repositoryNames)

Arguments

approvalRuleTemplateName

[required] The name of the template that you want to disassociate from one or more repositories.

repositoryNames

[required] The repository names that you want to disassociate from the approval rule template.

The length constraint limit is for each string in the array. The array itself can be empty.

Value

A list with the following syntax:

list(
  disassociatedRepositoryNames = list(
    "string"
  ),
  errors = list(
    list(
      repositoryName = "string",
      errorCode = "string",
      errorMessage = "string"
    )
  )
)

Request syntax

svc$batch_disassociate_approval_rule_template_from_repositories(
  approvalRuleTemplateName = "string",
  repositoryNames = list(
    "string"
  )
)