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

CreatePullRequestInput

import type { CreatePullRequestInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";
interface CreatePullRequestInput {
clientRequestToken?: string | null;
description?: string | null;
targets: Target[];
title: string;
}

§Properties

§
clientRequestToken?: string | null
[src]

A unique, client-generated idempotency token that, when provided in a request, ensures the request cannot be repeated with a changed parameter. If a request is received with the same parameters and a token is included, the request returns information about the initial request that used that token.

Note: The AWS SDKs prepopulate client request tokens. If you are using an AWS SDK, an idempotency token is created for you.

§
description?: string | null
[src]

A description of the pull request.

§
targets: Target[]
[src]

The targets for the pull request, including the source of the code to be reviewed (the source branch) and the destination where the creator of the pull request intends the code to be merged after the pull request is closed (the destination branch).

§
title: string
[src]

The title of the pull request. This title is used to identify the pull request to other users in the repository.