Create Pull Request Approval Rule
codecommit_create_pull_request_approval_rule | R Documentation |
Creates an approval rule for a pull request¶
Description¶
Creates an approval rule for a pull request.
Usage¶
codecommit_create_pull_request_approval_rule(pullRequestId,
approvalRuleName, approvalRuleContent)
Arguments¶
pullRequestId |
[required] The system-generated ID of the pull request for which you want to create the approval rule. |
approvalRuleName |
[required] The name for the approval rule. |
approvalRuleContent |
[required] The content of the approval rule, including the number of approvals needed and the structure of an approval pool defined for approvals, if any. For more information about approval pools, see the CodeCommit User Guide. When you create the content of the approval rule, you can specify approvers in an approval pool in one of two ways:
For more information about IAM ARNs, wildcards, and formats, see IAM Identifiers in the IAM User Guide. |
Value¶
A list with the following syntax:
list(
approvalRule = list(
approvalRuleId = "string",
approvalRuleName = "string",
approvalRuleContent = "string",
ruleContentSha256 = "string",
lastModifiedDate = as.POSIXct(
"2015-01-01"
),
creationDate = as.POSIXct(
"2015-01-01"
),
lastModifiedUser = "string",
originApprovalRuleTemplate = list(
approvalRuleTemplateId = "string",
approvalRuleTemplateName = "string"
)
)
)
Request syntax¶
svc$create_pull_request_approval_rule(
pullRequestId = "string",
approvalRuleName = "string",
approvalRuleContent = "string"
)