Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

UpdateApprovalRuleTemplateContentInput

import type { UpdateApprovalRuleTemplateContentInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface UpdateApprovalRuleTemplateContentInput {
approvalRuleTemplateName: string;
existingRuleContentSha256?: string | null;
newRuleContent: string;
}

§Properties

§
approvalRuleTemplateName: string
[src]

The name of the approval rule template where you want to update the content of the rule.

§
existingRuleContentSha256?: string | null
[src]

The SHA-256 hash signature for the content of the approval rule. You can retrieve this information by using "GetPullRequest".

§
newRuleContent: string
[src]

The content that replaces the existing content of the rule. Content statements must be complete. You cannot provide only the changes.