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

CreateRepositoryInput

import type { CreateRepositoryInput } from "https://aws-api.deno.dev/v0.3/services/codecommit.ts?docs=full";

Represents the input of a create repository operation.

interface CreateRepositoryInput {
repositoryDescription?: string | null;
repositoryName: string;
tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
repositoryDescription?: string | null
[src]

A comment or description about the new repository.

Note: The description field for a repository accepts all HTML characters and all valid Unicode characters. Applications that do not HTML-encode the description and display it in a webpage can expose users to potentially malicious code. Make sure that you HTML-encode the description field in any application that uses this API to display the repository description on a webpage.

§
repositoryName: string
[src]

The name of the new repository to be created.

Note: The repository name must be unique across the calling AWS account. Repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. For more information about the limits on repository names, see Limits in the AWS CodeCommit User Guide. The suffix .git is prohibited.

§
tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

One or more tag key-value pairs to use when tagging this repository.