codecommit

package
v0.11.0 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 23, 2019 License: Apache-2.0 Imports: 8 Imported by: 45

Documentation

Overview

Package codecommit provides the client and types for making API requests to CodeCommit.

This is the AWS CodeCommit API Reference. This reference provides descriptions of the operations and data types for AWS CodeCommit API along with usage examples.

You can use the AWS CodeCommit API to work with the following objects:

Repositories, by calling the following:

  • BatchGetRepositories, which returns information about one or more repositories associated with your AWS account.

  • CreateRepository, which creates an AWS CodeCommit repository.

  • DeleteRepository, which deletes an AWS CodeCommit repository.

  • GetRepository, which returns information about a specified repository.

  • ListRepositories, which lists all AWS CodeCommit repositories associated with your AWS account.

  • UpdateRepositoryDescription, which sets or updates the description of the repository.

  • UpdateRepositoryName, which changes the name of the repository. If you change the name of a repository, no other users of that repository will be able to access it until you send them the new HTTPS or SSH URL to use.

Branches, by calling the following:

  • CreateBranch, which creates a new branch in a specified repository.

  • DeleteBranch, which deletes the specified branch in a repository unless it is the default branch.

  • GetBranch, which returns information about a specified branch.

  • ListBranches, which lists all branches for a specified repository.

  • UpdateDefaultBranch, which changes the default branch for a repository.

Files, by calling the following:

  • DeleteFile, which deletes the content of a specified file from a specified branch.

  • GetBlob, which returns the base-64 encoded content of an individual Git blob object within a repository.

  • GetFile, which returns the base-64 encoded content of a specified file.

  • GetFolder, which returns the contents of a specified folder or directory.

  • PutFile, which adds or modifies a single file in a specified repository and branch.

Commits, by calling the following:

  • BatchGetCommits, which returns information about one or more commits in a repository

  • CreateCommit, which creates a commit for changes to a repository.

  • GetCommit, which returns information about a commit, including commit messages and author and committer information.

  • GetDifferences, which returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID or other fully qualified reference).

Merges, by calling the following:

  • BatchDescribeMergeConflicts, which returns information about conflicts in a merge between commits in a repository.

  • CreateUnreferencedMergeCommit, which creates an unreferenced commit between two branches or commits for the purpose of comparing them and identifying any potential conflicts.

  • DescribeMergeConflicts, which returns information about merge conflicts between the base, source, and destination versions of a file in a potential merge.

  • GetMergeCommit, which returns information about the merge between a source and destination commit.

  • GetMergeConflicts, which returns information about merge conflicts between the source and destination branch in a pull request.

  • GetMergeOptions, which returns information about the available merge options between two branches or commit specifiers.

  • MergeBranchesByFastForward, which merges two branches using the fast-forward merge option.

  • MergeBranchesBySquash, which merges two branches using the squash merge option.

  • MergeBranchesByThreeWay, which merges two branches using the three-way merge option.

Pull requests, by calling the following:

  • CreatePullRequest, which creates a pull request in a specified repository.

  • DescribePullRequestEvents, which returns information about one or more pull request events.

  • GetCommentsForPullRequest, which returns information about comments on a specified pull request.

  • GetPullRequest, which returns information about a specified pull request.

  • ListPullRequests, which lists all pull requests for a repository.

  • MergePullRequestByFastForward, which merges the source destination branch of a pull request into the specified destination branch for that pull request using the fast-forward merge option.

  • MergePullRequestBySquash, which merges the source destination branch of a pull request into the specified destination branch for that pull request using the squash merge option.

  • MergePullRequestByThreeWay. which merges the source destination branch of a pull request into the specified destination branch for that pull request using the three-way merge option.

  • PostCommentForPullRequest, which posts a comment to a pull request at the specified line, file, or request.

  • UpdatePullRequestDescription, which updates the description of a pull request.

  • UpdatePullRequestStatus, which updates the status of a pull request.

  • UpdatePullRequestTitle, which updates the title of a pull request.

Comments in a repository, by calling the following:

  • DeleteCommentContent, which deletes the content of a comment on a commit in a repository.

  • GetComment, which returns information about a comment on a commit.

  • GetCommentsForComparedCommit, which returns information about comments on the comparison between two commit specifiers in a repository.

  • PostCommentForComparedCommit, which creates a comment on the comparison between two commit specifiers in a repository.

  • PostCommentReply, which creates a reply to a comment.

  • UpdateComment, which updates the content of a comment on a commit in a repository.

Tags used to tag resources in AWS CodeCommit (not Git tags), by calling the following:

  • ListTagsForResource, which gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeCommit.

  • TagResource, which adds or updates tags for a resource in AWS CodeCommit.

  • UntagResource, which removes tags for a resource in AWS CodeCommit.

Triggers, by calling the following:

  • GetRepositoryTriggers, which returns information about triggers configured for a repository.

  • PutRepositoryTriggers, which replaces all triggers for a repository and can be used to create or delete triggers.

  • TestRepositoryTriggers, which tests the functionality of a repository trigger by sending data to the trigger target.

For information about how to use AWS CodeCommit, see the AWS CodeCommit User Guide (https://docs.aws.amazon.com/codecommit/latest/userguide/welcome.html).

See https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13 for more information on this service.

See codecommit package documentation for more information. https://docs.aws.amazon.com/sdk-for-go/api/service/codecommit/

Using the Client

To use CodeCommit with the SDK use the New function to create a new service client. With that client you can make API requests to the service. These clients are safe to use concurrently.

See the SDK's documentation for more information on how to use the SDK. https://docs.aws.amazon.com/sdk-for-go/api/

See aws.Config documentation for more information on configuring SDK clients. https://docs.aws.amazon.com/sdk-for-go/api/aws/#Config

See the CodeCommit client for more information on creating client for this service. https://docs.aws.amazon.com/sdk-for-go/api/service/codecommit/#New

Index

Constants

View Source
const (
	ServiceName = "CodeCommit" // Service's name
	ServiceID   = "CodeCommit" // Service's identifier
	EndpointsID = "codecommit" // Service's Endpoint identifier
)
View Source
const (

	// ErrCodeActorDoesNotExistException for service response error code
	// "ActorDoesNotExistException".
	//
	// The specified Amazon Resource Name (ARN) does not exist in the AWS account.
	ErrCodeActorDoesNotExistException = "ActorDoesNotExistException"

	// ErrCodeAuthorDoesNotExistException for service response error code
	// "AuthorDoesNotExistException".
	//
	// The specified Amazon Resource Name (ARN) does not exist in the AWS account.
	ErrCodeAuthorDoesNotExistException = "AuthorDoesNotExistException"

	// ErrCodeBeforeCommitIdAndAfterCommitIdAreSameException for service response error code
	// "BeforeCommitIdAndAfterCommitIdAreSameException".
	//
	// The before commit ID and the after commit ID are the same, which is not valid.
	// The before commit ID and the after commit ID must be different commit IDs.
	ErrCodeBeforeCommitIdAndAfterCommitIdAreSameException = "BeforeCommitIdAndAfterCommitIdAreSameException"

	// ErrCodeBlobIdDoesNotExistException for service response error code
	// "BlobIdDoesNotExistException".
	//
	// The specified blob does not exist.
	ErrCodeBlobIdDoesNotExistException = "BlobIdDoesNotExistException"

	// ErrCodeBlobIdRequiredException for service response error code
	// "BlobIdRequiredException".
	//
	// A blob ID is required but was not specified.
	ErrCodeBlobIdRequiredException = "BlobIdRequiredException"

	// ErrCodeBranchDoesNotExistException for service response error code
	// "BranchDoesNotExistException".
	//
	// The specified branch does not exist.
	ErrCodeBranchDoesNotExistException = "BranchDoesNotExistException"

	// ErrCodeBranchNameExistsException for service response error code
	// "BranchNameExistsException".
	//
	// The specified branch name already exists.
	ErrCodeBranchNameExistsException = "BranchNameExistsException"

	// ErrCodeBranchNameIsTagNameException for service response error code
	// "BranchNameIsTagNameException".
	//
	// The specified branch name is not valid because it is a tag name. Type the
	// name of a current branch in the repository. For a list of valid branch names,
	// use ListBranches.
	ErrCodeBranchNameIsTagNameException = "BranchNameIsTagNameException"

	// ErrCodeBranchNameRequiredException for service response error code
	// "BranchNameRequiredException".
	//
	// A branch name is required but was not specified.
	ErrCodeBranchNameRequiredException = "BranchNameRequiredException"

	// ErrCodeCommentContentRequiredException for service response error code
	// "CommentContentRequiredException".
	//
	// The comment is empty. You must provide some content for a comment. The content
	// cannot be null.
	ErrCodeCommentContentRequiredException = "CommentContentRequiredException"

	// ErrCodeCommentContentSizeLimitExceededException for service response error code
	// "CommentContentSizeLimitExceededException".
	//
	// The comment is too large. Comments are limited to 1,000 characters.
	ErrCodeCommentContentSizeLimitExceededException = "CommentContentSizeLimitExceededException"

	// ErrCodeCommentDeletedException for service response error code
	// "CommentDeletedException".
	//
	// This comment has already been deleted. You cannot edit or delete a deleted
	// comment.
	ErrCodeCommentDeletedException = "CommentDeletedException"

	// ErrCodeCommentDoesNotExistException for service response error code
	// "CommentDoesNotExistException".
	//
	// No comment exists with the provided ID. Verify that you have provided the
	// correct ID, and then try again.
	ErrCodeCommentDoesNotExistException = "CommentDoesNotExistException"

	// ErrCodeCommentIdRequiredException for service response error code
	// "CommentIdRequiredException".
	//
	// The comment ID is missing or null. A comment ID is required.
	ErrCodeCommentIdRequiredException = "CommentIdRequiredException"

	// ErrCodeCommentNotCreatedByCallerException for service response error code
	// "CommentNotCreatedByCallerException".
	//
	// You cannot modify or delete this comment. Only comment authors can modify
	// or delete their comments.
	ErrCodeCommentNotCreatedByCallerException = "CommentNotCreatedByCallerException"

	// ErrCodeCommitDoesNotExistException for service response error code
	// "CommitDoesNotExistException".
	//
	// The specified commit does not exist or no commit was specified, and the specified
	// repository has no default branch.
	ErrCodeCommitDoesNotExistException = "CommitDoesNotExistException"

	// ErrCodeCommitIdDoesNotExistException for service response error code
	// "CommitIdDoesNotExistException".
	//
	// The specified commit ID does not exist.
	ErrCodeCommitIdDoesNotExistException = "CommitIdDoesNotExistException"

	// ErrCodeCommitIdRequiredException for service response error code
	// "CommitIdRequiredException".
	//
	// A commit ID was not specified.
	ErrCodeCommitIdRequiredException = "CommitIdRequiredException"

	// ErrCodeCommitIdsLimitExceededException for service response error code
	// "CommitIdsLimitExceededException".
	//
	// The maximum number of allowed commit IDs in a batch request is 100. Verify
	// that your batch requests contains no more than 100 commit IDs, and then try
	// again.
	ErrCodeCommitIdsLimitExceededException = "CommitIdsLimitExceededException"

	// ErrCodeCommitIdsListRequiredException for service response error code
	// "CommitIdsListRequiredException".
	ErrCodeCommitIdsListRequiredException = "CommitIdsListRequiredException"

	// ErrCodeCommitMessageLengthExceededException for service response error code
	// "CommitMessageLengthExceededException".
	//
	// The commit message is too long. Provide a shorter string.
	ErrCodeCommitMessageLengthExceededException = "CommitMessageLengthExceededException"

	// ErrCodeCommitRequiredException for service response error code
	// "CommitRequiredException".
	//
	// A commit was not specified.
	ErrCodeCommitRequiredException = "CommitRequiredException"

	// ErrCodeConcurrentReferenceUpdateException for service response error code
	// "ConcurrentReferenceUpdateException".
	//
	// The merge cannot be completed because the target branch has been modified.
	// Another user might have modified the target branch while the merge was in
	// progress. Wait a few minutes, and then try again.
	ErrCodeConcurrentReferenceUpdateException = "ConcurrentReferenceUpdateException"

	// ErrCodeDefaultBranchCannotBeDeletedException for service response error code
	// "DefaultBranchCannotBeDeletedException".
	//
	// The specified branch is the default branch for the repository, and cannot
	// be deleted. To delete this branch, you must first set another branch as the
	// default branch.
	ErrCodeDefaultBranchCannotBeDeletedException = "DefaultBranchCannotBeDeletedException"

	// ErrCodeDirectoryNameConflictsWithFileNameException for service response error code
	// "DirectoryNameConflictsWithFileNameException".
	//
	// A file cannot be added to the repository because the specified path name
	// has the same name as a file that already exists in this repository. Either
	// provide a different name for the file, or specify a different path for the
	// file.
	ErrCodeDirectoryNameConflictsWithFileNameException = "DirectoryNameConflictsWithFileNameException"

	// ErrCodeEncryptionIntegrityChecksFailedException for service response error code
	// "EncryptionIntegrityChecksFailedException".
	//
	// An encryption integrity check failed.
	ErrCodeEncryptionIntegrityChecksFailedException = "EncryptionIntegrityChecksFailedException"

	// ErrCodeEncryptionKeyAccessDeniedException for service response error code
	// "EncryptionKeyAccessDeniedException".
	//
	// An encryption key could not be accessed.
	ErrCodeEncryptionKeyAccessDeniedException = "EncryptionKeyAccessDeniedException"

	// ErrCodeEncryptionKeyDisabledException for service response error code
	// "EncryptionKeyDisabledException".
	//
	// The encryption key is disabled.
	ErrCodeEncryptionKeyDisabledException = "EncryptionKeyDisabledException"

	// ErrCodeEncryptionKeyNotFoundException for service response error code
	// "EncryptionKeyNotFoundException".
	//
	// No encryption key was found.
	ErrCodeEncryptionKeyNotFoundException = "EncryptionKeyNotFoundException"

	// ErrCodeEncryptionKeyUnavailableException for service response error code
	// "EncryptionKeyUnavailableException".
	//
	// The encryption key is not available.
	ErrCodeEncryptionKeyUnavailableException = "EncryptionKeyUnavailableException"

	// ErrCodeFileContentAndSourceFileSpecifiedException for service response error code
	// "FileContentAndSourceFileSpecifiedException".
	//
	// The commit cannot be created because both a source file and file content
	// have been specified for the same file. You cannot provide both. Either specify
	// a source file, or provide the file content directly.
	ErrCodeFileContentAndSourceFileSpecifiedException = "FileContentAndSourceFileSpecifiedException"

	// ErrCodeFileContentRequiredException for service response error code
	// "FileContentRequiredException".
	//
	// The file cannot be added because it is empty. Empty files cannot be added
	// to the repository with this API.
	ErrCodeFileContentRequiredException = "FileContentRequiredException"

	// ErrCodeFileContentSizeLimitExceededException for service response error code
	// "FileContentSizeLimitExceededException".
	//
	// The file cannot be added because it is too large. The maximum file size that
	// can be added is 6 MB, and the combined file content change size is 7 MB.
	// Consider making these changes using a Git client.
	ErrCodeFileContentSizeLimitExceededException = "FileContentSizeLimitExceededException"

	// ErrCodeFileDoesNotExistException for service response error code
	// "FileDoesNotExistException".
	//
	// The specified file does not exist. Verify that you have provided the correct
	// name of the file, including its full path and extension.
	ErrCodeFileDoesNotExistException = "FileDoesNotExistException"

	// ErrCodeFileEntryRequiredException for service response error code
	// "FileEntryRequiredException".
	//
	// The commit cannot be created because no files have been specified as added,
	// updated, or changed (PutFile or DeleteFile) for the commit.
	ErrCodeFileEntryRequiredException = "FileEntryRequiredException"

	// ErrCodeFileModeRequiredException for service response error code
	// "FileModeRequiredException".
	//
	// The commit cannot be created because a file mode is required to update mode
	// permissions for an existing file, but no file mode has been specified.
	ErrCodeFileModeRequiredException = "FileModeRequiredException"

	// ErrCodeFileNameConflictsWithDirectoryNameException for service response error code
	// "FileNameConflictsWithDirectoryNameException".
	//
	// A file cannot be added to the repository because the specified file name
	// has the same name as a directory in this repository. Either provide another
	// name for the file, or add the file in a directory that does not match the
	// file name.
	ErrCodeFileNameConflictsWithDirectoryNameException = "FileNameConflictsWithDirectoryNameException"

	// ErrCodeFilePathConflictsWithSubmodulePathException for service response error code
	// "FilePathConflictsWithSubmodulePathException".
	//
	// The commit cannot be created because a specified file path points to a submodule.
	// Verify that the destination files have valid file paths that do not point
	// to a submodule.
	ErrCodeFilePathConflictsWithSubmodulePathException = "FilePathConflictsWithSubmodulePathException"

	// ErrCodeFileTooLargeException for service response error code
	// "FileTooLargeException".
	//
	// The specified file exceeds the file size limit for AWS CodeCommit. For more
	// information about limits in AWS CodeCommit, see AWS CodeCommit User Guide
	// (https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html).
	ErrCodeFileTooLargeException = "FileTooLargeException"

	// ErrCodeFolderContentSizeLimitExceededException for service response error code
	// "FolderContentSizeLimitExceededException".
	//
	// The commit cannot be created because at least one of the overall changes
	// in the commit results in a folder whose contents exceed the limit of 6 MB.
	// Either reduce the number and size of your changes, or split the changes across
	// multiple folders.
	ErrCodeFolderContentSizeLimitExceededException = "FolderContentSizeLimitExceededException"

	// ErrCodeFolderDoesNotExistException for service response error code
	// "FolderDoesNotExistException".
	//
	// The specified folder does not exist. Either the folder name is not correct,
	// or you did not provide the full path to the folder.
	ErrCodeFolderDoesNotExistException = "FolderDoesNotExistException"

	// ErrCodeIdempotencyParameterMismatchException for service response error code
	// "IdempotencyParameterMismatchException".
	//
	// The client request token is not valid. Either the token is not in a valid
	// format, or the token has been used in a previous request and cannot be re-used.
	ErrCodeIdempotencyParameterMismatchException = "IdempotencyParameterMismatchException"

	// ErrCodeInvalidActorArnException for service response error code
	// "InvalidActorArnException".
	//
	// The Amazon Resource Name (ARN) is not valid. Make sure that you have provided
	// the full ARN for the user who initiated the change for the pull request,
	// and then try again.
	ErrCodeInvalidActorArnException = "InvalidActorArnException"

	// ErrCodeInvalidAuthorArnException for service response error code
	// "InvalidAuthorArnException".
	//
	// The Amazon Resource Name (ARN) is not valid. Make sure that you have provided
	// the full ARN for the author of the pull request, and then try again.
	ErrCodeInvalidAuthorArnException = "InvalidAuthorArnException"

	// ErrCodeInvalidBlobIdException for service response error code
	// "InvalidBlobIdException".
	//
	// The specified blob is not valid.
	ErrCodeInvalidBlobIdException = "InvalidBlobIdException"

	// ErrCodeInvalidBranchNameException for service response error code
	// "InvalidBranchNameException".
	//
	// The specified reference name is not valid.
	ErrCodeInvalidBranchNameException = "InvalidBranchNameException"

	// ErrCodeInvalidClientRequestTokenException for service response error code
	// "InvalidClientRequestTokenException".
	//
	// The client request token is not valid.
	ErrCodeInvalidClientRequestTokenException = "InvalidClientRequestTokenException"

	// ErrCodeInvalidCommentIdException for service response error code
	// "InvalidCommentIdException".
	//
	// The comment ID is not in a valid format. Make sure that you have provided
	// the full comment ID.
	ErrCodeInvalidCommentIdException = "InvalidCommentIdException"

	// ErrCodeInvalidCommitException for service response error code
	// "InvalidCommitException".
	//
	// The specified commit is not valid.
	ErrCodeInvalidCommitException = "InvalidCommitException"

	// ErrCodeInvalidCommitIdException for service response error code
	// "InvalidCommitIdException".
	//
	// The specified commit ID is not valid.
	ErrCodeInvalidCommitIdException = "InvalidCommitIdException"

	// ErrCodeInvalidConflictDetailLevelException for service response error code
	// "InvalidConflictDetailLevelException".
	//
	// The specified conflict detail level is not valid.
	ErrCodeInvalidConflictDetailLevelException = "InvalidConflictDetailLevelException"

	// ErrCodeInvalidConflictResolutionException for service response error code
	// "InvalidConflictResolutionException".
	//
	// The specified conflict resolution list is not valid.
	ErrCodeInvalidConflictResolutionException = "InvalidConflictResolutionException"

	// ErrCodeInvalidConflictResolutionStrategyException for service response error code
	// "InvalidConflictResolutionStrategyException".
	//
	// The specified conflict resolution strategy is not valid.
	ErrCodeInvalidConflictResolutionStrategyException = "InvalidConflictResolutionStrategyException"

	// ErrCodeInvalidContinuationTokenException for service response error code
	// "InvalidContinuationTokenException".
	//
	// The specified continuation token is not valid.
	ErrCodeInvalidContinuationTokenException = "InvalidContinuationTokenException"

	// ErrCodeInvalidDeletionParameterException for service response error code
	// "InvalidDeletionParameterException".
	//
	// The specified deletion parameter is not valid.
	ErrCodeInvalidDeletionParameterException = "InvalidDeletionParameterException"

	// ErrCodeInvalidDescriptionException for service response error code
	// "InvalidDescriptionException".
	//
	// The pull request description is not valid. Descriptions are limited to 1,000
	// characters in length.
	ErrCodeInvalidDescriptionException = "InvalidDescriptionException"

	// ErrCodeInvalidDestinationCommitSpecifierException for service response error code
	// "InvalidDestinationCommitSpecifierException".
	//
	// The destination commit specifier is not valid. You must provide a valid branch
	// name, tag, or full commit ID.
	ErrCodeInvalidDestinationCommitSpecifierException = "InvalidDestinationCommitSpecifierException"

	// ErrCodeInvalidEmailException for service response error code
	// "InvalidEmailException".
	//
	// The specified email address either contains one or more characters that are
	// not allowed, or it exceeds the maximum number of characters allowed for an
	// email address.
	ErrCodeInvalidEmailException = "InvalidEmailException"

	// ErrCodeInvalidFileLocationException for service response error code
	// "InvalidFileLocationException".
	//
	// The location of the file is not valid. Make sure that you include the extension
	// of the file as well as the file name.
	ErrCodeInvalidFileLocationException = "InvalidFileLocationException"

	// ErrCodeInvalidFileModeException for service response error code
	// "InvalidFileModeException".
	//
	// The specified file mode permission is not valid. For a list of valid file
	// mode permissions, see PutFile.
	ErrCodeInvalidFileModeException = "InvalidFileModeException"

	// ErrCodeInvalidFilePositionException for service response error code
	// "InvalidFilePositionException".
	//
	// The position is not valid. Make sure that the line number exists in the version
	// of the file you want to comment on.
	ErrCodeInvalidFilePositionException = "InvalidFilePositionException"

	// ErrCodeInvalidMaxConflictFilesException for service response error code
	// "InvalidMaxConflictFilesException".
	//
	// The specified value for the number of conflict files to return is not valid.
	ErrCodeInvalidMaxConflictFilesException = "InvalidMaxConflictFilesException"

	// ErrCodeInvalidMaxMergeHunksException for service response error code
	// "InvalidMaxMergeHunksException".
	//
	// The specified value for the number of merge hunks to return is not valid.
	ErrCodeInvalidMaxMergeHunksException = "InvalidMaxMergeHunksException"

	// ErrCodeInvalidMaxResultsException for service response error code
	// "InvalidMaxResultsException".
	//
	// The specified number of maximum results is not valid.
	ErrCodeInvalidMaxResultsException = "InvalidMaxResultsException"

	// ErrCodeInvalidMergeOptionException for service response error code
	// "InvalidMergeOptionException".
	//
	// The specified merge option is not valid for this operation. Not all merge
	// strategies are supported for all operations.
	ErrCodeInvalidMergeOptionException = "InvalidMergeOptionException"

	// ErrCodeInvalidOrderException for service response error code
	// "InvalidOrderException".
	//
	// The specified sort order is not valid.
	ErrCodeInvalidOrderException = "InvalidOrderException"

	// ErrCodeInvalidParentCommitIdException for service response error code
	// "InvalidParentCommitIdException".
	//
	// The parent commit ID is not valid. The commit ID cannot be empty, and must
	// match the head commit ID for the branch of the repository where you want
	// to add or update a file.
	ErrCodeInvalidParentCommitIdException = "InvalidParentCommitIdException"

	// ErrCodeInvalidPathException for service response error code
	// "InvalidPathException".
	//
	// The specified path is not valid.
	ErrCodeInvalidPathException = "InvalidPathException"

	// ErrCodeInvalidPullRequestEventTypeException for service response error code
	// "InvalidPullRequestEventTypeException".
	//
	// The pull request event type is not valid.
	ErrCodeInvalidPullRequestEventTypeException = "InvalidPullRequestEventTypeException"

	// ErrCodeInvalidPullRequestIdException for service response error code
	// "InvalidPullRequestIdException".
	//
	// The pull request ID is not valid. Make sure that you have provided the full
	// ID and that the pull request is in the specified repository, and then try
	// again.
	ErrCodeInvalidPullRequestIdException = "InvalidPullRequestIdException"

	// ErrCodeInvalidPullRequestStatusException for service response error code
	// "InvalidPullRequestStatusException".
	//
	// The pull request status is not valid. The only valid values are OPEN and
	// CLOSED.
	ErrCodeInvalidPullRequestStatusException = "InvalidPullRequestStatusException"

	// ErrCodeInvalidPullRequestStatusUpdateException for service response error code
	// "InvalidPullRequestStatusUpdateException".
	//
	// The pull request status update is not valid. The only valid update is from
	// OPEN to CLOSED.
	ErrCodeInvalidPullRequestStatusUpdateException = "InvalidPullRequestStatusUpdateException"

	// ErrCodeInvalidReferenceNameException for service response error code
	// "InvalidReferenceNameException".
	//
	// The specified reference name format is not valid. Reference names must conform
	// to the Git references format, for example refs/heads/master. For more information,
	// see Git Internals - Git References (https://git-scm.com/book/en/v2/Git-Internals-Git-References)
	// or consult your Git documentation.
	ErrCodeInvalidReferenceNameException = "InvalidReferenceNameException"

	// ErrCodeInvalidRelativeFileVersionEnumException for service response error code
	// "InvalidRelativeFileVersionEnumException".
	//
	// Either the enum is not in a valid format, or the specified file version enum
	// is not valid in respect to the current file version.
	ErrCodeInvalidRelativeFileVersionEnumException = "InvalidRelativeFileVersionEnumException"

	// ErrCodeInvalidReplacementContentException for service response error code
	// "InvalidReplacementContentException".
	//
	// Automerge was specified for resolving the conflict, but the replacement type
	// is not valid or content is missing.
	ErrCodeInvalidReplacementContentException = "InvalidReplacementContentException"

	// ErrCodeInvalidReplacementTypeException for service response error code
	// "InvalidReplacementTypeException".
	//
	// Automerge was specified for resolving the conflict, but the specified replacement
	// type is not valid.
	ErrCodeInvalidReplacementTypeException = "InvalidReplacementTypeException"

	// ErrCodeInvalidRepositoryDescriptionException for service response error code
	// "InvalidRepositoryDescriptionException".
	//
	// The specified repository description is not valid.
	ErrCodeInvalidRepositoryDescriptionException = "InvalidRepositoryDescriptionException"

	// ErrCodeInvalidRepositoryNameException for service response error code
	// "InvalidRepositoryNameException".
	//
	// At least one specified repository name is not valid.
	//
	// This exception only occurs when a specified repository name is not valid.
	// Other exceptions occur when a required repository parameter is missing, or
	// when a specified repository does not exist.
	ErrCodeInvalidRepositoryNameException = "InvalidRepositoryNameException"

	// ErrCodeInvalidRepositoryTriggerBranchNameException for service response error code
	// "InvalidRepositoryTriggerBranchNameException".
	//
	// One or more branch names specified for the trigger is not valid.
	ErrCodeInvalidRepositoryTriggerBranchNameException = "InvalidRepositoryTriggerBranchNameException"

	// ErrCodeInvalidRepositoryTriggerCustomDataException for service response error code
	// "InvalidRepositoryTriggerCustomDataException".
	//
	// The custom data provided for the trigger is not valid.
	ErrCodeInvalidRepositoryTriggerCustomDataException = "InvalidRepositoryTriggerCustomDataException"

	// ErrCodeInvalidRepositoryTriggerDestinationArnException for service response error code
	// "InvalidRepositoryTriggerDestinationArnException".
	//
	// The Amazon Resource Name (ARN) for the trigger is not valid for the specified
	// destination. The most common reason for this error is that the ARN does not
	// meet the requirements for the service type.
	ErrCodeInvalidRepositoryTriggerDestinationArnException = "InvalidRepositoryTriggerDestinationArnException"

	// ErrCodeInvalidRepositoryTriggerEventsException for service response error code
	// "InvalidRepositoryTriggerEventsException".
	//
	// One or more events specified for the trigger is not valid. Check to make
	// sure that all events specified match the requirements for allowed events.
	ErrCodeInvalidRepositoryTriggerEventsException = "InvalidRepositoryTriggerEventsException"

	// ErrCodeInvalidRepositoryTriggerNameException for service response error code
	// "InvalidRepositoryTriggerNameException".
	//
	// The name of the trigger is not valid.
	ErrCodeInvalidRepositoryTriggerNameException = "InvalidRepositoryTriggerNameException"

	// ErrCodeInvalidRepositoryTriggerRegionException for service response error code
	// "InvalidRepositoryTriggerRegionException".
	//
	// The region for the trigger target does not match the region for the repository.
	// Triggers must be created in the same region as the target for the trigger.
	ErrCodeInvalidRepositoryTriggerRegionException = "InvalidRepositoryTriggerRegionException"

	// ErrCodeInvalidResourceArnException for service response error code
	// "InvalidResourceArnException".
	//
	// The value for the resource ARN is not valid. For more information about resources
	// in AWS CodeCommit, see CodeCommit Resources and Operations (https://docs.aws.amazon.com/codecommit/latest/userguide/auth-and-access-control-iam-access-control-identity-based.html#arn-formats)
	// in the AWS CodeCommit User Guide.
	ErrCodeInvalidResourceArnException = "InvalidResourceArnException"

	// ErrCodeInvalidSortByException for service response error code
	// "InvalidSortByException".
	//
	// The specified sort by value is not valid.
	ErrCodeInvalidSortByException = "InvalidSortByException"

	// ErrCodeInvalidSourceCommitSpecifierException for service response error code
	// "InvalidSourceCommitSpecifierException".
	//
	// The source commit specifier is not valid. You must provide a valid branch
	// name, tag, or full commit ID.
	ErrCodeInvalidSourceCommitSpecifierException = "InvalidSourceCommitSpecifierException"

	// ErrCodeInvalidSystemTagUsageException for service response error code
	// "InvalidSystemTagUsageException".
	//
	// The specified tag is not valid. Key names cannot be prefixed with aws:.
	ErrCodeInvalidSystemTagUsageException = "InvalidSystemTagUsageException"

	// ErrCodeInvalidTagKeysListException for service response error code
	// "InvalidTagKeysListException".
	//
	// The list of tags is not valid.
	ErrCodeInvalidTagKeysListException = "InvalidTagKeysListException"

	// ErrCodeInvalidTagsMapException for service response error code
	// "InvalidTagsMapException".
	//
	// The map of tags is not valid.
	ErrCodeInvalidTagsMapException = "InvalidTagsMapException"

	// ErrCodeInvalidTargetBranchException for service response error code
	// "InvalidTargetBranchException".
	//
	// The specified target branch is not valid.
	ErrCodeInvalidTargetBranchException = "InvalidTargetBranchException"

	// ErrCodeInvalidTargetException for service response error code
	// "InvalidTargetException".
	//
	// The target for the pull request is not valid. A target must contain the full
	// values for the repository name, source branch, and destination branch for
	// the pull request.
	ErrCodeInvalidTargetException = "InvalidTargetException"

	// ErrCodeInvalidTargetsException for service response error code
	// "InvalidTargetsException".
	//
	// The targets for the pull request is not valid or not in a valid format. Targets
	// are a list of target objects. Each target object must contain the full values
	// for the repository name, source branch, and destination branch for a pull
	// request.
	ErrCodeInvalidTargetsException = "InvalidTargetsException"

	// ErrCodeInvalidTitleException for service response error code
	// "InvalidTitleException".
	//
	// The title of the pull request is not valid. Pull request titles cannot exceed
	// 100 characters in length.
	ErrCodeInvalidTitleException = "InvalidTitleException"

	// ErrCodeManualMergeRequiredException for service response error code
	// "ManualMergeRequiredException".
	//
	// The pull request cannot be merged automatically into the destination branch.
	// You must manually merge the branches and resolve any conflicts.
	ErrCodeManualMergeRequiredException = "ManualMergeRequiredException"

	// ErrCodeMaximumBranchesExceededException for service response error code
	// "MaximumBranchesExceededException".
	//
	// The number of branches for the trigger was exceeded.
	ErrCodeMaximumBranchesExceededException = "MaximumBranchesExceededException"

	// ErrCodeMaximumConflictResolutionEntriesExceededException for service response error code
	// "MaximumConflictResolutionEntriesExceededException".
	//
	// The number of allowed conflict resolution entries was exceeded.
	ErrCodeMaximumConflictResolutionEntriesExceededException = "MaximumConflictResolutionEntriesExceededException"

	// ErrCodeMaximumFileContentToLoadExceededException for service response error code
	// "MaximumFileContentToLoadExceededException".
	//
	// The number of files to load exceeds the allowed limit.
	ErrCodeMaximumFileContentToLoadExceededException = "MaximumFileContentToLoadExceededException"

	// ErrCodeMaximumFileEntriesExceededException for service response error code
	// "MaximumFileEntriesExceededException".
	//
	// The number of specified files to change as part of this commit exceeds the
	// maximum number of files that can be changed in a single commit. Consider
	// using a Git client for these changes.
	ErrCodeMaximumFileEntriesExceededException = "MaximumFileEntriesExceededException"

	// ErrCodeMaximumItemsToCompareExceededException for service response error code
	// "MaximumItemsToCompareExceededException".
	//
	// The maximum number of items to compare between the source or destination
	// branches and the merge base has exceeded the maximum allowed.
	ErrCodeMaximumItemsToCompareExceededException = "MaximumItemsToCompareExceededException"

	// ErrCodeMaximumOpenPullRequestsExceededException for service response error code
	// "MaximumOpenPullRequestsExceededException".
	//
	// You cannot create the pull request because the repository has too many open
	// pull requests. The maximum number of open pull requests for a repository
	// is 1,000. Close one or more open pull requests, and then try again.
	ErrCodeMaximumOpenPullRequestsExceededException = "MaximumOpenPullRequestsExceededException"

	// ErrCodeMaximumRepositoryNamesExceededException for service response error code
	// "MaximumRepositoryNamesExceededException".
	//
	// The maximum number of allowed repository names was exceeded. Currently, this
	// number is 25.
	ErrCodeMaximumRepositoryNamesExceededException = "MaximumRepositoryNamesExceededException"

	// ErrCodeMaximumRepositoryTriggersExceededException for service response error code
	// "MaximumRepositoryTriggersExceededException".
	//
	// The number of triggers allowed for the repository was exceeded.
	ErrCodeMaximumRepositoryTriggersExceededException = "MaximumRepositoryTriggersExceededException"

	// ErrCodeMergeOptionRequiredException for service response error code
	// "MergeOptionRequiredException".
	//
	// A merge option or stategy is required, and none was provided.
	ErrCodeMergeOptionRequiredException = "MergeOptionRequiredException"

	// ErrCodeMultipleConflictResolutionEntriesException for service response error code
	// "MultipleConflictResolutionEntriesException".
	//
	// More than one conflict resolution entries exists for the conflict. A conflict
	// can have only one conflict resolution entry.
	ErrCodeMultipleConflictResolutionEntriesException = "MultipleConflictResolutionEntriesException"

	// ErrCodeMultipleRepositoriesInPullRequestException for service response error code
	// "MultipleRepositoriesInPullRequestException".
	//
	// You cannot include more than one repository in a pull request. Make sure
	// you have specified only one repository name in your request, and then try
	// again.
	ErrCodeMultipleRepositoriesInPullRequestException = "MultipleRepositoriesInPullRequestException"

	// ErrCodeNameLengthExceededException for service response error code
	// "NameLengthExceededException".
	//
	// The user name is not valid because it has exceeded the character limit for
	// author names.
	ErrCodeNameLengthExceededException = "NameLengthExceededException"

	// ErrCodeNoChangeException for service response error code
	// "NoChangeException".
	//
	// The commit cannot be created because no changes will be made to the repository
	// as a result of this commit. A commit must contain at least one change.
	ErrCodeNoChangeException = "NoChangeException"

	// ErrCodeParentCommitDoesNotExistException for service response error code
	// "ParentCommitDoesNotExistException".
	//
	// The parent commit ID is not valid because it does not exist. The specified
	// parent commit ID does not exist in the specified branch of the repository.
	ErrCodeParentCommitDoesNotExistException = "ParentCommitDoesNotExistException"

	// ErrCodeParentCommitIdOutdatedException for service response error code
	// "ParentCommitIdOutdatedException".
	//
	// The file could not be added because the provided parent commit ID is not
	// the current tip of the specified branch. To view the full commit ID of the
	// current head of the branch, use GetBranch.
	ErrCodeParentCommitIdOutdatedException = "ParentCommitIdOutdatedException"

	// ErrCodeParentCommitIdRequiredException for service response error code
	// "ParentCommitIdRequiredException".
	//
	// A parent commit ID is required. To view the full commit ID of a branch in
	// a repository, use GetBranch or a Git command (for example, git pull or git
	// log).
	ErrCodeParentCommitIdRequiredException = "ParentCommitIdRequiredException"

	// ErrCodePathDoesNotExistException for service response error code
	// "PathDoesNotExistException".
	//
	// The specified path does not exist.
	ErrCodePathDoesNotExistException = "PathDoesNotExistException"

	// ErrCodePathRequiredException for service response error code
	// "PathRequiredException".
	//
	// The folderPath for a location cannot be null.
	ErrCodePathRequiredException = "PathRequiredException"

	// ErrCodePullRequestAlreadyClosedException for service response error code
	// "PullRequestAlreadyClosedException".
	//
	// The pull request status cannot be updated because it is already closed.
	ErrCodePullRequestAlreadyClosedException = "PullRequestAlreadyClosedException"

	// ErrCodePullRequestDoesNotExistException for service response error code
	// "PullRequestDoesNotExistException".
	//
	// The pull request ID could not be found. Make sure that you have specified
	// the correct repository name and pull request ID, and then try again.
	ErrCodePullRequestDoesNotExistException = "PullRequestDoesNotExistException"

	// ErrCodePullRequestIdRequiredException for service response error code
	// "PullRequestIdRequiredException".
	//
	// A pull request ID is required, but none was provided.
	ErrCodePullRequestIdRequiredException = "PullRequestIdRequiredException"

	// ErrCodePullRequestStatusRequiredException for service response error code
	// "PullRequestStatusRequiredException".
	//
	// A pull request status is required, but none was provided.
	ErrCodePullRequestStatusRequiredException = "PullRequestStatusRequiredException"

	// ErrCodePutFileEntryConflictException for service response error code
	// "PutFileEntryConflictException".
	//
	// The commit cannot be created because one or more files specified in the commit
	// reference both a file and a folder.
	ErrCodePutFileEntryConflictException = "PutFileEntryConflictException"

	// ErrCodeReferenceDoesNotExistException for service response error code
	// "ReferenceDoesNotExistException".
	//
	// The specified reference does not exist. You must provide a full commit ID.
	ErrCodeReferenceDoesNotExistException = "ReferenceDoesNotExistException"

	// ErrCodeReferenceNameRequiredException for service response error code
	// "ReferenceNameRequiredException".
	//
	// A reference name is required, but none was provided.
	ErrCodeReferenceNameRequiredException = "ReferenceNameRequiredException"

	// ErrCodeReferenceTypeNotSupportedException for service response error code
	// "ReferenceTypeNotSupportedException".
	//
	// The specified reference is not a supported type.
	ErrCodeReferenceTypeNotSupportedException = "ReferenceTypeNotSupportedException"

	// ErrCodeReplacementContentRequiredException for service response error code
	// "ReplacementContentRequiredException".
	//
	// USE_NEW_CONTENT was specified but no replacement content has been provided.
	ErrCodeReplacementContentRequiredException = "ReplacementContentRequiredException"

	// ErrCodeReplacementTypeRequiredException for service response error code
	// "ReplacementTypeRequiredException".
	//
	// A replacement type is required.
	ErrCodeReplacementTypeRequiredException = "ReplacementTypeRequiredException"

	// ErrCodeRepositoryDoesNotExistException for service response error code
	// "RepositoryDoesNotExistException".
	//
	// The specified repository does not exist.
	ErrCodeRepositoryDoesNotExistException = "RepositoryDoesNotExistException"

	// ErrCodeRepositoryLimitExceededException for service response error code
	// "RepositoryLimitExceededException".
	//
	// A repository resource limit was exceeded.
	ErrCodeRepositoryLimitExceededException = "RepositoryLimitExceededException"

	// ErrCodeRepositoryNameExistsException for service response error code
	// "RepositoryNameExistsException".
	//
	// The specified repository name already exists.
	ErrCodeRepositoryNameExistsException = "RepositoryNameExistsException"

	// ErrCodeRepositoryNameRequiredException for service response error code
	// "RepositoryNameRequiredException".
	//
	// A repository name is required but was not specified.
	ErrCodeRepositoryNameRequiredException = "RepositoryNameRequiredException"

	// ErrCodeRepositoryNamesRequiredException for service response error code
	// "RepositoryNamesRequiredException".
	//
	// A repository names object is required but was not specified.
	ErrCodeRepositoryNamesRequiredException = "RepositoryNamesRequiredException"

	// ErrCodeRepositoryNotAssociatedWithPullRequestException for service response error code
	// "RepositoryNotAssociatedWithPullRequestException".
	//
	// The repository does not contain any pull requests with that pull request
	// ID. Use GetPullRequest to verify the correct repository name for the pull
	// request ID.
	ErrCodeRepositoryNotAssociatedWithPullRequestException = "RepositoryNotAssociatedWithPullRequestException"

	// ErrCodeRepositoryTriggerBranchNameListRequiredException for service response error code
	// "RepositoryTriggerBranchNameListRequiredException".
	//
	// At least one branch name is required but was not specified in the trigger
	// configuration.
	ErrCodeRepositoryTriggerBranchNameListRequiredException = "RepositoryTriggerBranchNameListRequiredException"

	// ErrCodeRepositoryTriggerDestinationArnRequiredException for service response error code
	// "RepositoryTriggerDestinationArnRequiredException".
	//
	// A destination ARN for the target service for the trigger is required but
	// was not specified.
	ErrCodeRepositoryTriggerDestinationArnRequiredException = "RepositoryTriggerDestinationArnRequiredException"

	// ErrCodeRepositoryTriggerEventsListRequiredException for service response error code
	// "RepositoryTriggerEventsListRequiredException".
	//
	// At least one event for the trigger is required but was not specified.
	ErrCodeRepositoryTriggerEventsListRequiredException = "RepositoryTriggerEventsListRequiredException"

	// ErrCodeRepositoryTriggerNameRequiredException for service response error code
	// "RepositoryTriggerNameRequiredException".
	//
	// A name for the trigger is required but was not specified.
	ErrCodeRepositoryTriggerNameRequiredException = "RepositoryTriggerNameRequiredException"

	// ErrCodeRepositoryTriggersListRequiredException for service response error code
	// "RepositoryTriggersListRequiredException".
	//
	// The list of triggers for the repository is required but was not specified.
	ErrCodeRepositoryTriggersListRequiredException = "RepositoryTriggersListRequiredException"

	// ErrCodeRequestTokenRequiredException for service response error code
	// "RequestTokenRequiredException".
	//
	// A client request token is required. A client request token is an 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 will
	// return information about the initial request that used that token.
	ErrCodeRequestTokenRequiredException = "RequestTokenRequiredException"

	// ErrCodeResourceArnRequiredException for service response error code
	// "ResourceArnRequiredException".
	//
	// A valid Amazon Resource Name (ARN) for an AWS CodeCommit resource is required.
	// For a list of valid resources in AWS CodeCommit, see CodeCommit Resources
	// and Operations (https://docs.aws.amazon.com/codecommit/latest/userguide/auth-and-access-control-iam-access-control-identity-based.html#arn-formats)
	// in the AWS CodeCommit User Guide.
	ErrCodeResourceArnRequiredException = "ResourceArnRequiredException"

	// ErrCodeRestrictedSourceFileException for service response error code
	// "RestrictedSourceFileException".
	//
	// The commit cannot be created because one of the changes specifies copying
	// or moving a .gitkeep file.
	ErrCodeRestrictedSourceFileException = "RestrictedSourceFileException"

	// ErrCodeSameFileContentException for service response error code
	// "SameFileContentException".
	//
	// The file was not added or updated because the content of the file is exactly
	// the same as the content of that file in the repository and branch that you
	// specified.
	ErrCodeSameFileContentException = "SameFileContentException"

	// ErrCodeSamePathRequestException for service response error code
	// "SamePathRequestException".
	//
	// The commit cannot be created because one or more changes in this commit duplicate
	// actions in the same file path. For example, you cannot make the same delete
	// request to the same file in the same file path twice, or make a delete request
	// and a move request to the same file as part of the same commit.
	ErrCodeSamePathRequestException = "SamePathRequestException"

	// ErrCodeSourceAndDestinationAreSameException for service response error code
	// "SourceAndDestinationAreSameException".
	//
	// The source branch and the destination branch for the pull request are the
	// same. You must specify different branches for the source and destination.
	ErrCodeSourceAndDestinationAreSameException = "SourceAndDestinationAreSameException"

	// ErrCodeSourceFileOrContentRequiredException for service response error code
	// "SourceFileOrContentRequiredException".
	//
	// The commit cannot be created because no source files or file content have
	// been specified for the commit.
	ErrCodeSourceFileOrContentRequiredException = "SourceFileOrContentRequiredException"

	// ErrCodeTagKeysListRequiredException for service response error code
	// "TagKeysListRequiredException".
	//
	// A list of tag keys is required. The list cannot be empty or null.
	ErrCodeTagKeysListRequiredException = "TagKeysListRequiredException"

	// ErrCodeTagPolicyException for service response error code
	// "TagPolicyException".
	//
	// The tag policy is not valid.
	ErrCodeTagPolicyException = "TagPolicyException"

	// ErrCodeTagsMapRequiredException for service response error code
	// "TagsMapRequiredException".
	//
	// A map of tags is required.
	ErrCodeTagsMapRequiredException = "TagsMapRequiredException"

	// ErrCodeTargetRequiredException for service response error code
	// "TargetRequiredException".
	//
	// A pull request target is required. It cannot be empty or null. A pull request
	// target must contain the full values for the repository name, source branch,
	// and destination branch for the pull request.
	ErrCodeTargetRequiredException = "TargetRequiredException"

	// ErrCodeTargetsRequiredException for service response error code
	// "TargetsRequiredException".
	//
	// An array of target objects is required. It cannot be empty or null.
	ErrCodeTargetsRequiredException = "TargetsRequiredException"

	// ErrCodeTipOfSourceReferenceIsDifferentException for service response error code
	// "TipOfSourceReferenceIsDifferentException".
	//
	// The tip of the source branch in the destination repository does not match
	// the tip of the source branch specified in your request. The pull request
	// might have been updated. Make sure that you have the latest changes.
	ErrCodeTipOfSourceReferenceIsDifferentException = "TipOfSourceReferenceIsDifferentException"

	// ErrCodeTipsDivergenceExceededException for service response error code
	// "TipsDivergenceExceededException".
	//
	// The divergence between the tips of the provided commit specifiers is too
	// great to determine whether there might be any merge conflicts. Locally compare
	// the specifiers using git diff or a diff tool.
	ErrCodeTipsDivergenceExceededException = "TipsDivergenceExceededException"

	// ErrCodeTitleRequiredException for service response error code
	// "TitleRequiredException".
	//
	// A pull request title is required. It cannot be empty or null.
	ErrCodeTitleRequiredException = "TitleRequiredException"

	// ErrCodeTooManyTagsException for service response error code
	// "TooManyTagsException".
	//
	// The maximum number of tags for an AWS CodeCommit resource has been exceeded.
	ErrCodeTooManyTagsException = "TooManyTagsException"
)

Variables

This section is empty.

Functions

This section is empty.

Types

type BatchDescribeMergeConflictsError added in v0.10.0

type BatchDescribeMergeConflictsError struct {

	// The name of the exception.
	//
	// ExceptionName is a required field
	ExceptionName *string `locationName:"exceptionName" type:"string" required:"true"`

	// The path to the file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The message provided by the exception.
	//
	// Message is a required field
	Message *string `locationName:"message" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Information about errors in a BatchDescribeMergeConflicts operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchDescribeMergeConflictsError

func (BatchDescribeMergeConflictsError) String added in v0.10.0

String returns the string representation

type BatchDescribeMergeConflictsInput added in v0.10.0

type BatchDescribeMergeConflictsInput struct {

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The path of the target files used to describe the conflicts. If not specified,
	// the default is all conflict files.
	FilePaths []string `locationName:"filePaths" type:"list"`

	// The maximum number of files to include in the output.
	MaxConflictFiles *int64 `locationName:"maxConflictFiles" type:"integer"`

	// The maximum number of merge hunks to include in the output.
	MaxMergeHunks *int64 `locationName:"maxMergeHunks" type:"integer"`

	// The merge option or strategy you want to use to merge the code.
	//
	// MergeOption is a required field
	MergeOption MergeOptionTypeEnum `locationName:"mergeOption" type:"string" required:"true" enum:"true"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The name of the repository that contains the merge conflicts you want to
	// review.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchDescribeMergeConflictsInput

func (BatchDescribeMergeConflictsInput) String added in v0.10.0

String returns the string representation

func (*BatchDescribeMergeConflictsInput) Validate added in v0.10.0

Validate inspects the fields of the type to determine if they are valid.

type BatchDescribeMergeConflictsOutput added in v0.10.0

type BatchDescribeMergeConflictsOutput struct {

	// The commit ID of the merge base.
	BaseCommitId *string `locationName:"baseCommitId" type:"string"`

	// A list of conflicts for each file, including the conflict metadata and the
	// hunks of the differences between the files.
	//
	// Conflicts is a required field
	Conflicts []Conflict `locationName:"conflicts" type:"list" required:"true"`

	// The commit ID of the destination commit specifier that was used in the merge
	// evaluation.
	//
	// DestinationCommitId is a required field
	DestinationCommitId *string `locationName:"destinationCommitId" type:"string" required:"true"`

	// A list of any errors returned while describing the merge conflicts for each
	// file.
	Errors []BatchDescribeMergeConflictsError `locationName:"errors" type:"list"`

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The commit ID of the source commit specifier that was used in the merge evaluation.
	//
	// SourceCommitId is a required field
	SourceCommitId *string `locationName:"sourceCommitId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchDescribeMergeConflictsOutput

func (BatchDescribeMergeConflictsOutput) String added in v0.10.0

String returns the string representation

type BatchDescribeMergeConflictsRequest added in v0.10.0

type BatchDescribeMergeConflictsRequest struct {
	*aws.Request
	Input *BatchDescribeMergeConflictsInput
	Copy  func(*BatchDescribeMergeConflictsInput) BatchDescribeMergeConflictsRequest
}

BatchDescribeMergeConflictsRequest is the request type for the BatchDescribeMergeConflicts API operation.

func (BatchDescribeMergeConflictsRequest) Send added in v0.10.0

Send marshals and sends the BatchDescribeMergeConflicts API request.

type BatchDescribeMergeConflictsResponse added in v0.10.0

type BatchDescribeMergeConflictsResponse struct {
	*BatchDescribeMergeConflictsOutput
	// contains filtered or unexported fields
}

BatchDescribeMergeConflictsResponse is the response type for the BatchDescribeMergeConflicts API operation.

func (*BatchDescribeMergeConflictsResponse) SDKResponseMetdata added in v0.10.0

func (r *BatchDescribeMergeConflictsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the BatchDescribeMergeConflicts request.

type BatchGetCommitsError added in v0.11.0

type BatchGetCommitsError struct {

	// A commit ID that either could not be found or was not in a valid format.
	CommitId *string `locationName:"commitId" type:"string"`

	// An error code that specifies whether the commit ID was not valid or not found.
	ErrorCode *string `locationName:"errorCode" type:"string"`

	// An error message that provides detail about why the commit ID either was
	// not found or was not valid.
	ErrorMessage *string `locationName:"errorMessage" type:"string"`
	// contains filtered or unexported fields
}

Returns information about errors in a BatchGetCommits operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetCommitsError

func (BatchGetCommitsError) String added in v0.11.0

func (s BatchGetCommitsError) String() string

String returns the string representation

type BatchGetCommitsInput added in v0.11.0

type BatchGetCommitsInput struct {

	// The full commit IDs of the commits to get information about.
	//
	// You must supply the full SHAs of each commit. You cannot use shortened SHAs.
	//
	// CommitIds is a required field
	CommitIds []string `locationName:"commitIds" type:"list" required:"true"`

	// The name of the repository that contains the commits.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetCommitsInput

func (BatchGetCommitsInput) String added in v0.11.0

func (s BatchGetCommitsInput) String() string

String returns the string representation

func (*BatchGetCommitsInput) Validate added in v0.11.0

func (s *BatchGetCommitsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetCommitsOutput added in v0.11.0

type BatchGetCommitsOutput struct {

	// An array of commit data type objects, each of which contains information
	// about a specified commit.
	Commits []Commit `locationName:"commits" type:"list"`

	// Returns any commit IDs for which information could not be found. For example,
	// if one of the commit IDs was a shortened SHA or that commit was not found
	// in the specified repository, the ID will return an error object with additional
	// information.
	Errors []BatchGetCommitsError `locationName:"errors" type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetCommitsOutput

func (BatchGetCommitsOutput) String added in v0.11.0

func (s BatchGetCommitsOutput) String() string

String returns the string representation

type BatchGetCommitsRequest added in v0.11.0

type BatchGetCommitsRequest struct {
	*aws.Request
	Input *BatchGetCommitsInput
	Copy  func(*BatchGetCommitsInput) BatchGetCommitsRequest
}

BatchGetCommitsRequest is the request type for the BatchGetCommits API operation.

func (BatchGetCommitsRequest) Send added in v0.11.0

Send marshals and sends the BatchGetCommits API request.

type BatchGetCommitsResponse added in v0.11.0

type BatchGetCommitsResponse struct {
	*BatchGetCommitsOutput
	// contains filtered or unexported fields
}

BatchGetCommitsResponse is the response type for the BatchGetCommits API operation.

func (*BatchGetCommitsResponse) SDKResponseMetdata added in v0.11.0

func (r *BatchGetCommitsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the BatchGetCommits request.

type BatchGetRepositoriesInput

type BatchGetRepositoriesInput struct {

	// The names of the repositories to get information about.
	//
	// RepositoryNames is a required field
	RepositoryNames []string `locationName:"repositoryNames" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a batch get repositories operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetRepositoriesInput

func (BatchGetRepositoriesInput) String

func (s BatchGetRepositoriesInput) String() string

String returns the string representation

func (*BatchGetRepositoriesInput) Validate

func (s *BatchGetRepositoriesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type BatchGetRepositoriesOutput

type BatchGetRepositoriesOutput struct {

	// A list of repositories returned by the batch get repositories operation.
	Repositories []RepositoryMetadata `locationName:"repositories" type:"list"`

	// Returns a list of repository names for which information could not be found.
	RepositoriesNotFound []string `locationName:"repositoriesNotFound" type:"list"`
	// contains filtered or unexported fields
}

Represents the output of a batch get repositories operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetRepositoriesOutput

func (BatchGetRepositoriesOutput) String

String returns the string representation

type BatchGetRepositoriesRequest

type BatchGetRepositoriesRequest struct {
	*aws.Request
	Input *BatchGetRepositoriesInput
	Copy  func(*BatchGetRepositoriesInput) BatchGetRepositoriesRequest
}

BatchGetRepositoriesRequest is the request type for the BatchGetRepositories API operation.

func (BatchGetRepositoriesRequest) Send

Send marshals and sends the BatchGetRepositories API request.

type BatchGetRepositoriesResponse added in v0.9.0

type BatchGetRepositoriesResponse struct {
	*BatchGetRepositoriesOutput
	// contains filtered or unexported fields
}

BatchGetRepositoriesResponse is the response type for the BatchGetRepositories API operation.

func (*BatchGetRepositoriesResponse) SDKResponseMetdata added in v0.9.0

func (r *BatchGetRepositoriesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the BatchGetRepositories request.

type BlobMetadata

type BlobMetadata struct {

	// The full ID of the blob.
	BlobId *string `locationName:"blobId" type:"string"`

	// The file mode permissions of the blob. File mode permission codes include:
	//
	//    * 100644 indicates read/write
	//
	//    * 100755 indicates read/write/execute
	//
	//    * 160000 indicates a submodule
	//
	//    * 120000 indicates a symlink
	Mode *string `locationName:"mode" type:"string"`

	// The path to the blob and any associated file name, if any.
	Path *string `locationName:"path" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a specific Git blob object. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BlobMetadata

func (BlobMetadata) String

func (s BlobMetadata) String() string

String returns the string representation

type BranchInfo

type BranchInfo struct {

	// The name of the branch.
	BranchName *string `locationName:"branchName" min:"1" type:"string"`

	// The ID of the last commit made to the branch.
	CommitId *string `locationName:"commitId" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a branch. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BranchInfo

func (BranchInfo) String

func (s BranchInfo) String() string

String returns the string representation

type ChangeTypeEnum

type ChangeTypeEnum string
const (
	ChangeTypeEnumA ChangeTypeEnum = "A"
	ChangeTypeEnumM ChangeTypeEnum = "M"
	ChangeTypeEnumD ChangeTypeEnum = "D"
)

Enum values for ChangeTypeEnum

func (ChangeTypeEnum) MarshalValue added in v0.3.0

func (enum ChangeTypeEnum) MarshalValue() (string, error)

func (ChangeTypeEnum) MarshalValueBuf added in v0.3.0

func (enum ChangeTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type Client added in v0.9.0

type Client struct {
	*aws.Client
}

Client provides the API operation methods for making requests to CodeCommit. See this package's package overview docs for details on the service.

The client's methods are safe to use concurrently. It is not safe to modify mutate any of the struct's properties though.

func New

func New(config aws.Config) *Client

New creates a new instance of the client from the provided Config.

Example:

// Create a client from just a config.
svc := codecommit.New(myConfig)

func (*Client) BatchDescribeMergeConflictsRequest added in v0.10.0

func (c *Client) BatchDescribeMergeConflictsRequest(input *BatchDescribeMergeConflictsInput) BatchDescribeMergeConflictsRequest

BatchDescribeMergeConflictsRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about one or more merge conflicts in the attempted merge of two commit specifiers using the squash or three-way merge strategy.

// Example sending a request using BatchDescribeMergeConflictsRequest.
req := client.BatchDescribeMergeConflictsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchDescribeMergeConflicts

func (*Client) BatchGetCommitsRequest added in v0.11.0

func (c *Client) BatchGetCommitsRequest(input *BatchGetCommitsInput) BatchGetCommitsRequest

BatchGetCommitsRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about the contents of one or more commits in a repository.

// Example sending a request using BatchGetCommitsRequest.
req := client.BatchGetCommitsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetCommits

func (*Client) BatchGetRepositoriesRequest added in v0.9.0

func (c *Client) BatchGetRepositoriesRequest(input *BatchGetRepositoriesInput) BatchGetRepositoriesRequest

BatchGetRepositoriesRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about one or more repositories.

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 web page could 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 web page.

// Example sending a request using BatchGetRepositoriesRequest.
req := client.BatchGetRepositoriesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/BatchGetRepositories

func (*Client) CreateBranchRequest added in v0.9.0

func (c *Client) CreateBranchRequest(input *CreateBranchInput) CreateBranchRequest

CreateBranchRequest returns a request value for making API operation for AWS CodeCommit.

Creates a new branch in a repository and points the branch to a commit.

Calling the create branch operation does not set a repository's default branch. To do this, call the update default branch operation.

// Example sending a request using CreateBranchRequest.
req := client.CreateBranchRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateBranch

func (*Client) CreateCommitRequest added in v0.9.0

func (c *Client) CreateCommitRequest(input *CreateCommitInput) CreateCommitRequest

CreateCommitRequest returns a request value for making API operation for AWS CodeCommit.

Creates a commit for a repository on the tip of a specified branch.

// Example sending a request using CreateCommitRequest.
req := client.CreateCommitRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateCommit

func (*Client) CreatePullRequestRequest added in v0.9.0

func (c *Client) CreatePullRequestRequest(input *CreatePullRequestInput) CreatePullRequestRequest

CreatePullRequestRequest returns a request value for making API operation for AWS CodeCommit.

Creates a pull request in the specified repository.

// Example sending a request using CreatePullRequestRequest.
req := client.CreatePullRequestRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreatePullRequest

func (*Client) CreateRepositoryRequest added in v0.9.0

func (c *Client) CreateRepositoryRequest(input *CreateRepositoryInput) CreateRepositoryRequest

CreateRepositoryRequest returns a request value for making API operation for AWS CodeCommit.

Creates a new, empty repository.

// Example sending a request using CreateRepositoryRequest.
req := client.CreateRepositoryRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateRepository

func (*Client) CreateUnreferencedMergeCommitRequest added in v0.10.0

func (c *Client) CreateUnreferencedMergeCommitRequest(input *CreateUnreferencedMergeCommitInput) CreateUnreferencedMergeCommitRequest

CreateUnreferencedMergeCommitRequest returns a request value for making API operation for AWS CodeCommit.

Creates an unreferenced commit that represents the result of merging two branches using a specified merge strategy. This can help you determine the outcome of a potential merge. This API cannot be used with the fast-forward merge strategy, as that strategy does not create a merge commit.

This unreferenced merge commit can only be accessed using the GetCommit API or through git commands such as git fetch. To retrieve this commit, you must specify its commit ID or otherwise reference it.

// Example sending a request using CreateUnreferencedMergeCommitRequest.
req := client.CreateUnreferencedMergeCommitRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateUnreferencedMergeCommit

func (*Client) DeleteBranchRequest added in v0.9.0

func (c *Client) DeleteBranchRequest(input *DeleteBranchInput) DeleteBranchRequest

DeleteBranchRequest returns a request value for making API operation for AWS CodeCommit.

Deletes a branch from a repository, unless that branch is the default branch for the repository.

// Example sending a request using DeleteBranchRequest.
req := client.DeleteBranchRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteBranch

func (*Client) DeleteCommentContentRequest added in v0.9.0

func (c *Client) DeleteCommentContentRequest(input *DeleteCommentContentInput) DeleteCommentContentRequest

DeleteCommentContentRequest returns a request value for making API operation for AWS CodeCommit.

Deletes the content of a comment made on a change, file, or commit in a repository.

// Example sending a request using DeleteCommentContentRequest.
req := client.DeleteCommentContentRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteCommentContent

func (*Client) DeleteFileRequest added in v0.9.0

func (c *Client) DeleteFileRequest(input *DeleteFileInput) DeleteFileRequest

DeleteFileRequest returns a request value for making API operation for AWS CodeCommit.

Deletes a specified file from a specified branch. A commit is created on the branch that contains the revision. The file will still exist in the commits prior to the commit that contains the deletion.

// Example sending a request using DeleteFileRequest.
req := client.DeleteFileRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteFile

func (*Client) DeleteRepositoryRequest added in v0.9.0

func (c *Client) DeleteRepositoryRequest(input *DeleteRepositoryInput) DeleteRepositoryRequest

DeleteRepositoryRequest returns a request value for making API operation for AWS CodeCommit.

Deletes a repository. If a specified repository was already deleted, a null repository ID will be returned.

Deleting a repository also deletes all associated objects and metadata. After a repository is deleted, all future push calls to the deleted repository will fail.

// Example sending a request using DeleteRepositoryRequest.
req := client.DeleteRepositoryRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteRepository

func (*Client) DescribeMergeConflictsRequest added in v0.10.0

func (c *Client) DescribeMergeConflictsRequest(input *DescribeMergeConflictsInput) DescribeMergeConflictsRequest

DescribeMergeConflictsRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about one or more merge conflicts in the attempted merge of two commit specifiers using the squash or three-way merge strategy. If the merge option for the attempted merge is specified as FAST_FORWARD_MERGE, an exception will be thrown.

// Example sending a request using DescribeMergeConflictsRequest.
req := client.DescribeMergeConflictsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DescribeMergeConflicts

func (*Client) DescribePullRequestEventsRequest added in v0.9.0

func (c *Client) DescribePullRequestEventsRequest(input *DescribePullRequestEventsInput) DescribePullRequestEventsRequest

DescribePullRequestEventsRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about one or more pull request events.

// Example sending a request using DescribePullRequestEventsRequest.
req := client.DescribePullRequestEventsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DescribePullRequestEvents

func (*Client) GetBlobRequest added in v0.9.0

func (c *Client) GetBlobRequest(input *GetBlobInput) GetBlobRequest

GetBlobRequest returns a request value for making API operation for AWS CodeCommit.

Returns the base-64 encoded content of an individual blob within a repository.

// Example sending a request using GetBlobRequest.
req := client.GetBlobRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBlob

func (*Client) GetBranchRequest added in v0.9.0

func (c *Client) GetBranchRequest(input *GetBranchInput) GetBranchRequest

GetBranchRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about a repository branch, including its name and the last commit ID.

// Example sending a request using GetBranchRequest.
req := client.GetBranchRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBranch

func (*Client) GetCommentRequest added in v0.9.0

func (c *Client) GetCommentRequest(input *GetCommentInput) GetCommentRequest

GetCommentRequest returns a request value for making API operation for AWS CodeCommit.

Returns the content of a comment made on a change, file, or commit in a repository.

// Example sending a request using GetCommentRequest.
req := client.GetCommentRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetComment

func (*Client) GetCommentsForComparedCommitRequest added in v0.9.0

func (c *Client) GetCommentsForComparedCommitRequest(input *GetCommentsForComparedCommitInput) GetCommentsForComparedCommitRequest

GetCommentsForComparedCommitRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about comments made on the comparison between two commits.

// Example sending a request using GetCommentsForComparedCommitRequest.
req := client.GetCommentsForComparedCommitRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentsForComparedCommit

func (*Client) GetCommentsForPullRequestRequest added in v0.9.0

func (c *Client) GetCommentsForPullRequestRequest(input *GetCommentsForPullRequestInput) GetCommentsForPullRequestRequest

GetCommentsForPullRequestRequest returns a request value for making API operation for AWS CodeCommit.

Returns comments made on a pull request.

// Example sending a request using GetCommentsForPullRequestRequest.
req := client.GetCommentsForPullRequestRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentsForPullRequest

func (*Client) GetCommitRequest added in v0.9.0

func (c *Client) GetCommitRequest(input *GetCommitInput) GetCommitRequest

GetCommitRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about a commit, including commit message and committer information.

// Example sending a request using GetCommitRequest.
req := client.GetCommitRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommit

func (*Client) GetDifferencesRequest added in v0.9.0

func (c *Client) GetDifferencesRequest(input *GetDifferencesInput) GetDifferencesRequest

GetDifferencesRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about the differences in a valid commit specifier (such as a branch, tag, HEAD, commit ID or other fully qualified reference). Results can be limited to a specified path.

// Example sending a request using GetDifferencesRequest.
req := client.GetDifferencesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetDifferences

func (*Client) GetFileRequest added in v0.9.0

func (c *Client) GetFileRequest(input *GetFileInput) GetFileRequest

GetFileRequest returns a request value for making API operation for AWS CodeCommit.

Returns the base-64 encoded contents of a specified file and its metadata.

// Example sending a request using GetFileRequest.
req := client.GetFileRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetFile

func (*Client) GetFolderRequest added in v0.9.0

func (c *Client) GetFolderRequest(input *GetFolderInput) GetFolderRequest

GetFolderRequest returns a request value for making API operation for AWS CodeCommit.

Returns the contents of a specified folder in a repository.

// Example sending a request using GetFolderRequest.
req := client.GetFolderRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetFolder

func (*Client) GetMergeCommitRequest added in v0.10.0

func (c *Client) GetMergeCommitRequest(input *GetMergeCommitInput) GetMergeCommitRequest

GetMergeCommitRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about a specified merge commit.

// Example sending a request using GetMergeCommitRequest.
req := client.GetMergeCommitRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeCommit

func (*Client) GetMergeConflictsRequest added in v0.9.0

func (c *Client) GetMergeConflictsRequest(input *GetMergeConflictsInput) GetMergeConflictsRequest

GetMergeConflictsRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about merge conflicts between the before and after commit IDs for a pull request in a repository.

// Example sending a request using GetMergeConflictsRequest.
req := client.GetMergeConflictsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeConflicts

func (*Client) GetMergeOptionsRequest added in v0.10.0

func (c *Client) GetMergeOptionsRequest(input *GetMergeOptionsInput) GetMergeOptionsRequest

GetMergeOptionsRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about the merge options available for merging two specified branches. For details about why a particular merge option is not available, use GetMergeConflicts or DescribeMergeConflicts.

// Example sending a request using GetMergeOptionsRequest.
req := client.GetMergeOptionsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeOptions

func (*Client) GetPullRequestRequest added in v0.9.0

func (c *Client) GetPullRequestRequest(input *GetPullRequestInput) GetPullRequestRequest

GetPullRequestRequest returns a request value for making API operation for AWS CodeCommit.

Gets information about a pull request in a specified repository.

// Example sending a request using GetPullRequestRequest.
req := client.GetPullRequestRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetPullRequest

func (*Client) GetRepositoryRequest added in v0.9.0

func (c *Client) GetRepositoryRequest(input *GetRepositoryInput) GetRepositoryRequest

GetRepositoryRequest returns a request value for making API operation for AWS CodeCommit.

Returns information about a repository.

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 web page could 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 web page.

// Example sending a request using GetRepositoryRequest.
req := client.GetRepositoryRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepository

func (*Client) GetRepositoryTriggersRequest added in v0.9.0

func (c *Client) GetRepositoryTriggersRequest(input *GetRepositoryTriggersInput) GetRepositoryTriggersRequest

GetRepositoryTriggersRequest returns a request value for making API operation for AWS CodeCommit.

Gets information about triggers configured for a repository.

// Example sending a request using GetRepositoryTriggersRequest.
req := client.GetRepositoryTriggersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryTriggers

func (*Client) ListBranchesRequest added in v0.9.0

func (c *Client) ListBranchesRequest(input *ListBranchesInput) ListBranchesRequest

ListBranchesRequest returns a request value for making API operation for AWS CodeCommit.

Gets information about one or more branches in a repository.

// Example sending a request using ListBranchesRequest.
req := client.ListBranchesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListBranches

func (*Client) ListPullRequestsRequest added in v0.9.0

func (c *Client) ListPullRequestsRequest(input *ListPullRequestsInput) ListPullRequestsRequest

ListPullRequestsRequest returns a request value for making API operation for AWS CodeCommit.

Returns a list of pull requests for a specified repository. The return list can be refined by pull request status or pull request author ARN.

// Example sending a request using ListPullRequestsRequest.
req := client.ListPullRequestsRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListPullRequests

func (*Client) ListRepositoriesRequest added in v0.9.0

func (c *Client) ListRepositoriesRequest(input *ListRepositoriesInput) ListRepositoriesRequest

ListRepositoriesRequest returns a request value for making API operation for AWS CodeCommit.

Gets information about one or more repositories.

// Example sending a request using ListRepositoriesRequest.
req := client.ListRepositoriesRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListRepositories

func (*Client) ListTagsForResourceRequest added in v0.10.0

func (c *Client) ListTagsForResourceRequest(input *ListTagsForResourceInput) ListTagsForResourceRequest

ListTagsForResourceRequest returns a request value for making API operation for AWS CodeCommit.

Gets information about AWS tags for a specified Amazon Resource Name (ARN) in AWS CodeCommit. For a list of valid resources in AWS CodeCommit, see CodeCommit Resources and Operations (https://docs.aws.amazon.com/codecommit/latest/userguide/auth-and-access-control-iam-access-control-identity-based.html#arn-formats) in the AWS CodeCommit User Guide.

// Example sending a request using ListTagsForResourceRequest.
req := client.ListTagsForResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListTagsForResource

func (*Client) MergeBranchesByFastForwardRequest added in v0.10.0

func (c *Client) MergeBranchesByFastForwardRequest(input *MergeBranchesByFastForwardInput) MergeBranchesByFastForwardRequest

MergeBranchesByFastForwardRequest returns a request value for making API operation for AWS CodeCommit.

Merges two branches using the fast-forward merge strategy.

// Example sending a request using MergeBranchesByFastForwardRequest.
req := client.MergeBranchesByFastForwardRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesByFastForward

func (*Client) MergeBranchesBySquashRequest added in v0.10.0

func (c *Client) MergeBranchesBySquashRequest(input *MergeBranchesBySquashInput) MergeBranchesBySquashRequest

MergeBranchesBySquashRequest returns a request value for making API operation for AWS CodeCommit.

Merges two branches using the squash merge strategy.

// Example sending a request using MergeBranchesBySquashRequest.
req := client.MergeBranchesBySquashRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesBySquash

func (*Client) MergeBranchesByThreeWayRequest added in v0.10.0

func (c *Client) MergeBranchesByThreeWayRequest(input *MergeBranchesByThreeWayInput) MergeBranchesByThreeWayRequest

MergeBranchesByThreeWayRequest returns a request value for making API operation for AWS CodeCommit.

Merges two specified branches using the three-way merge strategy.

// Example sending a request using MergeBranchesByThreeWayRequest.
req := client.MergeBranchesByThreeWayRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesByThreeWay

func (*Client) MergePullRequestByFastForwardRequest added in v0.9.0

func (c *Client) MergePullRequestByFastForwardRequest(input *MergePullRequestByFastForwardInput) MergePullRequestByFastForwardRequest

MergePullRequestByFastForwardRequest returns a request value for making API operation for AWS CodeCommit.

Attempts to merge the source commit of a pull request into the specified destination branch for that pull request at the specified commit using the fast-forward merge strategy. If the merge is successful, it closes the pull request.

// Example sending a request using MergePullRequestByFastForwardRequest.
req := client.MergePullRequestByFastForwardRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestByFastForward

func (*Client) MergePullRequestBySquashRequest added in v0.10.0

func (c *Client) MergePullRequestBySquashRequest(input *MergePullRequestBySquashInput) MergePullRequestBySquashRequest

MergePullRequestBySquashRequest returns a request value for making API operation for AWS CodeCommit.

Attempts to merge the source commit of a pull request into the specified destination branch for that pull request at the specified commit using the squash merge strategy. If the merge is successful, it closes the pull request.

// Example sending a request using MergePullRequestBySquashRequest.
req := client.MergePullRequestBySquashRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestBySquash

func (*Client) MergePullRequestByThreeWayRequest added in v0.10.0

func (c *Client) MergePullRequestByThreeWayRequest(input *MergePullRequestByThreeWayInput) MergePullRequestByThreeWayRequest

MergePullRequestByThreeWayRequest returns a request value for making API operation for AWS CodeCommit.

Attempts to merge the source commit of a pull request into the specified destination branch for that pull request at the specified commit using the three-way merge strategy. If the merge is successful, it closes the pull request.

// Example sending a request using MergePullRequestByThreeWayRequest.
req := client.MergePullRequestByThreeWayRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestByThreeWay

func (*Client) PostCommentForComparedCommitRequest added in v0.9.0

func (c *Client) PostCommentForComparedCommitRequest(input *PostCommentForComparedCommitInput) PostCommentForComparedCommitRequest

PostCommentForComparedCommitRequest returns a request value for making API operation for AWS CodeCommit.

Posts a comment on the comparison between two commits.

// Example sending a request using PostCommentForComparedCommitRequest.
req := client.PostCommentForComparedCommitRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentForComparedCommit

func (*Client) PostCommentForPullRequestRequest added in v0.9.0

func (c *Client) PostCommentForPullRequestRequest(input *PostCommentForPullRequestInput) PostCommentForPullRequestRequest

PostCommentForPullRequestRequest returns a request value for making API operation for AWS CodeCommit.

Posts a comment on a pull request.

// Example sending a request using PostCommentForPullRequestRequest.
req := client.PostCommentForPullRequestRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentForPullRequest

func (*Client) PostCommentReplyRequest added in v0.9.0

func (c *Client) PostCommentReplyRequest(input *PostCommentReplyInput) PostCommentReplyRequest

PostCommentReplyRequest returns a request value for making API operation for AWS CodeCommit.

Posts a comment in reply to an existing comment on a comparison between commits or a pull request.

// Example sending a request using PostCommentReplyRequest.
req := client.PostCommentReplyRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentReply

func (*Client) PutFileRequest added in v0.9.0

func (c *Client) PutFileRequest(input *PutFileInput) PutFileRequest

PutFileRequest returns a request value for making API operation for AWS CodeCommit.

Adds or updates a file in a branch in an AWS CodeCommit repository, and generates a commit for the addition in the specified branch.

// Example sending a request using PutFileRequest.
req := client.PutFileRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutFile

func (*Client) PutRepositoryTriggersRequest added in v0.9.0

func (c *Client) PutRepositoryTriggersRequest(input *PutRepositoryTriggersInput) PutRepositoryTriggersRequest

PutRepositoryTriggersRequest returns a request value for making API operation for AWS CodeCommit.

Replaces all triggers for a repository. This can be used to create or delete triggers.

// Example sending a request using PutRepositoryTriggersRequest.
req := client.PutRepositoryTriggersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutRepositoryTriggers

func (*Client) TagResourceRequest added in v0.10.0

func (c *Client) TagResourceRequest(input *TagResourceInput) TagResourceRequest

TagResourceRequest returns a request value for making API operation for AWS CodeCommit.

Adds or updates tags for a resource in AWS CodeCommit. For a list of valid resources in AWS CodeCommit, see CodeCommit Resources and Operations (https://docs.aws.amazon.com/codecommit/latest/userguide/auth-and-access-control-iam-access-control-identity-based.html#arn-formats) in the AWS CodeCommit User Guide.

// Example sending a request using TagResourceRequest.
req := client.TagResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TagResource

func (*Client) TestRepositoryTriggersRequest added in v0.9.0

func (c *Client) TestRepositoryTriggersRequest(input *TestRepositoryTriggersInput) TestRepositoryTriggersRequest

TestRepositoryTriggersRequest returns a request value for making API operation for AWS CodeCommit.

Tests the functionality of repository triggers by sending information to the trigger target. If real data is available in the repository, the test will send data from the last commit. If no data is available, sample data will be generated.

// Example sending a request using TestRepositoryTriggersRequest.
req := client.TestRepositoryTriggersRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TestRepositoryTriggers

func (*Client) UntagResourceRequest added in v0.10.0

func (c *Client) UntagResourceRequest(input *UntagResourceInput) UntagResourceRequest

UntagResourceRequest returns a request value for making API operation for AWS CodeCommit.

Removes tags for a resource in AWS CodeCommit. For a list of valid resources in AWS CodeCommit, see CodeCommit Resources and Operations (https://docs.aws.amazon.com/codecommit/latest/userguide/auth-and-access-control-iam-access-control-identity-based.html#arn-formats) in the AWS CodeCommit User Guide.

// Example sending a request using UntagResourceRequest.
req := client.UntagResourceRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UntagResource

func (*Client) UpdateCommentRequest added in v0.9.0

func (c *Client) UpdateCommentRequest(input *UpdateCommentInput) UpdateCommentRequest

UpdateCommentRequest returns a request value for making API operation for AWS CodeCommit.

Replaces the contents of a comment.

// Example sending a request using UpdateCommentRequest.
req := client.UpdateCommentRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateComment

func (*Client) UpdateDefaultBranchRequest added in v0.9.0

func (c *Client) UpdateDefaultBranchRequest(input *UpdateDefaultBranchInput) UpdateDefaultBranchRequest

UpdateDefaultBranchRequest returns a request value for making API operation for AWS CodeCommit.

Sets or changes the default branch name for the specified repository.

If you use this operation to change the default branch name to the current default branch name, a success message is returned even though the default branch did not change.

// Example sending a request using UpdateDefaultBranchRequest.
req := client.UpdateDefaultBranchRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateDefaultBranch

func (*Client) UpdatePullRequestDescriptionRequest added in v0.9.0

func (c *Client) UpdatePullRequestDescriptionRequest(input *UpdatePullRequestDescriptionInput) UpdatePullRequestDescriptionRequest

UpdatePullRequestDescriptionRequest returns a request value for making API operation for AWS CodeCommit.

Replaces the contents of the description of a pull request.

// Example sending a request using UpdatePullRequestDescriptionRequest.
req := client.UpdatePullRequestDescriptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestDescription

func (*Client) UpdatePullRequestStatusRequest added in v0.9.0

func (c *Client) UpdatePullRequestStatusRequest(input *UpdatePullRequestStatusInput) UpdatePullRequestStatusRequest

UpdatePullRequestStatusRequest returns a request value for making API operation for AWS CodeCommit.

Updates the status of a pull request.

// Example sending a request using UpdatePullRequestStatusRequest.
req := client.UpdatePullRequestStatusRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestStatus

func (*Client) UpdatePullRequestTitleRequest added in v0.9.0

func (c *Client) UpdatePullRequestTitleRequest(input *UpdatePullRequestTitleInput) UpdatePullRequestTitleRequest

UpdatePullRequestTitleRequest returns a request value for making API operation for AWS CodeCommit.

Replaces the title of a pull request.

// Example sending a request using UpdatePullRequestTitleRequest.
req := client.UpdatePullRequestTitleRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestTitle

func (*Client) UpdateRepositoryDescriptionRequest added in v0.9.0

func (c *Client) UpdateRepositoryDescriptionRequest(input *UpdateRepositoryDescriptionInput) UpdateRepositoryDescriptionRequest

UpdateRepositoryDescriptionRequest returns a request value for making API operation for AWS CodeCommit.

Sets or changes the comment or description for a repository.

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 web page could 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 web page.

// Example sending a request using UpdateRepositoryDescriptionRequest.
req := client.UpdateRepositoryDescriptionRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryDescription

func (*Client) UpdateRepositoryNameRequest added in v0.9.0

func (c *Client) UpdateRepositoryNameRequest(input *UpdateRepositoryNameInput) UpdateRepositoryNameRequest

UpdateRepositoryNameRequest returns a request value for making API operation for AWS CodeCommit.

Renames a repository. The repository name must be unique across the calling AWS account. In addition, repository names are limited to 100 alphanumeric, dash, and underscore characters, and cannot include certain characters. The suffix ".git" is prohibited. For a full description of the limits on repository names, see Limits (https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html) in the AWS CodeCommit User Guide.

// Example sending a request using UpdateRepositoryNameRequest.
req := client.UpdateRepositoryNameRequest(params)
resp, err := req.Send(context.TODO())
if err == nil {
    fmt.Println(resp)
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryName

type Comment added in v0.2.0

type Comment struct {

	// The Amazon Resource Name (ARN) of the person who posted the comment.
	AuthorArn *string `locationName:"authorArn" type:"string"`

	// 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
	// will return information about the initial request that used that token.
	ClientRequestToken *string `locationName:"clientRequestToken" type:"string"`

	// The system-generated comment ID.
	CommentId *string `locationName:"commentId" type:"string"`

	// The content of the comment.
	Content *string `locationName:"content" type:"string"`

	// The date and time the comment was created, in timestamp format.
	CreationDate *time.Time `locationName:"creationDate" type:"timestamp"`

	// A Boolean value indicating whether the comment has been deleted.
	Deleted *bool `locationName:"deleted" type:"boolean"`

	// The ID of the comment for which this comment is a reply, if any.
	InReplyTo *string `locationName:"inReplyTo" type:"string"`

	// The date and time the comment was most recently modified, in timestamp format.
	LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp"`
	// contains filtered or unexported fields
}

Returns information about a specific comment. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Comment

func (Comment) String added in v0.2.0

func (s Comment) String() string

String returns the string representation

type CommentsForComparedCommit added in v0.2.0

type CommentsForComparedCommit struct {

	// The full blob ID of the commit used to establish the 'after' of the comparison.
	AfterBlobId *string `locationName:"afterBlobId" type:"string"`

	// The full commit ID of the commit used to establish the 'after' of the comparison.
	AfterCommitId *string `locationName:"afterCommitId" type:"string"`

	// The full blob ID of the commit used to establish the 'before' of the comparison.
	BeforeBlobId *string `locationName:"beforeBlobId" type:"string"`

	// The full commit ID of the commit used to establish the 'before' of the comparison.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// An array of comment objects. Each comment object contains information about
	// a comment on the comparison between commits.
	Comments []Comment `locationName:"comments" type:"list"`

	// Location information about the comment on the comparison, including the file
	// name, line number, and whether the version of the file where the comment
	// was made is 'BEFORE' or 'AFTER'.
	Location *Location `locationName:"location" type:"structure"`

	// The name of the repository that contains the compared commits.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Returns information about comments on the comparison between two commits. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CommentsForComparedCommit

func (CommentsForComparedCommit) String added in v0.2.0

func (s CommentsForComparedCommit) String() string

String returns the string representation

type CommentsForPullRequest added in v0.2.0

type CommentsForPullRequest struct {

	// The full blob ID of the file on which you want to comment on the source commit.
	AfterBlobId *string `locationName:"afterBlobId" type:"string"`

	// he full commit ID of the commit that was the tip of the source branch at
	// the time the comment was made.
	AfterCommitId *string `locationName:"afterCommitId" type:"string"`

	// The full blob ID of the file on which you want to comment on the destination
	// commit.
	BeforeBlobId *string `locationName:"beforeBlobId" type:"string"`

	// The full commit ID of the commit that was the tip of the destination branch
	// when the pull request was created. This commit will be superceded by the
	// after commit in the source branch when and if you merge the source branch
	// into the destination branch.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// An array of comment objects. Each comment object contains information about
	// a comment on the pull request.
	Comments []Comment `locationName:"comments" type:"list"`

	// Location information about the comment on the pull request, including the
	// file name, line number, and whether the version of the file where the comment
	// was made is 'BEFORE' (destination branch) or 'AFTER' (source branch).
	Location *Location `locationName:"location" type:"structure"`

	// The system-generated ID of the pull request.
	PullRequestId *string `locationName:"pullRequestId" type:"string"`

	// The name of the repository that contains the pull request.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Returns information about comments on a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CommentsForPullRequest

func (CommentsForPullRequest) String added in v0.2.0

func (s CommentsForPullRequest) String() string

String returns the string representation

type Commit

type Commit struct {

	// Any additional data associated with the specified commit.
	AdditionalData *string `locationName:"additionalData" type:"string"`

	// Information about the author of the specified commit. Information includes
	// the date in timestamp format with GMT offset, the name of the author, and
	// the email address for the author, as configured in Git.
	Author *UserInfo `locationName:"author" type:"structure"`

	// The full SHA of the specified commit.
	CommitId *string `locationName:"commitId" type:"string"`

	// Information about the person who committed the specified commit, also known
	// as the committer. Information includes the date in timestamp format with
	// GMT offset, the name of the committer, and the email address for the committer,
	// as configured in Git.
	//
	// For more information about the difference between an author and a committer
	// in Git, see Viewing the Commit History (http://git-scm.com/book/ch2-3.html)
	// in Pro Git by Scott Chacon and Ben Straub.
	Committer *UserInfo `locationName:"committer" type:"structure"`

	// The commit message associated with the specified commit.
	Message *string `locationName:"message" type:"string"`

	// A list of parent commits for the specified commit. Each parent commit ID
	// is the full commit ID.
	Parents []string `locationName:"parents" type:"list"`

	// Tree information for the specified commit.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a specific commit. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Commit

func (Commit) String

func (s Commit) String() string

String returns the string representation

type Conflict added in v0.10.0

type Conflict struct {

	// Metadata about a conflict in a merge operation.
	ConflictMetadata *ConflictMetadata `locationName:"conflictMetadata" type:"structure"`

	// A list of hunks that contain the differences between files or lines causing
	// the conflict.
	MergeHunks []MergeHunk `locationName:"mergeHunks" type:"list"`
	// contains filtered or unexported fields
}

Information about conflicts in a merge operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Conflict

func (Conflict) String added in v0.10.0

func (s Conflict) String() string

String returns the string representation

type ConflictDetailLevelTypeEnum added in v0.10.0

type ConflictDetailLevelTypeEnum string
const (
	ConflictDetailLevelTypeEnumFileLevel ConflictDetailLevelTypeEnum = "FILE_LEVEL"
	ConflictDetailLevelTypeEnumLineLevel ConflictDetailLevelTypeEnum = "LINE_LEVEL"
)

Enum values for ConflictDetailLevelTypeEnum

func (ConflictDetailLevelTypeEnum) MarshalValue added in v0.10.0

func (enum ConflictDetailLevelTypeEnum) MarshalValue() (string, error)

func (ConflictDetailLevelTypeEnum) MarshalValueBuf added in v0.10.0

func (enum ConflictDetailLevelTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type ConflictMetadata added in v0.10.0

type ConflictMetadata struct {

	// A boolean value indicating whether there are conflicts in the content of
	// a file.
	ContentConflict *bool `locationName:"contentConflict" type:"boolean"`

	// A boolean value indicating whether there are conflicts in the file mode of
	// a file.
	FileModeConflict *bool `locationName:"fileModeConflict" type:"boolean"`

	// The file modes of the file in the source, destination, and base of the merge.
	FileModes *FileModes `locationName:"fileModes" type:"structure"`

	// The path of the file that contains conflicts.
	FilePath *string `locationName:"filePath" type:"string"`

	// The file sizes of the file in the source, destination, and base of the merge.
	FileSizes *FileSizes `locationName:"fileSizes" type:"structure"`

	// A boolean value (true or false) indicating whether the file is binary or
	// textual in the source, destination, and base of the merge.
	IsBinaryFile *IsBinaryFile `locationName:"isBinaryFile" type:"structure"`

	// Whether an add, modify, or delete operation caused the conflict between the
	// source and destination of the merge.
	MergeOperations *MergeOperations `locationName:"mergeOperations" type:"structure"`

	// The number of conflicts, including both hunk conflicts and metadata conflicts.
	NumberOfConflicts *int64 `locationName:"numberOfConflicts" type:"integer"`

	// A boolean value (true or false) indicating whether there are conflicts between
	// the branches in the object type of a file, folder, or submodule.
	ObjectTypeConflict *bool `locationName:"objectTypeConflict" type:"boolean"`

	// Information about any object type conflicts in a merge operation.
	ObjectTypes *ObjectTypes `locationName:"objectTypes" type:"structure"`
	// contains filtered or unexported fields
}

Information about the metadata for a conflict in a merge operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ConflictMetadata

func (ConflictMetadata) String added in v0.10.0

func (s ConflictMetadata) String() string

String returns the string representation

type ConflictResolution added in v0.10.0

type ConflictResolution struct {

	// Files that will be deleted as part of the merge conflict resolution.
	DeleteFiles []DeleteFileEntry `locationName:"deleteFiles" type:"list"`

	// Files that will have content replaced as part of the merge conflict resolution.
	ReplaceContents []ReplaceContentEntry `locationName:"replaceContents" type:"list"`

	// File modes that will be set as part of the merge conflict resolution.
	SetFileModes []SetFileModeEntry `locationName:"setFileModes" type:"list"`
	// contains filtered or unexported fields
}

A list of inputs to use when resolving conflicts during a merge if AUTOMERGE is chosen as the conflict resolution strategy. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ConflictResolution

func (ConflictResolution) String added in v0.10.0

func (s ConflictResolution) String() string

String returns the string representation

func (*ConflictResolution) Validate added in v0.10.0

func (s *ConflictResolution) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ConflictResolutionStrategyTypeEnum added in v0.10.0

type ConflictResolutionStrategyTypeEnum string
const (
	ConflictResolutionStrategyTypeEnumNone              ConflictResolutionStrategyTypeEnum = "NONE"
	ConflictResolutionStrategyTypeEnumAcceptSource      ConflictResolutionStrategyTypeEnum = "ACCEPT_SOURCE"
	ConflictResolutionStrategyTypeEnumAcceptDestination ConflictResolutionStrategyTypeEnum = "ACCEPT_DESTINATION"
	ConflictResolutionStrategyTypeEnumAutomerge         ConflictResolutionStrategyTypeEnum = "AUTOMERGE"
)

Enum values for ConflictResolutionStrategyTypeEnum

func (ConflictResolutionStrategyTypeEnum) MarshalValue added in v0.10.0

func (enum ConflictResolutionStrategyTypeEnum) MarshalValue() (string, error)

func (ConflictResolutionStrategyTypeEnum) MarshalValueBuf added in v0.10.0

func (enum ConflictResolutionStrategyTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type CreateBranchInput

type CreateBranchInput struct {

	// The name of the new branch to create.
	//
	// BranchName is a required field
	BranchName *string `locationName:"branchName" min:"1" type:"string" required:"true"`

	// The ID of the commit to point the new branch to.
	//
	// CommitId is a required field
	CommitId *string `locationName:"commitId" type:"string" required:"true"`

	// The name of the repository in which you want to create the new branch.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a create branch operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateBranchInput

func (CreateBranchInput) String

func (s CreateBranchInput) String() string

String returns the string representation

func (*CreateBranchInput) Validate

func (s *CreateBranchInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateBranchOutput

type CreateBranchOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateBranchOutput

func (CreateBranchOutput) String

func (s CreateBranchOutput) String() string

String returns the string representation

type CreateBranchRequest

type CreateBranchRequest struct {
	*aws.Request
	Input *CreateBranchInput
	Copy  func(*CreateBranchInput) CreateBranchRequest
}

CreateBranchRequest is the request type for the CreateBranch API operation.

func (CreateBranchRequest) Send

Send marshals and sends the CreateBranch API request.

type CreateBranchResponse added in v0.9.0

type CreateBranchResponse struct {
	*CreateBranchOutput
	// contains filtered or unexported fields
}

CreateBranchResponse is the response type for the CreateBranch API operation.

func (*CreateBranchResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateBranchResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateBranch request.

type CreateCommitInput added in v0.8.0

type CreateCommitInput struct {

	// The name of the author who created the commit. This information will be used
	// as both the author and committer for the commit.
	AuthorName *string `locationName:"authorName" type:"string"`

	// The name of the branch where you will create the commit.
	//
	// BranchName is a required field
	BranchName *string `locationName:"branchName" min:"1" type:"string" required:"true"`

	// The commit message you want to include as part of creating the commit. Commit
	// messages are limited to 256 KB. If no message is specified, a default message
	// will be used.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The files to delete in this commit. These files will still exist in prior
	// commits.
	DeleteFiles []DeleteFileEntry `locationName:"deleteFiles" type:"list"`

	// The email address of the person who created the commit.
	Email *string `locationName:"email" type:"string"`

	// If the commit contains deletions, whether to keep a folder or folder structure
	// if the changes leave the folders empty. If this is specified as true, a .gitkeep
	// file will be created for empty folders. The default is false.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The ID of the commit that is the parent of the commit you will create. If
	// this is an empty repository, this is not required.
	ParentCommitId *string `locationName:"parentCommitId" type:"string"`

	// The files to add or update in this commit.
	PutFiles []PutFileEntry `locationName:"putFiles" type:"list"`

	// The name of the repository where you will create the commit.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The file modes to update for files in this commit.
	SetFileModes []SetFileModeEntry `locationName:"setFileModes" type:"list"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateCommitInput

func (CreateCommitInput) String added in v0.8.0

func (s CreateCommitInput) String() string

String returns the string representation

func (*CreateCommitInput) Validate added in v0.8.0

func (s *CreateCommitInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateCommitOutput added in v0.8.0

type CreateCommitOutput struct {

	// The full commit ID of the commit that contains your committed file changes.
	CommitId *string `locationName:"commitId" type:"string"`

	// The files added as part of the committed file changes.
	FilesAdded []FileMetadata `locationName:"filesAdded" type:"list"`

	// The files deleted as part of the committed file changes.
	FilesDeleted []FileMetadata `locationName:"filesDeleted" type:"list"`

	// The files updated as part of the commited file changes.
	FilesUpdated []FileMetadata `locationName:"filesUpdated" type:"list"`

	// The full SHA-1 pointer of the tree information for the commit that contains
	// the commited file changes.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateCommitOutput

func (CreateCommitOutput) String added in v0.8.0

func (s CreateCommitOutput) String() string

String returns the string representation

type CreateCommitRequest added in v0.8.0

type CreateCommitRequest struct {
	*aws.Request
	Input *CreateCommitInput
	Copy  func(*CreateCommitInput) CreateCommitRequest
}

CreateCommitRequest is the request type for the CreateCommit API operation.

func (CreateCommitRequest) Send added in v0.8.0

Send marshals and sends the CreateCommit API request.

type CreateCommitResponse added in v0.9.0

type CreateCommitResponse struct {
	*CreateCommitOutput
	// contains filtered or unexported fields
}

CreateCommitResponse is the response type for the CreateCommit API operation.

func (*CreateCommitResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateCommitResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateCommit request.

type CreatePullRequestInput added in v0.2.0

type CreatePullRequestInput struct {

	// 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
	// will return information about the initial request that used that token.
	//
	// The AWS SDKs prepopulate client request tokens. If using an AWS SDK, you
	// do not have to generate an idempotency token, as this will be done for you.
	ClientRequestToken *string `locationName:"clientRequestToken" type:"string" idempotencyToken:"true"`

	// A description of the pull request.
	Description *string `locationName:"description" type:"string"`

	// 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).
	//
	// Targets is a required field
	Targets []Target `locationName:"targets" type:"list" required:"true"`

	// The title of the pull request. This title will be used to identify the pull
	// request to other users in the repository.
	//
	// Title is a required field
	Title *string `locationName:"title" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreatePullRequestInput

func (CreatePullRequestInput) String added in v0.2.0

func (s CreatePullRequestInput) String() string

String returns the string representation

func (*CreatePullRequestInput) Validate added in v0.2.0

func (s *CreatePullRequestInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreatePullRequestOutput added in v0.2.0

type CreatePullRequestOutput struct {

	// Information about the newly created pull request.
	//
	// PullRequest is a required field
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreatePullRequestOutput

func (CreatePullRequestOutput) String added in v0.2.0

func (s CreatePullRequestOutput) String() string

String returns the string representation

type CreatePullRequestRequest added in v0.2.0

type CreatePullRequestRequest struct {
	*aws.Request
	Input *CreatePullRequestInput
	Copy  func(*CreatePullRequestInput) CreatePullRequestRequest
}

CreatePullRequestRequest is the request type for the CreatePullRequest API operation.

func (CreatePullRequestRequest) Send added in v0.2.0

Send marshals and sends the CreatePullRequest API request.

type CreatePullRequestResponse added in v0.9.0

type CreatePullRequestResponse struct {
	*CreatePullRequestOutput
	// contains filtered or unexported fields
}

CreatePullRequestResponse is the response type for the CreatePullRequest API operation.

func (*CreatePullRequestResponse) SDKResponseMetdata added in v0.9.0

func (r *CreatePullRequestResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreatePullRequest request.

type CreateRepositoryInput

type CreateRepositoryInput struct {

	// A comment or description about the new repository.
	//
	// 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 web page could 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 web page.
	RepositoryDescription *string `locationName:"repositoryDescription" type:"string"`

	// The name of the new repository to be created.
	//
	// The repository name must be unique across the calling AWS account. In addition,
	// repository names are limited to 100 alphanumeric, dash, and underscore characters,
	// and cannot include certain characters. For a full description of the limits
	// on repository names, see Limits (https://docs.aws.amazon.com/codecommit/latest/userguide/limits.html)
	// in the AWS CodeCommit User Guide. The suffix ".git" is prohibited.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// One or more tag key-value pairs to use when tagging this repository.
	Tags map[string]string `locationName:"tags" type:"map"`
	// contains filtered or unexported fields
}

Represents the input of a create repository operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateRepositoryInput

func (CreateRepositoryInput) String

func (s CreateRepositoryInput) String() string

String returns the string representation

func (*CreateRepositoryInput) Validate

func (s *CreateRepositoryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type CreateRepositoryOutput

type CreateRepositoryOutput struct {

	// Information about the newly created repository.
	RepositoryMetadata *RepositoryMetadata `locationName:"repositoryMetadata" type:"structure"`
	// contains filtered or unexported fields
}

Represents the output of a create repository operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateRepositoryOutput

func (CreateRepositoryOutput) String

func (s CreateRepositoryOutput) String() string

String returns the string representation

type CreateRepositoryRequest

type CreateRepositoryRequest struct {
	*aws.Request
	Input *CreateRepositoryInput
	Copy  func(*CreateRepositoryInput) CreateRepositoryRequest
}

CreateRepositoryRequest is the request type for the CreateRepository API operation.

func (CreateRepositoryRequest) Send

Send marshals and sends the CreateRepository API request.

type CreateRepositoryResponse added in v0.9.0

type CreateRepositoryResponse struct {
	*CreateRepositoryOutput
	// contains filtered or unexported fields
}

CreateRepositoryResponse is the response type for the CreateRepository API operation.

func (*CreateRepositoryResponse) SDKResponseMetdata added in v0.9.0

func (r *CreateRepositoryResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateRepository request.

type CreateUnreferencedMergeCommitInput added in v0.10.0

type CreateUnreferencedMergeCommitInput struct {

	// The name of the author who created the unreferenced commit. This information
	// will be used as both the author and committer for the commit.
	AuthorName *string `locationName:"authorName" type:"string"`

	// The commit message for the unreferenced commit.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// A list of inputs to use when resolving conflicts during a merge if AUTOMERGE
	// is chosen as the conflict resolution strategy.
	ConflictResolution *ConflictResolution `locationName:"conflictResolution" type:"structure"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The email address for the person who created the unreferenced commit.
	Email *string `locationName:"email" type:"string"`

	// If the commit contains deletions, whether to keep a folder or folder structure
	// if the changes leave the folders empty. If this is specified as true, a .gitkeep
	// file will be created for empty folders. The default is false.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The merge option or strategy you want to use to merge the code.
	//
	// MergeOption is a required field
	MergeOption MergeOptionTypeEnum `locationName:"mergeOption" type:"string" required:"true" enum:"true"`

	// The name of the repository where you want to create the unreferenced merge
	// commit.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateUnreferencedMergeCommitInput

func (CreateUnreferencedMergeCommitInput) String added in v0.10.0

String returns the string representation

func (*CreateUnreferencedMergeCommitInput) Validate added in v0.10.0

Validate inspects the fields of the type to determine if they are valid.

type CreateUnreferencedMergeCommitOutput added in v0.10.0

type CreateUnreferencedMergeCommitOutput struct {

	// The full commit ID of the commit that contains your merge results.
	CommitId *string `locationName:"commitId" type:"string"`

	// The full SHA-1 pointer of the tree information for the commit that contains
	// the merge results.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/CreateUnreferencedMergeCommitOutput

func (CreateUnreferencedMergeCommitOutput) String added in v0.10.0

String returns the string representation

type CreateUnreferencedMergeCommitRequest added in v0.10.0

type CreateUnreferencedMergeCommitRequest struct {
	*aws.Request
	Input *CreateUnreferencedMergeCommitInput
	Copy  func(*CreateUnreferencedMergeCommitInput) CreateUnreferencedMergeCommitRequest
}

CreateUnreferencedMergeCommitRequest is the request type for the CreateUnreferencedMergeCommit API operation.

func (CreateUnreferencedMergeCommitRequest) Send added in v0.10.0

Send marshals and sends the CreateUnreferencedMergeCommit API request.

type CreateUnreferencedMergeCommitResponse added in v0.10.0

type CreateUnreferencedMergeCommitResponse struct {
	*CreateUnreferencedMergeCommitOutput
	// contains filtered or unexported fields
}

CreateUnreferencedMergeCommitResponse is the response type for the CreateUnreferencedMergeCommit API operation.

func (*CreateUnreferencedMergeCommitResponse) SDKResponseMetdata added in v0.10.0

func (r *CreateUnreferencedMergeCommitResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the CreateUnreferencedMergeCommit request.

type DeleteBranchInput added in v0.2.0

type DeleteBranchInput struct {

	// The name of the branch to delete.
	//
	// BranchName is a required field
	BranchName *string `locationName:"branchName" min:"1" type:"string" required:"true"`

	// The name of the repository that contains the branch to be deleted.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a delete branch operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteBranchInput

func (DeleteBranchInput) String added in v0.2.0

func (s DeleteBranchInput) String() string

String returns the string representation

func (*DeleteBranchInput) Validate added in v0.2.0

func (s *DeleteBranchInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteBranchOutput added in v0.2.0

type DeleteBranchOutput struct {

	// Information about the branch deleted by the operation, including the branch
	// name and the commit ID that was the tip of the branch.
	DeletedBranch *BranchInfo `locationName:"deletedBranch" type:"structure"`
	// contains filtered or unexported fields
}

Represents the output of a delete branch operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteBranchOutput

func (DeleteBranchOutput) String added in v0.2.0

func (s DeleteBranchOutput) String() string

String returns the string representation

type DeleteBranchRequest added in v0.2.0

type DeleteBranchRequest struct {
	*aws.Request
	Input *DeleteBranchInput
	Copy  func(*DeleteBranchInput) DeleteBranchRequest
}

DeleteBranchRequest is the request type for the DeleteBranch API operation.

func (DeleteBranchRequest) Send added in v0.2.0

Send marshals and sends the DeleteBranch API request.

type DeleteBranchResponse added in v0.9.0

type DeleteBranchResponse struct {
	*DeleteBranchOutput
	// contains filtered or unexported fields
}

DeleteBranchResponse is the response type for the DeleteBranch API operation.

func (*DeleteBranchResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteBranchResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteBranch request.

type DeleteCommentContentInput added in v0.2.0

type DeleteCommentContentInput struct {

	// The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
	// or GetCommentsForPullRequest.
	//
	// CommentId is a required field
	CommentId *string `locationName:"commentId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteCommentContentInput

func (DeleteCommentContentInput) String added in v0.2.0

func (s DeleteCommentContentInput) String() string

String returns the string representation

func (*DeleteCommentContentInput) Validate added in v0.2.0

func (s *DeleteCommentContentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteCommentContentOutput added in v0.2.0

type DeleteCommentContentOutput struct {

	// Information about the comment you just deleted.
	Comment *Comment `locationName:"comment" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteCommentContentOutput

func (DeleteCommentContentOutput) String added in v0.2.0

String returns the string representation

type DeleteCommentContentRequest added in v0.2.0

type DeleteCommentContentRequest struct {
	*aws.Request
	Input *DeleteCommentContentInput
	Copy  func(*DeleteCommentContentInput) DeleteCommentContentRequest
}

DeleteCommentContentRequest is the request type for the DeleteCommentContent API operation.

func (DeleteCommentContentRequest) Send added in v0.2.0

Send marshals and sends the DeleteCommentContent API request.

type DeleteCommentContentResponse added in v0.9.0

type DeleteCommentContentResponse struct {
	*DeleteCommentContentOutput
	// contains filtered or unexported fields
}

DeleteCommentContentResponse is the response type for the DeleteCommentContent API operation.

func (*DeleteCommentContentResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteCommentContentResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteCommentContent request.

type DeleteFileEntry added in v0.8.0

type DeleteFileEntry struct {

	// The full path of the file that will be deleted, including the name of the
	// file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`
	// contains filtered or unexported fields
}

A file that will be deleted as part of a commit. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteFileEntry

func (DeleteFileEntry) String added in v0.8.0

func (s DeleteFileEntry) String() string

String returns the string representation

func (*DeleteFileEntry) Validate added in v0.8.0

func (s *DeleteFileEntry) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteFileInput added in v0.5.0

type DeleteFileInput struct {

	// The name of the branch where the commit will be made deleting the file.
	//
	// BranchName is a required field
	BranchName *string `locationName:"branchName" min:"1" type:"string" required:"true"`

	// The commit message you want to include as part of deleting the file. Commit
	// messages are limited to 256 KB. If no message is specified, a default message
	// will be used.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The email address for the commit that deletes the file. If no email address
	// is specified, the email address will be left blank.
	Email *string `locationName:"email" type:"string"`

	// The fully-qualified path to the file that will be deleted, including the
	// full name and extension of that file. For example, /examples/file.md is a
	// fully qualified path to a file named file.md in a folder named examples.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// Specifies whether to delete the folder or directory that contains the file
	// you want to delete if that file is the only object in the folder or directory.
	// By default, empty folders will be deleted. This includes empty folders that
	// are part of the directory structure. For example, if the path to a file is
	// dir1/dir2/dir3/dir4, and dir2 and dir3 are empty, deleting the last file
	// in dir4 will also delete the empty folders dir4, dir3, and dir2.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The name of the author of the commit that deletes the file. If no name is
	// specified, the user's ARN will be used as the author name and committer name.
	Name *string `locationName:"name" type:"string"`

	// The ID of the commit that is the tip of the branch where you want to create
	// the commit that will delete the file. This must be the HEAD commit for the
	// branch. The commit that deletes the file will be created from this commit
	// ID.
	//
	// ParentCommitId is a required field
	ParentCommitId *string `locationName:"parentCommitId" type:"string" required:"true"`

	// The name of the repository that contains the file to delete.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteFileInput

func (DeleteFileInput) String added in v0.5.0

func (s DeleteFileInput) String() string

String returns the string representation

func (*DeleteFileInput) Validate added in v0.5.0

func (s *DeleteFileInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteFileOutput added in v0.5.0

type DeleteFileOutput struct {

	// The blob ID removed from the tree as part of deleting the file.
	//
	// BlobId is a required field
	BlobId *string `locationName:"blobId" type:"string" required:"true"`

	// The full commit ID of the commit that contains the change that deletes the
	// file.
	//
	// CommitId is a required field
	CommitId *string `locationName:"commitId" type:"string" required:"true"`

	// The fully-qualified path to the file that will be deleted, including the
	// full name and extension of that file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The full SHA-1 pointer of the tree information for the commit that contains
	// the delete file change.
	//
	// TreeId is a required field
	TreeId *string `locationName:"treeId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteFileOutput

func (DeleteFileOutput) String added in v0.5.0

func (s DeleteFileOutput) String() string

String returns the string representation

type DeleteFileRequest added in v0.5.0

type DeleteFileRequest struct {
	*aws.Request
	Input *DeleteFileInput
	Copy  func(*DeleteFileInput) DeleteFileRequest
}

DeleteFileRequest is the request type for the DeleteFile API operation.

func (DeleteFileRequest) Send added in v0.5.0

Send marshals and sends the DeleteFile API request.

type DeleteFileResponse added in v0.9.0

type DeleteFileResponse struct {
	*DeleteFileOutput
	// contains filtered or unexported fields
}

DeleteFileResponse is the response type for the DeleteFile API operation.

func (*DeleteFileResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteFileResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteFile request.

type DeleteRepositoryInput

type DeleteRepositoryInput struct {

	// The name of the repository to delete.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a delete repository operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteRepositoryInput

func (DeleteRepositoryInput) String

func (s DeleteRepositoryInput) String() string

String returns the string representation

func (*DeleteRepositoryInput) Validate

func (s *DeleteRepositoryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DeleteRepositoryOutput

type DeleteRepositoryOutput struct {

	// The ID of the repository that was deleted.
	RepositoryId *string `locationName:"repositoryId" type:"string"`
	// contains filtered or unexported fields
}

Represents the output of a delete repository operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DeleteRepositoryOutput

func (DeleteRepositoryOutput) String

func (s DeleteRepositoryOutput) String() string

String returns the string representation

type DeleteRepositoryRequest

type DeleteRepositoryRequest struct {
	*aws.Request
	Input *DeleteRepositoryInput
	Copy  func(*DeleteRepositoryInput) DeleteRepositoryRequest
}

DeleteRepositoryRequest is the request type for the DeleteRepository API operation.

func (DeleteRepositoryRequest) Send

Send marshals and sends the DeleteRepository API request.

type DeleteRepositoryResponse added in v0.9.0

type DeleteRepositoryResponse struct {
	*DeleteRepositoryOutput
	// contains filtered or unexported fields
}

DeleteRepositoryResponse is the response type for the DeleteRepository API operation.

func (*DeleteRepositoryResponse) SDKResponseMetdata added in v0.9.0

func (r *DeleteRepositoryResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DeleteRepository request.

type DescribeMergeConflictsInput added in v0.10.0

type DescribeMergeConflictsInput struct {

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The path of the target files used to describe the conflicts.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The maximum number of merge hunks to include in the output.
	MaxMergeHunks *int64 `locationName:"maxMergeHunks" type:"integer"`

	// The merge option or strategy you want to use to merge the code.
	//
	// MergeOption is a required field
	MergeOption MergeOptionTypeEnum `locationName:"mergeOption" type:"string" required:"true" enum:"true"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The name of the repository where you want to get information about a merge
	// conflict.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DescribeMergeConflictsInput

func (DescribeMergeConflictsInput) String added in v0.10.0

String returns the string representation

func (*DescribeMergeConflictsInput) Validate added in v0.10.0

func (s *DescribeMergeConflictsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribeMergeConflictsOutput added in v0.10.0

type DescribeMergeConflictsOutput struct {

	// The commit ID of the merge base.
	BaseCommitId *string `locationName:"baseCommitId" type:"string"`

	// Contains metadata about the conflicts found in the merge.
	//
	// ConflictMetadata is a required field
	ConflictMetadata *ConflictMetadata `locationName:"conflictMetadata" type:"structure" required:"true"`

	// The commit ID of the destination commit specifier that was used in the merge
	// evaluation.
	//
	// DestinationCommitId is a required field
	DestinationCommitId *string `locationName:"destinationCommitId" type:"string" required:"true"`

	// A list of merge hunks of the differences between the files or lines.
	//
	// MergeHunks is a required field
	MergeHunks []MergeHunk `locationName:"mergeHunks" type:"list" required:"true"`

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The commit ID of the source commit specifier that was used in the merge evaluation.
	//
	// SourceCommitId is a required field
	SourceCommitId *string `locationName:"sourceCommitId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DescribeMergeConflictsOutput

func (DescribeMergeConflictsOutput) String added in v0.10.0

String returns the string representation

type DescribeMergeConflictsPaginator added in v0.10.0

type DescribeMergeConflictsPaginator struct {
	aws.Pager
}

DescribeMergeConflictsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewDescribeMergeConflictsPaginator added in v0.10.0

func NewDescribeMergeConflictsPaginator(req DescribeMergeConflictsRequest) DescribeMergeConflictsPaginator

NewDescribeMergeConflictsRequestPaginator returns a paginator for DescribeMergeConflicts. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.DescribeMergeConflictsRequest(input)
p := codecommit.NewDescribeMergeConflictsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*DescribeMergeConflictsPaginator) CurrentPage added in v0.10.0

type DescribeMergeConflictsRequest added in v0.10.0

type DescribeMergeConflictsRequest struct {
	*aws.Request
	Input *DescribeMergeConflictsInput
	Copy  func(*DescribeMergeConflictsInput) DescribeMergeConflictsRequest
}

DescribeMergeConflictsRequest is the request type for the DescribeMergeConflicts API operation.

func (DescribeMergeConflictsRequest) Send added in v0.10.0

Send marshals and sends the DescribeMergeConflicts API request.

type DescribeMergeConflictsResponse added in v0.10.0

type DescribeMergeConflictsResponse struct {
	*DescribeMergeConflictsOutput
	// contains filtered or unexported fields
}

DescribeMergeConflictsResponse is the response type for the DescribeMergeConflicts API operation.

func (*DescribeMergeConflictsResponse) SDKResponseMetdata added in v0.10.0

func (r *DescribeMergeConflictsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribeMergeConflicts request.

type DescribePullRequestEventsInput added in v0.2.0

type DescribePullRequestEventsInput struct {

	// The Amazon Resource Name (ARN) of the user whose actions resulted in the
	// event. Examples include updating the pull request with additional commits
	// or changing the status of a pull request.
	ActorArn *string `locationName:"actorArn" type:"string"`

	// A non-negative integer used to limit the number of returned results. The
	// default is 100 events, which is also the maximum number of events that can
	// be returned in a result.
	MaxResults *int64 `locationName:"maxResults" type:"integer"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// Optional. The pull request event type about which you want to return information.
	PullRequestEventType PullRequestEventType `locationName:"pullRequestEventType" type:"string" enum:"true"`

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DescribePullRequestEventsInput

func (DescribePullRequestEventsInput) String added in v0.2.0

String returns the string representation

func (*DescribePullRequestEventsInput) Validate added in v0.2.0

func (s *DescribePullRequestEventsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type DescribePullRequestEventsOutput added in v0.2.0

type DescribePullRequestEventsOutput struct {

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// Information about the pull request events.
	//
	// PullRequestEvents is a required field
	PullRequestEvents []PullRequestEvent `locationName:"pullRequestEvents" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/DescribePullRequestEventsOutput

func (DescribePullRequestEventsOutput) String added in v0.2.0

String returns the string representation

type DescribePullRequestEventsPaginator added in v0.9.0

type DescribePullRequestEventsPaginator struct {
	aws.Pager
}

DescribePullRequestEventsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewDescribePullRequestEventsPaginator added in v0.9.0

func NewDescribePullRequestEventsPaginator(req DescribePullRequestEventsRequest) DescribePullRequestEventsPaginator

NewDescribePullRequestEventsRequestPaginator returns a paginator for DescribePullRequestEvents. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.DescribePullRequestEventsRequest(input)
p := codecommit.NewDescribePullRequestEventsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*DescribePullRequestEventsPaginator) CurrentPage added in v0.9.0

type DescribePullRequestEventsRequest added in v0.2.0

type DescribePullRequestEventsRequest struct {
	*aws.Request
	Input *DescribePullRequestEventsInput
	Copy  func(*DescribePullRequestEventsInput) DescribePullRequestEventsRequest
}

DescribePullRequestEventsRequest is the request type for the DescribePullRequestEvents API operation.

func (DescribePullRequestEventsRequest) Send added in v0.2.0

Send marshals and sends the DescribePullRequestEvents API request.

type DescribePullRequestEventsResponse added in v0.9.0

type DescribePullRequestEventsResponse struct {
	*DescribePullRequestEventsOutput
	// contains filtered or unexported fields
}

DescribePullRequestEventsResponse is the response type for the DescribePullRequestEvents API operation.

func (*DescribePullRequestEventsResponse) SDKResponseMetdata added in v0.9.0

func (r *DescribePullRequestEventsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the DescribePullRequestEvents request.

type Difference

type Difference struct {

	// Information about an afterBlob data type object, including the ID, the file
	// mode permission code, and the path.
	AfterBlob *BlobMetadata `locationName:"afterBlob" type:"structure"`

	// Information about a beforeBlob data type object, including the ID, the file
	// mode permission code, and the path.
	BeforeBlob *BlobMetadata `locationName:"beforeBlob" type:"structure"`

	// Whether the change type of the difference is an addition (A), deletion (D),
	// or modification (M).
	ChangeType ChangeTypeEnum `locationName:"changeType" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Returns information about a set of differences for a commit specifier. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Difference

func (Difference) String

func (s Difference) String() string

String returns the string representation

type File added in v0.5.0

type File struct {

	// The fully-qualified path to the file in the repository.
	AbsolutePath *string `locationName:"absolutePath" type:"string"`

	// The blob ID that contains the file information.
	BlobId *string `locationName:"blobId" type:"string"`

	// The extrapolated file mode permissions for the file. Valid values include
	// EXECUTABLE and NORMAL.
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" enum:"true"`

	// The relative path of the file from the folder where the query originated.
	RelativePath *string `locationName:"relativePath" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a file in a repository. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/File

func (File) String added in v0.5.0

func (s File) String() string

String returns the string representation

type FileMetadata added in v0.8.0

type FileMetadata struct {

	// The full path to the file that will be added or updated, including the name
	// of the file.
	AbsolutePath *string `locationName:"absolutePath" type:"string"`

	// The blob ID that contains the file information.
	BlobId *string `locationName:"blobId" type:"string"`

	// The extrapolated file mode permissions for the file. Valid values include
	// EXECUTABLE and NORMAL.
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

A file that will be added, updated, or deleted as part of a commit. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/FileMetadata

func (FileMetadata) String added in v0.8.0

func (s FileMetadata) String() string

String returns the string representation

type FileModeTypeEnum added in v0.3.0

type FileModeTypeEnum string
const (
	FileModeTypeEnumExecutable FileModeTypeEnum = "EXECUTABLE"
	FileModeTypeEnumNormal     FileModeTypeEnum = "NORMAL"
	FileModeTypeEnumSymlink    FileModeTypeEnum = "SYMLINK"
)

Enum values for FileModeTypeEnum

func (FileModeTypeEnum) MarshalValue added in v0.3.0

func (enum FileModeTypeEnum) MarshalValue() (string, error)

func (FileModeTypeEnum) MarshalValueBuf added in v0.3.0

func (enum FileModeTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type FileModes added in v0.10.0

type FileModes struct {

	// The file mode of a file in the base of a merge or pull request.
	Base FileModeTypeEnum `locationName:"base" type:"string" enum:"true"`

	// The file mode of a file in the destination of a merge or pull request.
	Destination FileModeTypeEnum `locationName:"destination" type:"string" enum:"true"`

	// The file mode of a file in the source of a merge or pull request.
	Source FileModeTypeEnum `locationName:"source" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about file modes in a merge or pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/FileModes

func (FileModes) String added in v0.10.0

func (s FileModes) String() string

String returns the string representation

type FileSizes added in v0.10.0

type FileSizes struct {

	// The size of a file in the base of a merge or pull request.
	Base *int64 `locationName:"base" type:"long"`

	// The size of a file in the destination of a merge or pull request.
	Destination *int64 `locationName:"destination" type:"long"`

	// The size of a file in the source of a merge or pull request.
	Source *int64 `locationName:"source" type:"long"`
	// contains filtered or unexported fields
}

Information about the size of files in a merge or pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/FileSizes

func (FileSizes) String added in v0.10.0

func (s FileSizes) String() string

String returns the string representation

type Folder added in v0.5.0

type Folder struct {

	// The fully-qualified path of the folder in the repository.
	AbsolutePath *string `locationName:"absolutePath" type:"string"`

	// The relative path of the specified folder from the folder where the query
	// originated.
	RelativePath *string `locationName:"relativePath" type:"string"`

	// The full SHA-1 pointer of the tree information for the commit that contains
	// the folder.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a folder in a repository. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Folder

func (Folder) String added in v0.5.0

func (s Folder) String() string

String returns the string representation

type GetBlobInput

type GetBlobInput struct {

	// The ID of the blob, which is its SHA-1 pointer.
	//
	// BlobId is a required field
	BlobId *string `locationName:"blobId" type:"string" required:"true"`

	// The name of the repository that contains the blob.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a get blob operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBlobInput

func (GetBlobInput) String

func (s GetBlobInput) String() string

String returns the string representation

func (*GetBlobInput) Validate

func (s *GetBlobInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBlobOutput

type GetBlobOutput struct {

	// The content of the blob, usually a file.
	//
	// Content is automatically base64 encoded/decoded by the SDK.
	//
	// Content is a required field
	Content []byte `locationName:"content" type:"blob" required:"true"`
	// contains filtered or unexported fields
}

Represents the output of a get blob operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBlobOutput

func (GetBlobOutput) String

func (s GetBlobOutput) String() string

String returns the string representation

type GetBlobRequest

type GetBlobRequest struct {
	*aws.Request
	Input *GetBlobInput
	Copy  func(*GetBlobInput) GetBlobRequest
}

GetBlobRequest is the request type for the GetBlob API operation.

func (GetBlobRequest) Send

Send marshals and sends the GetBlob API request.

type GetBlobResponse added in v0.9.0

type GetBlobResponse struct {
	*GetBlobOutput
	// contains filtered or unexported fields
}

GetBlobResponse is the response type for the GetBlob API operation.

func (*GetBlobResponse) SDKResponseMetdata added in v0.9.0

func (r *GetBlobResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetBlob request.

type GetBranchInput

type GetBranchInput struct {

	// The name of the branch for which you want to retrieve information.
	BranchName *string `locationName:"branchName" min:"1" type:"string"`

	// The name of the repository that contains the branch for which you want to
	// retrieve information.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Represents the input of a get branch operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBranchInput

func (GetBranchInput) String

func (s GetBranchInput) String() string

String returns the string representation

func (*GetBranchInput) Validate

func (s *GetBranchInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetBranchOutput

type GetBranchOutput struct {

	// The name of the branch.
	Branch *BranchInfo `locationName:"branch" type:"structure"`
	// contains filtered or unexported fields
}

Represents the output of a get branch operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetBranchOutput

func (GetBranchOutput) String

func (s GetBranchOutput) String() string

String returns the string representation

type GetBranchRequest

type GetBranchRequest struct {
	*aws.Request
	Input *GetBranchInput
	Copy  func(*GetBranchInput) GetBranchRequest
}

GetBranchRequest is the request type for the GetBranch API operation.

func (GetBranchRequest) Send

Send marshals and sends the GetBranch API request.

type GetBranchResponse added in v0.9.0

type GetBranchResponse struct {
	*GetBranchOutput
	// contains filtered or unexported fields
}

GetBranchResponse is the response type for the GetBranch API operation.

func (*GetBranchResponse) SDKResponseMetdata added in v0.9.0

func (r *GetBranchResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetBranch request.

type GetCommentInput added in v0.2.0

type GetCommentInput struct {

	// The unique, system-generated ID of the comment. To get this ID, use GetCommentsForComparedCommit
	// or GetCommentsForPullRequest.
	//
	// CommentId is a required field
	CommentId *string `locationName:"commentId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentInput

func (GetCommentInput) String added in v0.2.0

func (s GetCommentInput) String() string

String returns the string representation

func (*GetCommentInput) Validate added in v0.2.0

func (s *GetCommentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCommentOutput added in v0.2.0

type GetCommentOutput struct {

	// The contents of the comment.
	Comment *Comment `locationName:"comment" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentOutput

func (GetCommentOutput) String added in v0.2.0

func (s GetCommentOutput) String() string

String returns the string representation

type GetCommentRequest added in v0.2.0

type GetCommentRequest struct {
	*aws.Request
	Input *GetCommentInput
	Copy  func(*GetCommentInput) GetCommentRequest
}

GetCommentRequest is the request type for the GetComment API operation.

func (GetCommentRequest) Send added in v0.2.0

Send marshals and sends the GetComment API request.

type GetCommentResponse added in v0.9.0

type GetCommentResponse struct {
	*GetCommentOutput
	// contains filtered or unexported fields
}

GetCommentResponse is the response type for the GetComment API operation.

func (*GetCommentResponse) SDKResponseMetdata added in v0.9.0

func (r *GetCommentResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetComment request.

type GetCommentsForComparedCommitInput added in v0.2.0

type GetCommentsForComparedCommitInput struct {

	// To establish the directionality of the comparison, the full commit ID of
	// the 'after' commit.
	//
	// AfterCommitId is a required field
	AfterCommitId *string `locationName:"afterCommitId" type:"string" required:"true"`

	// To establish the directionality of the comparison, the full commit ID of
	// the 'before' commit.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// A non-negative integer used to limit the number of returned results. The
	// default is 100 comments, and is configurable up to 500.
	MaxResults *int64 `locationName:"maxResults" type:"integer"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The name of the repository where you want to compare commits.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentsForComparedCommitInput

func (GetCommentsForComparedCommitInput) String added in v0.2.0

String returns the string representation

func (*GetCommentsForComparedCommitInput) Validate added in v0.2.0

Validate inspects the fields of the type to determine if they are valid.

type GetCommentsForComparedCommitOutput added in v0.2.0

type GetCommentsForComparedCommitOutput struct {

	// A list of comment objects on the compared commit.
	CommentsForComparedCommitData []CommentsForComparedCommit `locationName:"commentsForComparedCommitData" type:"list"`

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentsForComparedCommitOutput

func (GetCommentsForComparedCommitOutput) String added in v0.2.0

String returns the string representation

type GetCommentsForComparedCommitPaginator added in v0.9.0

type GetCommentsForComparedCommitPaginator struct {
	aws.Pager
}

GetCommentsForComparedCommitPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewGetCommentsForComparedCommitPaginator added in v0.9.0

func NewGetCommentsForComparedCommitPaginator(req GetCommentsForComparedCommitRequest) GetCommentsForComparedCommitPaginator

NewGetCommentsForComparedCommitRequestPaginator returns a paginator for GetCommentsForComparedCommit. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.GetCommentsForComparedCommitRequest(input)
p := codecommit.NewGetCommentsForComparedCommitRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*GetCommentsForComparedCommitPaginator) CurrentPage added in v0.9.0

type GetCommentsForComparedCommitRequest added in v0.2.0

type GetCommentsForComparedCommitRequest struct {
	*aws.Request
	Input *GetCommentsForComparedCommitInput
	Copy  func(*GetCommentsForComparedCommitInput) GetCommentsForComparedCommitRequest
}

GetCommentsForComparedCommitRequest is the request type for the GetCommentsForComparedCommit API operation.

func (GetCommentsForComparedCommitRequest) Send added in v0.2.0

Send marshals and sends the GetCommentsForComparedCommit API request.

type GetCommentsForComparedCommitResponse added in v0.9.0

type GetCommentsForComparedCommitResponse struct {
	*GetCommentsForComparedCommitOutput
	// contains filtered or unexported fields
}

GetCommentsForComparedCommitResponse is the response type for the GetCommentsForComparedCommit API operation.

func (*GetCommentsForComparedCommitResponse) SDKResponseMetdata added in v0.9.0

func (r *GetCommentsForComparedCommitResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetCommentsForComparedCommit request.

type GetCommentsForPullRequestInput added in v0.2.0

type GetCommentsForPullRequestInput struct {

	// The full commit ID of the commit in the source branch that was the tip of
	// the branch at the time the comment was made.
	AfterCommitId *string `locationName:"afterCommitId" type:"string"`

	// The full commit ID of the commit in the destination branch that was the tip
	// of the branch at the time the pull request was created.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// A non-negative integer used to limit the number of returned results. The
	// default is 100 comments. You can return up to 500 comments with a single
	// request.
	MaxResults *int64 `locationName:"maxResults" type:"integer"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The name of the repository that contains the pull request.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentsForPullRequestInput

func (GetCommentsForPullRequestInput) String added in v0.2.0

String returns the string representation

func (*GetCommentsForPullRequestInput) Validate added in v0.2.0

func (s *GetCommentsForPullRequestInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCommentsForPullRequestOutput added in v0.2.0

type GetCommentsForPullRequestOutput struct {

	// An array of comment objects on the pull request.
	CommentsForPullRequestData []CommentsForPullRequest `locationName:"commentsForPullRequestData" type:"list"`

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommentsForPullRequestOutput

func (GetCommentsForPullRequestOutput) String added in v0.2.0

String returns the string representation

type GetCommentsForPullRequestPaginator added in v0.9.0

type GetCommentsForPullRequestPaginator struct {
	aws.Pager
}

GetCommentsForPullRequestPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewGetCommentsForPullRequestPaginator added in v0.9.0

func NewGetCommentsForPullRequestPaginator(req GetCommentsForPullRequestRequest) GetCommentsForPullRequestPaginator

NewGetCommentsForPullRequestRequestPaginator returns a paginator for GetCommentsForPullRequest. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.GetCommentsForPullRequestRequest(input)
p := codecommit.NewGetCommentsForPullRequestRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*GetCommentsForPullRequestPaginator) CurrentPage added in v0.9.0

type GetCommentsForPullRequestRequest added in v0.2.0

type GetCommentsForPullRequestRequest struct {
	*aws.Request
	Input *GetCommentsForPullRequestInput
	Copy  func(*GetCommentsForPullRequestInput) GetCommentsForPullRequestRequest
}

GetCommentsForPullRequestRequest is the request type for the GetCommentsForPullRequest API operation.

func (GetCommentsForPullRequestRequest) Send added in v0.2.0

Send marshals and sends the GetCommentsForPullRequest API request.

type GetCommentsForPullRequestResponse added in v0.9.0

type GetCommentsForPullRequestResponse struct {
	*GetCommentsForPullRequestOutput
	// contains filtered or unexported fields
}

GetCommentsForPullRequestResponse is the response type for the GetCommentsForPullRequest API operation.

func (*GetCommentsForPullRequestResponse) SDKResponseMetdata added in v0.9.0

func (r *GetCommentsForPullRequestResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetCommentsForPullRequest request.

type GetCommitInput

type GetCommitInput struct {

	// The commit ID. Commit IDs are the full SHA of the commit.
	//
	// CommitId is a required field
	CommitId *string `locationName:"commitId" type:"string" required:"true"`

	// The name of the repository to which the commit was made.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a get commit operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommitInput

func (GetCommitInput) String

func (s GetCommitInput) String() string

String returns the string representation

func (*GetCommitInput) Validate

func (s *GetCommitInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetCommitOutput

type GetCommitOutput struct {

	// A commit data type object that contains information about the specified commit.
	//
	// Commit is a required field
	Commit *Commit `locationName:"commit" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Represents the output of a get commit operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetCommitOutput

func (GetCommitOutput) String

func (s GetCommitOutput) String() string

String returns the string representation

type GetCommitRequest

type GetCommitRequest struct {
	*aws.Request
	Input *GetCommitInput
	Copy  func(*GetCommitInput) GetCommitRequest
}

GetCommitRequest is the request type for the GetCommit API operation.

func (GetCommitRequest) Send

Send marshals and sends the GetCommit API request.

type GetCommitResponse added in v0.9.0

type GetCommitResponse struct {
	*GetCommitOutput
	// contains filtered or unexported fields
}

GetCommitResponse is the response type for the GetCommit API operation.

func (*GetCommitResponse) SDKResponseMetdata added in v0.9.0

func (r *GetCommitResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetCommit request.

type GetDifferencesInput

type GetDifferencesInput struct {

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit.
	//
	// AfterCommitSpecifier is a required field
	AfterCommitSpecifier *string `locationName:"afterCommitSpecifier" type:"string" required:"true"`

	// The file path in which to check differences. Limits the results to this path.
	// Can also be used to specify the changed name of a directory or folder, if
	// it has changed. If not specified, differences will be shown for all paths.
	AfterPath *string `locationName:"afterPath" type:"string"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, the full commit ID. Optional. If not specified, all
	// changes prior to the afterCommitSpecifier value will be shown. If you do
	// not use beforeCommitSpecifier in your request, consider limiting the results
	// with maxResults.
	BeforeCommitSpecifier *string `locationName:"beforeCommitSpecifier" type:"string"`

	// The file path in which to check for differences. Limits the results to this
	// path. Can also be used to specify the previous name of a directory or folder.
	// If beforePath and afterPath are not specified, differences will be shown
	// for all paths.
	BeforePath *string `locationName:"beforePath" type:"string"`

	// A non-negative integer used to limit the number of returned results.
	MaxResults *int64 `type:"integer"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `type:"string"`

	// The name of the repository where you want to get differences.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetDifferencesInput

func (GetDifferencesInput) String

func (s GetDifferencesInput) String() string

String returns the string representation

func (*GetDifferencesInput) Validate

func (s *GetDifferencesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetDifferencesOutput

type GetDifferencesOutput struct {

	// A differences data type object that contains information about the differences,
	// including whether the difference is added, modified, or deleted (A, D, M).
	Differences []Difference `locationName:"differences" type:"list"`

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetDifferencesOutput

func (GetDifferencesOutput) String

func (s GetDifferencesOutput) String() string

String returns the string representation

type GetDifferencesPaginator added in v0.9.0

type GetDifferencesPaginator struct {
	aws.Pager
}

GetDifferencesPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewGetDifferencesPaginator added in v0.9.0

func NewGetDifferencesPaginator(req GetDifferencesRequest) GetDifferencesPaginator

NewGetDifferencesRequestPaginator returns a paginator for GetDifferences. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.GetDifferencesRequest(input)
p := codecommit.NewGetDifferencesRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*GetDifferencesPaginator) CurrentPage added in v0.9.0

type GetDifferencesRequest

type GetDifferencesRequest struct {
	*aws.Request
	Input *GetDifferencesInput
	Copy  func(*GetDifferencesInput) GetDifferencesRequest
}

GetDifferencesRequest is the request type for the GetDifferences API operation.

func (GetDifferencesRequest) Send

Send marshals and sends the GetDifferences API request.

type GetDifferencesResponse added in v0.9.0

type GetDifferencesResponse struct {
	*GetDifferencesOutput
	// contains filtered or unexported fields
}

GetDifferencesResponse is the response type for the GetDifferences API operation.

func (*GetDifferencesResponse) SDKResponseMetdata added in v0.9.0

func (r *GetDifferencesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetDifferences request.

type GetFileInput added in v0.5.0

type GetFileInput struct {

	// The fully-quaified reference that identifies the commit that contains the
	// file. For example, you could specify a full commit ID, a tag, a branch name,
	// or a reference such as refs/heads/master. If none is provided, then the head
	// commit will be used.
	CommitSpecifier *string `locationName:"commitSpecifier" type:"string"`

	// The fully-qualified path to the file, including the full name and extension
	// of the file. For example, /examples/file.md is the fully-qualified path to
	// a file named file.md in a folder named examples.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The name of the repository that contains the file.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetFileInput

func (GetFileInput) String added in v0.5.0

func (s GetFileInput) String() string

String returns the string representation

func (*GetFileInput) Validate added in v0.5.0

func (s *GetFileInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetFileOutput added in v0.5.0

type GetFileOutput struct {

	// The blob ID of the object that represents the file content.
	//
	// BlobId is a required field
	BlobId *string `locationName:"blobId" type:"string" required:"true"`

	// The full commit ID of the commit that contains the content returned by GetFile.
	//
	// CommitId is a required field
	CommitId *string `locationName:"commitId" type:"string" required:"true"`

	// The base-64 encoded binary data object that represents the content of the
	// file.
	//
	// FileContent is automatically base64 encoded/decoded by the SDK.
	//
	// FileContent is a required field
	FileContent []byte `locationName:"fileContent" type:"blob" required:"true"`

	// The extrapolated file mode permissions of the blob. Valid values include
	// strings such as EXECUTABLE and not numeric values.
	//
	// The file mode permissions returned by this API are not the standard file
	// mode permission values, such as 100644, but rather extrapolated values. See
	// below for a full list of supported return values.
	//
	// FileMode is a required field
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" required:"true" enum:"true"`

	// The fully qualified path to the specified file. This returns the name and
	// extension of the file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The size of the contents of the file, in bytes.
	//
	// FileSize is a required field
	FileSize *int64 `locationName:"fileSize" type:"long" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetFileOutput

func (GetFileOutput) String added in v0.5.0

func (s GetFileOutput) String() string

String returns the string representation

type GetFileRequest added in v0.5.0

type GetFileRequest struct {
	*aws.Request
	Input *GetFileInput
	Copy  func(*GetFileInput) GetFileRequest
}

GetFileRequest is the request type for the GetFile API operation.

func (GetFileRequest) Send added in v0.5.0

Send marshals and sends the GetFile API request.

type GetFileResponse added in v0.9.0

type GetFileResponse struct {
	*GetFileOutput
	// contains filtered or unexported fields
}

GetFileResponse is the response type for the GetFile API operation.

func (*GetFileResponse) SDKResponseMetdata added in v0.9.0

func (r *GetFileResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetFile request.

type GetFolderInput added in v0.5.0

type GetFolderInput struct {

	// A fully-qualified reference used to identify a commit that contains the version
	// of the folder's content to return. A fully-qualified reference can be a commit
	// ID, branch name, tag, or reference such as HEAD. If no specifier is provided,
	// the folder content will be returned as it exists in the HEAD commit.
	CommitSpecifier *string `locationName:"commitSpecifier" type:"string"`

	// The fully-qualified path to the folder whose contents will be returned, including
	// the folder name. For example, /examples is a fully-qualified path to a folder
	// named examples that was created off of the root directory (/) of a repository.
	//
	// FolderPath is a required field
	FolderPath *string `locationName:"folderPath" type:"string" required:"true"`

	// The name of the repository.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetFolderInput

func (GetFolderInput) String added in v0.5.0

func (s GetFolderInput) String() string

String returns the string representation

func (*GetFolderInput) Validate added in v0.5.0

func (s *GetFolderInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetFolderOutput added in v0.5.0

type GetFolderOutput struct {

	// The full commit ID used as a reference for which version of the folder content
	// is returned.
	//
	// CommitId is a required field
	CommitId *string `locationName:"commitId" type:"string" required:"true"`

	// The list of files that exist in the specified folder, if any.
	Files []File `locationName:"files" type:"list"`

	// The fully-qualified path of the folder whose contents are returned.
	//
	// FolderPath is a required field
	FolderPath *string `locationName:"folderPath" type:"string" required:"true"`

	// The list of folders that exist beneath the specified folder, if any.
	SubFolders []Folder `locationName:"subFolders" type:"list"`

	// The list of submodules that exist in the specified folder, if any.
	SubModules []SubModule `locationName:"subModules" type:"list"`

	// The list of symbolic links to other files and folders that exist in the specified
	// folder, if any.
	SymbolicLinks []SymbolicLink `locationName:"symbolicLinks" type:"list"`

	// The full SHA-1 pointer of the tree information for the commit that contains
	// the folder.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetFolderOutput

func (GetFolderOutput) String added in v0.5.0

func (s GetFolderOutput) String() string

String returns the string representation

type GetFolderRequest added in v0.5.0

type GetFolderRequest struct {
	*aws.Request
	Input *GetFolderInput
	Copy  func(*GetFolderInput) GetFolderRequest
}

GetFolderRequest is the request type for the GetFolder API operation.

func (GetFolderRequest) Send added in v0.5.0

Send marshals and sends the GetFolder API request.

type GetFolderResponse added in v0.9.0

type GetFolderResponse struct {
	*GetFolderOutput
	// contains filtered or unexported fields
}

GetFolderResponse is the response type for the GetFolder API operation.

func (*GetFolderResponse) SDKResponseMetdata added in v0.9.0

func (r *GetFolderResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetFolder request.

type GetMergeCommitInput added in v0.10.0

type GetMergeCommitInput struct {

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The name of the repository that contains the merge commit about which you
	// want to get information.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeCommitInput

func (GetMergeCommitInput) String added in v0.10.0

func (s GetMergeCommitInput) String() string

String returns the string representation

func (*GetMergeCommitInput) Validate added in v0.10.0

func (s *GetMergeCommitInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetMergeCommitOutput added in v0.10.0

type GetMergeCommitOutput struct {

	// The commit ID of the merge base.
	BaseCommitId *string `locationName:"baseCommitId" type:"string"`

	// The commit ID of the destination commit specifier that was used in the merge
	// evaluation.
	DestinationCommitId *string `locationName:"destinationCommitId" type:"string"`

	// The commit ID for the merge commit created when the source branch was merged
	// into the destination branch. If the fast-forward merge strategy was used,
	// no merge commit exists.
	MergedCommitId *string `locationName:"mergedCommitId" type:"string"`

	// The commit ID of the source commit specifier that was used in the merge evaluation.
	SourceCommitId *string `locationName:"sourceCommitId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeCommitOutput

func (GetMergeCommitOutput) String added in v0.10.0

func (s GetMergeCommitOutput) String() string

String returns the string representation

type GetMergeCommitRequest added in v0.10.0

type GetMergeCommitRequest struct {
	*aws.Request
	Input *GetMergeCommitInput
	Copy  func(*GetMergeCommitInput) GetMergeCommitRequest
}

GetMergeCommitRequest is the request type for the GetMergeCommit API operation.

func (GetMergeCommitRequest) Send added in v0.10.0

Send marshals and sends the GetMergeCommit API request.

type GetMergeCommitResponse added in v0.10.0

type GetMergeCommitResponse struct {
	*GetMergeCommitOutput
	// contains filtered or unexported fields
}

GetMergeCommitResponse is the response type for the GetMergeCommit API operation.

func (*GetMergeCommitResponse) SDKResponseMetdata added in v0.10.0

func (r *GetMergeCommitResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetMergeCommit request.

type GetMergeConflictsInput added in v0.2.0

type GetMergeConflictsInput struct {

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The maximum number of files to include in the output.
	MaxConflictFiles *int64 `locationName:"maxConflictFiles" type:"integer"`

	// The merge option or strategy you want to use to merge the code.
	//
	// MergeOption is a required field
	MergeOption MergeOptionTypeEnum `locationName:"mergeOption" type:"string" required:"true" enum:"true"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The name of the repository where the pull request was created.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeConflictsInput

func (GetMergeConflictsInput) String added in v0.2.0

func (s GetMergeConflictsInput) String() string

String returns the string representation

func (*GetMergeConflictsInput) Validate added in v0.2.0

func (s *GetMergeConflictsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetMergeConflictsOutput added in v0.2.0

type GetMergeConflictsOutput struct {

	// The commit ID of the merge base.
	BaseCommitId *string `locationName:"baseCommitId" type:"string"`

	// A list of metadata for any conflicting files. If the specified merge strategy
	// is FAST_FORWARD_MERGE, this list will always be empty.
	//
	// ConflictMetadataList is a required field
	ConflictMetadataList []ConflictMetadata `locationName:"conflictMetadataList" type:"list" required:"true"`

	// The commit ID of the destination commit specifier that was used in the merge
	// evaluation.
	//
	// DestinationCommitId is a required field
	DestinationCommitId *string `locationName:"destinationCommitId" type:"string" required:"true"`

	// A Boolean value that indicates whether the code is mergeable by the specified
	// merge option.
	//
	// Mergeable is a required field
	Mergeable *bool `locationName:"mergeable" type:"boolean" required:"true"`

	// An enumeration token that can be used in a request to return the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The commit ID of the source commit specifier that was used in the merge evaluation.
	//
	// SourceCommitId is a required field
	SourceCommitId *string `locationName:"sourceCommitId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeConflictsOutput

func (GetMergeConflictsOutput) String added in v0.2.0

func (s GetMergeConflictsOutput) String() string

String returns the string representation

type GetMergeConflictsPaginator added in v0.10.0

type GetMergeConflictsPaginator struct {
	aws.Pager
}

GetMergeConflictsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewGetMergeConflictsPaginator added in v0.10.0

func NewGetMergeConflictsPaginator(req GetMergeConflictsRequest) GetMergeConflictsPaginator

NewGetMergeConflictsRequestPaginator returns a paginator for GetMergeConflicts. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.GetMergeConflictsRequest(input)
p := codecommit.NewGetMergeConflictsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*GetMergeConflictsPaginator) CurrentPage added in v0.10.0

type GetMergeConflictsRequest added in v0.2.0

type GetMergeConflictsRequest struct {
	*aws.Request
	Input *GetMergeConflictsInput
	Copy  func(*GetMergeConflictsInput) GetMergeConflictsRequest
}

GetMergeConflictsRequest is the request type for the GetMergeConflicts API operation.

func (GetMergeConflictsRequest) Send added in v0.2.0

Send marshals and sends the GetMergeConflicts API request.

type GetMergeConflictsResponse added in v0.9.0

type GetMergeConflictsResponse struct {
	*GetMergeConflictsOutput
	// contains filtered or unexported fields
}

GetMergeConflictsResponse is the response type for the GetMergeConflicts API operation.

func (*GetMergeConflictsResponse) SDKResponseMetdata added in v0.9.0

func (r *GetMergeConflictsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetMergeConflicts request.

type GetMergeOptionsInput added in v0.10.0

type GetMergeOptionsInput struct {

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The name of the repository that contains the commits about which you want
	// to get merge options.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeOptionsInput

func (GetMergeOptionsInput) String added in v0.10.0

func (s GetMergeOptionsInput) String() string

String returns the string representation

func (*GetMergeOptionsInput) Validate added in v0.10.0

func (s *GetMergeOptionsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetMergeOptionsOutput added in v0.10.0

type GetMergeOptionsOutput struct {

	// The commit ID of the merge base.
	//
	// BaseCommitId is a required field
	BaseCommitId *string `locationName:"baseCommitId" type:"string" required:"true"`

	// The commit ID of the destination commit specifier that was used in the merge
	// evaluation.
	//
	// DestinationCommitId is a required field
	DestinationCommitId *string `locationName:"destinationCommitId" type:"string" required:"true"`

	// The merge option or strategy used to merge the code.
	//
	// MergeOptions is a required field
	MergeOptions []MergeOptionTypeEnum `locationName:"mergeOptions" type:"list" required:"true"`

	// The commit ID of the source commit specifier that was used in the merge evaluation.
	//
	// SourceCommitId is a required field
	SourceCommitId *string `locationName:"sourceCommitId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetMergeOptionsOutput

func (GetMergeOptionsOutput) String added in v0.10.0

func (s GetMergeOptionsOutput) String() string

String returns the string representation

type GetMergeOptionsRequest added in v0.10.0

type GetMergeOptionsRequest struct {
	*aws.Request
	Input *GetMergeOptionsInput
	Copy  func(*GetMergeOptionsInput) GetMergeOptionsRequest
}

GetMergeOptionsRequest is the request type for the GetMergeOptions API operation.

func (GetMergeOptionsRequest) Send added in v0.10.0

Send marshals and sends the GetMergeOptions API request.

type GetMergeOptionsResponse added in v0.10.0

type GetMergeOptionsResponse struct {
	*GetMergeOptionsOutput
	// contains filtered or unexported fields
}

GetMergeOptionsResponse is the response type for the GetMergeOptions API operation.

func (*GetMergeOptionsResponse) SDKResponseMetdata added in v0.10.0

func (r *GetMergeOptionsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetMergeOptions request.

type GetPullRequestInput added in v0.2.0

type GetPullRequestInput struct {

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetPullRequestInput

func (GetPullRequestInput) String added in v0.2.0

func (s GetPullRequestInput) String() string

String returns the string representation

func (*GetPullRequestInput) Validate added in v0.2.0

func (s *GetPullRequestInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetPullRequestOutput added in v0.2.0

type GetPullRequestOutput struct {

	// Information about the specified pull request.
	//
	// PullRequest is a required field
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetPullRequestOutput

func (GetPullRequestOutput) String added in v0.2.0

func (s GetPullRequestOutput) String() string

String returns the string representation

type GetPullRequestRequest added in v0.2.0

type GetPullRequestRequest struct {
	*aws.Request
	Input *GetPullRequestInput
	Copy  func(*GetPullRequestInput) GetPullRequestRequest
}

GetPullRequestRequest is the request type for the GetPullRequest API operation.

func (GetPullRequestRequest) Send added in v0.2.0

Send marshals and sends the GetPullRequest API request.

type GetPullRequestResponse added in v0.9.0

type GetPullRequestResponse struct {
	*GetPullRequestOutput
	// contains filtered or unexported fields
}

GetPullRequestResponse is the response type for the GetPullRequest API operation.

func (*GetPullRequestResponse) SDKResponseMetdata added in v0.9.0

func (r *GetPullRequestResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetPullRequest request.

type GetRepositoryInput

type GetRepositoryInput struct {

	// The name of the repository to get information about.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a get repository operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryInput

func (GetRepositoryInput) String

func (s GetRepositoryInput) String() string

String returns the string representation

func (*GetRepositoryInput) Validate

func (s *GetRepositoryInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetRepositoryOutput

type GetRepositoryOutput struct {

	// Information about the repository.
	RepositoryMetadata *RepositoryMetadata `locationName:"repositoryMetadata" type:"structure"`
	// contains filtered or unexported fields
}

Represents the output of a get repository operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryOutput

func (GetRepositoryOutput) String

func (s GetRepositoryOutput) String() string

String returns the string representation

type GetRepositoryRequest

type GetRepositoryRequest struct {
	*aws.Request
	Input *GetRepositoryInput
	Copy  func(*GetRepositoryInput) GetRepositoryRequest
}

GetRepositoryRequest is the request type for the GetRepository API operation.

func (GetRepositoryRequest) Send

Send marshals and sends the GetRepository API request.

type GetRepositoryResponse added in v0.9.0

type GetRepositoryResponse struct {
	*GetRepositoryOutput
	// contains filtered or unexported fields
}

GetRepositoryResponse is the response type for the GetRepository API operation.

func (*GetRepositoryResponse) SDKResponseMetdata added in v0.9.0

func (r *GetRepositoryResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetRepository request.

type GetRepositoryTriggersInput

type GetRepositoryTriggersInput struct {

	// The name of the repository for which the trigger is configured.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a get repository triggers operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryTriggersInput

func (GetRepositoryTriggersInput) String

String returns the string representation

func (*GetRepositoryTriggersInput) Validate

func (s *GetRepositoryTriggersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type GetRepositoryTriggersOutput

type GetRepositoryTriggersOutput struct {

	// The system-generated unique ID for the trigger.
	ConfigurationId *string `locationName:"configurationId" type:"string"`

	// The JSON block of configuration information for each trigger.
	Triggers []RepositoryTrigger `locationName:"triggers" type:"list"`
	// contains filtered or unexported fields
}

Represents the output of a get repository triggers operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/GetRepositoryTriggersOutput

func (GetRepositoryTriggersOutput) String

String returns the string representation

type GetRepositoryTriggersRequest

type GetRepositoryTriggersRequest struct {
	*aws.Request
	Input *GetRepositoryTriggersInput
	Copy  func(*GetRepositoryTriggersInput) GetRepositoryTriggersRequest
}

GetRepositoryTriggersRequest is the request type for the GetRepositoryTriggers API operation.

func (GetRepositoryTriggersRequest) Send

Send marshals and sends the GetRepositoryTriggers API request.

type GetRepositoryTriggersResponse added in v0.9.0

type GetRepositoryTriggersResponse struct {
	*GetRepositoryTriggersOutput
	// contains filtered or unexported fields
}

GetRepositoryTriggersResponse is the response type for the GetRepositoryTriggers API operation.

func (*GetRepositoryTriggersResponse) SDKResponseMetdata added in v0.9.0

func (r *GetRepositoryTriggersResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the GetRepositoryTriggers request.

type IsBinaryFile added in v0.10.0

type IsBinaryFile struct {

	// The binary or non-binary status of a file in the base of a merge or pull
	// request.
	Base *bool `locationName:"base" type:"boolean"`

	// The binary or non-binary status of a file in the destination of a merge or
	// pull request.
	Destination *bool `locationName:"destination" type:"boolean"`

	// The binary or non-binary status of file in the source of a merge or pull
	// request.
	Source *bool `locationName:"source" type:"boolean"`
	// contains filtered or unexported fields
}

Information about whether a file is binary or textual in a merge or pull request operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/IsBinaryFile

func (IsBinaryFile) String added in v0.10.0

func (s IsBinaryFile) String() string

String returns the string representation

type ListBranchesInput

type ListBranchesInput struct {

	// An enumeration token that allows the operation to batch the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The name of the repository that contains the branches.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a list branches operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListBranchesInput

func (ListBranchesInput) String

func (s ListBranchesInput) String() string

String returns the string representation

func (*ListBranchesInput) Validate

func (s *ListBranchesInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListBranchesOutput

type ListBranchesOutput struct {

	// The list of branch names.
	Branches []string `locationName:"branches" type:"list"`

	// An enumeration token that returns the batch of the results.
	NextToken *string `locationName:"nextToken" type:"string"`
	// contains filtered or unexported fields
}

Represents the output of a list branches operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListBranchesOutput

func (ListBranchesOutput) String

func (s ListBranchesOutput) String() string

String returns the string representation

type ListBranchesPaginator added in v0.9.0

type ListBranchesPaginator struct {
	aws.Pager
}

ListBranchesPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListBranchesPaginator added in v0.9.0

func NewListBranchesPaginator(req ListBranchesRequest) ListBranchesPaginator

NewListBranchesRequestPaginator returns a paginator for ListBranches. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListBranchesRequest(input)
p := codecommit.NewListBranchesRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListBranchesPaginator) CurrentPage added in v0.9.0

func (p *ListBranchesPaginator) CurrentPage() *ListBranchesOutput

type ListBranchesRequest

type ListBranchesRequest struct {
	*aws.Request
	Input *ListBranchesInput
	Copy  func(*ListBranchesInput) ListBranchesRequest
}

ListBranchesRequest is the request type for the ListBranches API operation.

func (ListBranchesRequest) Send

Send marshals and sends the ListBranches API request.

type ListBranchesResponse added in v0.9.0

type ListBranchesResponse struct {
	*ListBranchesOutput
	// contains filtered or unexported fields
}

ListBranchesResponse is the response type for the ListBranches API operation.

func (*ListBranchesResponse) SDKResponseMetdata added in v0.9.0

func (r *ListBranchesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListBranches request.

type ListPullRequestsInput added in v0.2.0

type ListPullRequestsInput struct {

	// Optional. The Amazon Resource Name (ARN) of the user who created the pull
	// request. If used, this filters the results to pull requests created by that
	// user.
	AuthorArn *string `locationName:"authorArn" type:"string"`

	// A non-negative integer used to limit the number of returned results.
	MaxResults *int64 `locationName:"maxResults" type:"integer"`

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// Optional. The status of the pull request. If used, this refines the results
	// to the pull requests that match the specified status.
	PullRequestStatus PullRequestStatusEnum `locationName:"pullRequestStatus" type:"string" enum:"true"`

	// The name of the repository for which you want to list pull requests.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListPullRequestsInput

func (ListPullRequestsInput) String added in v0.2.0

func (s ListPullRequestsInput) String() string

String returns the string representation

func (*ListPullRequestsInput) Validate added in v0.2.0

func (s *ListPullRequestsInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListPullRequestsOutput added in v0.2.0

type ListPullRequestsOutput struct {

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The system-generated IDs of the pull requests.
	//
	// PullRequestIds is a required field
	PullRequestIds []string `locationName:"pullRequestIds" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListPullRequestsOutput

func (ListPullRequestsOutput) String added in v0.2.0

func (s ListPullRequestsOutput) String() string

String returns the string representation

type ListPullRequestsPaginator added in v0.9.0

type ListPullRequestsPaginator struct {
	aws.Pager
}

ListPullRequestsPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListPullRequestsPaginator added in v0.9.0

func NewListPullRequestsPaginator(req ListPullRequestsRequest) ListPullRequestsPaginator

NewListPullRequestsRequestPaginator returns a paginator for ListPullRequests. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListPullRequestsRequest(input)
p := codecommit.NewListPullRequestsRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListPullRequestsPaginator) CurrentPage added in v0.9.0

type ListPullRequestsRequest added in v0.2.0

type ListPullRequestsRequest struct {
	*aws.Request
	Input *ListPullRequestsInput
	Copy  func(*ListPullRequestsInput) ListPullRequestsRequest
}

ListPullRequestsRequest is the request type for the ListPullRequests API operation.

func (ListPullRequestsRequest) Send added in v0.2.0

Send marshals and sends the ListPullRequests API request.

type ListPullRequestsResponse added in v0.9.0

type ListPullRequestsResponse struct {
	*ListPullRequestsOutput
	// contains filtered or unexported fields
}

ListPullRequestsResponse is the response type for the ListPullRequests API operation.

func (*ListPullRequestsResponse) SDKResponseMetdata added in v0.9.0

func (r *ListPullRequestsResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListPullRequests request.

type ListRepositoriesInput

type ListRepositoriesInput struct {

	// An enumeration token that allows the operation to batch the results of the
	// operation. Batch sizes are 1,000 for list repository operations. When the
	// client sends the token back to AWS CodeCommit, another page of 1,000 records
	// is retrieved.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The order in which to sort the results of a list repositories operation.
	Order OrderEnum `locationName:"order" type:"string" enum:"true"`

	// The criteria used to sort the results of a list repositories operation.
	SortBy SortByEnum `locationName:"sortBy" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Represents the input of a list repositories operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListRepositoriesInput

func (ListRepositoriesInput) String

func (s ListRepositoriesInput) String() string

String returns the string representation

type ListRepositoriesOutput

type ListRepositoriesOutput struct {

	// An enumeration token that allows the operation to batch the results of the
	// operation. Batch sizes are 1,000 for list repository operations. When the
	// client sends the token back to AWS CodeCommit, another page of 1,000 records
	// is retrieved.
	NextToken *string `locationName:"nextToken" type:"string"`

	// Lists the repositories called by the list repositories operation.
	Repositories []RepositoryNameIdPair `locationName:"repositories" type:"list"`
	// contains filtered or unexported fields
}

Represents the output of a list repositories operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListRepositoriesOutput

func (ListRepositoriesOutput) String

func (s ListRepositoriesOutput) String() string

String returns the string representation

type ListRepositoriesPaginator added in v0.9.0

type ListRepositoriesPaginator struct {
	aws.Pager
}

ListRepositoriesPaginator is used to paginate the request. This can be done by calling Next and CurrentPage.

func NewListRepositoriesPaginator added in v0.9.0

func NewListRepositoriesPaginator(req ListRepositoriesRequest) ListRepositoriesPaginator

NewListRepositoriesRequestPaginator returns a paginator for ListRepositories. Use Next method to get the next page, and CurrentPage to get the current response page from the paginator. Next will return false, if there are no more pages, or an error was encountered.

Note: This operation can generate multiple requests to a service.

// Example iterating over pages.
req := client.ListRepositoriesRequest(input)
p := codecommit.NewListRepositoriesRequestPaginator(req)

for p.Next(context.TODO()) {
    page := p.CurrentPage()
}

if err := p.Err(); err != nil {
    return err
}

func (*ListRepositoriesPaginator) CurrentPage added in v0.9.0

type ListRepositoriesRequest

type ListRepositoriesRequest struct {
	*aws.Request
	Input *ListRepositoriesInput
	Copy  func(*ListRepositoriesInput) ListRepositoriesRequest
}

ListRepositoriesRequest is the request type for the ListRepositories API operation.

func (ListRepositoriesRequest) Send

Send marshals and sends the ListRepositories API request.

type ListRepositoriesResponse added in v0.9.0

type ListRepositoriesResponse struct {
	*ListRepositoriesOutput
	// contains filtered or unexported fields
}

ListRepositoriesResponse is the response type for the ListRepositories API operation.

func (*ListRepositoriesResponse) SDKResponseMetdata added in v0.9.0

func (r *ListRepositoriesResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListRepositories request.

type ListTagsForResourceInput added in v0.10.0

type ListTagsForResourceInput struct {

	// An enumeration token that when provided in a request, returns the next batch
	// of the results.
	NextToken *string `locationName:"nextToken" type:"string"`

	// The Amazon Resource Name (ARN) of the resource for which you want to get
	// information about tags, if any.
	//
	// ResourceArn is a required field
	ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListTagsForResourceInput

func (ListTagsForResourceInput) String added in v0.10.0

func (s ListTagsForResourceInput) String() string

String returns the string representation

func (*ListTagsForResourceInput) Validate added in v0.10.0

func (s *ListTagsForResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ListTagsForResourceOutput added in v0.10.0

type ListTagsForResourceOutput struct {

	// An enumeration token that allows the operation to batch the next results
	// of the operation.
	NextToken *string `locationName:"nextToken" type:"string"`

	// A list of tag key and value pairs associated with the specified resource.
	Tags map[string]string `locationName:"tags" type:"map"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ListTagsForResourceOutput

func (ListTagsForResourceOutput) String added in v0.10.0

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type ListTagsForResourceRequest added in v0.10.0

type ListTagsForResourceRequest struct {
	*aws.Request
	Input *ListTagsForResourceInput
	Copy  func(*ListTagsForResourceInput) ListTagsForResourceRequest
}

ListTagsForResourceRequest is the request type for the ListTagsForResource API operation.

func (ListTagsForResourceRequest) Send added in v0.10.0

Send marshals and sends the ListTagsForResource API request.

type ListTagsForResourceResponse added in v0.10.0

type ListTagsForResourceResponse struct {
	*ListTagsForResourceOutput
	// contains filtered or unexported fields
}

ListTagsForResourceResponse is the response type for the ListTagsForResource API operation.

func (*ListTagsForResourceResponse) SDKResponseMetdata added in v0.10.0

func (r *ListTagsForResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the ListTagsForResource request.

type Location added in v0.2.0

type Location struct {

	// The name of the file being compared, including its extension and subdirectory,
	// if any.
	FilePath *string `locationName:"filePath" type:"string"`

	// The position of a change within a compared file, in line number format.
	FilePosition *int64 `locationName:"filePosition" type:"long"`

	// In a comparison of commits or a pull request, whether the change is in the
	// 'before' or 'after' of that comparison.
	RelativeFileVersion RelativeFileVersionEnum `locationName:"relativeFileVersion" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Returns information about the location of a change or comment in the comparison between two commits or a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Location

func (Location) String added in v0.2.0

func (s Location) String() string

String returns the string representation

type MergeBranchesByFastForwardInput added in v0.10.0

type MergeBranchesByFastForwardInput struct {

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The name of the repository where you want to merge two branches.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`

	// The branch where the merge will be applied.
	TargetBranch *string `locationName:"targetBranch" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesByFastForwardInput

func (MergeBranchesByFastForwardInput) String added in v0.10.0

String returns the string representation

func (*MergeBranchesByFastForwardInput) Validate added in v0.10.0

func (s *MergeBranchesByFastForwardInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MergeBranchesByFastForwardOutput added in v0.10.0

type MergeBranchesByFastForwardOutput struct {

	// The commit ID of the merge in the destination or target branch.
	CommitId *string `locationName:"commitId" type:"string"`

	// The tree ID of the merge in the destination or target branch.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesByFastForwardOutput

func (MergeBranchesByFastForwardOutput) String added in v0.10.0

String returns the string representation

type MergeBranchesByFastForwardRequest added in v0.10.0

type MergeBranchesByFastForwardRequest struct {
	*aws.Request
	Input *MergeBranchesByFastForwardInput
	Copy  func(*MergeBranchesByFastForwardInput) MergeBranchesByFastForwardRequest
}

MergeBranchesByFastForwardRequest is the request type for the MergeBranchesByFastForward API operation.

func (MergeBranchesByFastForwardRequest) Send added in v0.10.0

Send marshals and sends the MergeBranchesByFastForward API request.

type MergeBranchesByFastForwardResponse added in v0.10.0

type MergeBranchesByFastForwardResponse struct {
	*MergeBranchesByFastForwardOutput
	// contains filtered or unexported fields
}

MergeBranchesByFastForwardResponse is the response type for the MergeBranchesByFastForward API operation.

func (*MergeBranchesByFastForwardResponse) SDKResponseMetdata added in v0.10.0

func (r *MergeBranchesByFastForwardResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the MergeBranchesByFastForward request.

type MergeBranchesBySquashInput added in v0.10.0

type MergeBranchesBySquashInput struct {

	// The name of the author who created the commit. This information will be used
	// as both the author and committer for the commit.
	AuthorName *string `locationName:"authorName" type:"string"`

	// The commit message for the merge.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// A list of inputs to use when resolving conflicts during a merge if AUTOMERGE
	// is chosen as the conflict resolution strategy.
	ConflictResolution *ConflictResolution `locationName:"conflictResolution" type:"structure"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The email address of the person merging the branches. This information will
	// be used in the commit information for the merge.
	Email *string `locationName:"email" type:"string"`

	// If the commit contains deletions, whether to keep a folder or folder structure
	// if the changes leave the folders empty. If this is specified as true, a .gitkeep
	// file will be created for empty folders. The default is false.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The name of the repository where you want to merge two branches.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`

	// The branch where the merge will be applied.
	TargetBranch *string `locationName:"targetBranch" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesBySquashInput

func (MergeBranchesBySquashInput) String added in v0.10.0

String returns the string representation

func (*MergeBranchesBySquashInput) Validate added in v0.10.0

func (s *MergeBranchesBySquashInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MergeBranchesBySquashOutput added in v0.10.0

type MergeBranchesBySquashOutput struct {

	// The commit ID of the merge in the destination or target branch.
	CommitId *string `locationName:"commitId" type:"string"`

	// The tree ID of the merge in the destination or target branch.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesBySquashOutput

func (MergeBranchesBySquashOutput) String added in v0.10.0

String returns the string representation

type MergeBranchesBySquashRequest added in v0.10.0

type MergeBranchesBySquashRequest struct {
	*aws.Request
	Input *MergeBranchesBySquashInput
	Copy  func(*MergeBranchesBySquashInput) MergeBranchesBySquashRequest
}

MergeBranchesBySquashRequest is the request type for the MergeBranchesBySquash API operation.

func (MergeBranchesBySquashRequest) Send added in v0.10.0

Send marshals and sends the MergeBranchesBySquash API request.

type MergeBranchesBySquashResponse added in v0.10.0

type MergeBranchesBySquashResponse struct {
	*MergeBranchesBySquashOutput
	// contains filtered or unexported fields
}

MergeBranchesBySquashResponse is the response type for the MergeBranchesBySquash API operation.

func (*MergeBranchesBySquashResponse) SDKResponseMetdata added in v0.10.0

func (r *MergeBranchesBySquashResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the MergeBranchesBySquash request.

type MergeBranchesByThreeWayInput added in v0.10.0

type MergeBranchesByThreeWayInput struct {

	// The name of the author who created the commit. This information will be used
	// as both the author and committer for the commit.
	AuthorName *string `locationName:"authorName" type:"string"`

	// The commit message to include in the commit information for the merge.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// A list of inputs to use when resolving conflicts during a merge if AUTOMERGE
	// is chosen as the conflict resolution strategy.
	ConflictResolution *ConflictResolution `locationName:"conflictResolution" type:"structure"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// DestinationCommitSpecifier is a required field
	DestinationCommitSpecifier *string `locationName:"destinationCommitSpecifier" type:"string" required:"true"`

	// The email address of the person merging the branches. This information will
	// be used in the commit information for the merge.
	Email *string `locationName:"email" type:"string"`

	// If the commit contains deletions, whether to keep a folder or folder structure
	// if the changes leave the folders empty. If this is specified as true, a .gitkeep
	// file will be created for empty folders. The default is false.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The name of the repository where you want to merge two branches.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch, tag, HEAD, or other fully qualified reference used to identify
	// a commit. For example, a branch name or a full commit ID.
	//
	// SourceCommitSpecifier is a required field
	SourceCommitSpecifier *string `locationName:"sourceCommitSpecifier" type:"string" required:"true"`

	// The branch where the merge will be applied.
	TargetBranch *string `locationName:"targetBranch" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesByThreeWayInput

func (MergeBranchesByThreeWayInput) String added in v0.10.0

String returns the string representation

func (*MergeBranchesByThreeWayInput) Validate added in v0.10.0

func (s *MergeBranchesByThreeWayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MergeBranchesByThreeWayOutput added in v0.10.0

type MergeBranchesByThreeWayOutput struct {

	// The commit ID of the merge in the destination or target branch.
	CommitId *string `locationName:"commitId" type:"string"`

	// The tree ID of the merge in the destination or target branch.
	TreeId *string `locationName:"treeId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeBranchesByThreeWayOutput

func (MergeBranchesByThreeWayOutput) String added in v0.10.0

String returns the string representation

type MergeBranchesByThreeWayRequest added in v0.10.0

type MergeBranchesByThreeWayRequest struct {
	*aws.Request
	Input *MergeBranchesByThreeWayInput
	Copy  func(*MergeBranchesByThreeWayInput) MergeBranchesByThreeWayRequest
}

MergeBranchesByThreeWayRequest is the request type for the MergeBranchesByThreeWay API operation.

func (MergeBranchesByThreeWayRequest) Send added in v0.10.0

Send marshals and sends the MergeBranchesByThreeWay API request.

type MergeBranchesByThreeWayResponse added in v0.10.0

type MergeBranchesByThreeWayResponse struct {
	*MergeBranchesByThreeWayOutput
	// contains filtered or unexported fields
}

MergeBranchesByThreeWayResponse is the response type for the MergeBranchesByThreeWay API operation.

func (*MergeBranchesByThreeWayResponse) SDKResponseMetdata added in v0.10.0

func (r *MergeBranchesByThreeWayResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the MergeBranchesByThreeWay request.

type MergeHunk added in v0.10.0

type MergeHunk struct {

	// Information about the merge hunk in the base of a merge or pull request.
	Base *MergeHunkDetail `locationName:"base" type:"structure"`

	// Information about the merge hunk in the destination of a merge or pull request.
	Destination *MergeHunkDetail `locationName:"destination" type:"structure"`

	// A Boolean value indicating whether a combination of hunks contains a conflict.
	// Conflicts occur when the same file or the same lines in a file were modified
	// in both the source and destination of a merge or pull request. Valid values
	// include true, false, and null. This will be true when the hunk represents
	// a conflict and one or more files contains a line conflict. File mode conflicts
	// in a merge will not set this to be true.
	IsConflict *bool `locationName:"isConflict" type:"boolean"`

	// Information about the merge hunk in the source of a merge or pull request.
	Source *MergeHunkDetail `locationName:"source" type:"structure"`
	// contains filtered or unexported fields
}

Information about merge hunks in a merge or pull request operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeHunk

func (MergeHunk) String added in v0.10.0

func (s MergeHunk) String() string

String returns the string representation

type MergeHunkDetail added in v0.10.0

type MergeHunkDetail struct {

	// The end position of the hunk in the merge result.
	EndLine *int64 `locationName:"endLine" type:"integer"`

	// The base-64 encoded content of the hunk merged region that might or might
	// not contain a conflict.
	HunkContent *string `locationName:"hunkContent" type:"string"`

	// The start position of the hunk in the merge result.
	StartLine *int64 `locationName:"startLine" type:"integer"`
	// contains filtered or unexported fields
}

Information about the details of a merge hunk that contains a conflict in a merge or pull request operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeHunkDetail

func (MergeHunkDetail) String added in v0.10.0

func (s MergeHunkDetail) String() string

String returns the string representation

type MergeMetadata added in v0.2.0

type MergeMetadata struct {

	// A Boolean value indicating whether the merge has been made.
	IsMerged *bool `locationName:"isMerged" type:"boolean"`

	// The commit ID for the merge commit, if any.
	MergeCommitId *string `locationName:"mergeCommitId" type:"string"`

	// The merge strategy used in the merge.
	MergeOption MergeOptionTypeEnum `locationName:"mergeOption" type:"string" enum:"true"`

	// The Amazon Resource Name (ARN) of the user who merged the branches.
	MergedBy *string `locationName:"mergedBy" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a merge or potential merge between a source reference and a destination reference in a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeMetadata

func (MergeMetadata) String added in v0.2.0

func (s MergeMetadata) String() string

String returns the string representation

type MergeOperations added in v0.10.0

type MergeOperations struct {

	// The operation on a file in the destination of a merge or pull request.
	Destination ChangeTypeEnum `locationName:"destination" type:"string" enum:"true"`

	// The operation on a file (add, modify, or delete) of a file in the source
	// of a merge or pull request.
	Source ChangeTypeEnum `locationName:"source" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about the file operation conflicts in a merge operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergeOperations

func (MergeOperations) String added in v0.10.0

func (s MergeOperations) String() string

String returns the string representation

type MergeOptionTypeEnum added in v0.2.0

type MergeOptionTypeEnum string
const (
	MergeOptionTypeEnumFastForwardMerge MergeOptionTypeEnum = "FAST_FORWARD_MERGE"
	MergeOptionTypeEnumSquashMerge      MergeOptionTypeEnum = "SQUASH_MERGE"
	MergeOptionTypeEnumThreeWayMerge    MergeOptionTypeEnum = "THREE_WAY_MERGE"
)

Enum values for MergeOptionTypeEnum

func (MergeOptionTypeEnum) MarshalValue added in v0.3.0

func (enum MergeOptionTypeEnum) MarshalValue() (string, error)

func (MergeOptionTypeEnum) MarshalValueBuf added in v0.3.0

func (enum MergeOptionTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type MergePullRequestByFastForwardInput added in v0.2.0

type MergePullRequestByFastForwardInput struct {

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The name of the repository where the pull request was created.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The full commit ID of the original or updated commit in the pull request
	// source branch. Pass this value if you want an exception thrown if the current
	// commit ID of the tip of the source branch does not match this commit ID.
	SourceCommitId *string `locationName:"sourceCommitId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestByFastForwardInput

func (MergePullRequestByFastForwardInput) String added in v0.2.0

String returns the string representation

func (*MergePullRequestByFastForwardInput) Validate added in v0.2.0

Validate inspects the fields of the type to determine if they are valid.

type MergePullRequestByFastForwardOutput added in v0.2.0

type MergePullRequestByFastForwardOutput struct {

	// Information about the specified pull request, including information about
	// the merge.
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestByFastForwardOutput

func (MergePullRequestByFastForwardOutput) String added in v0.2.0

String returns the string representation

type MergePullRequestByFastForwardRequest added in v0.2.0

type MergePullRequestByFastForwardRequest struct {
	*aws.Request
	Input *MergePullRequestByFastForwardInput
	Copy  func(*MergePullRequestByFastForwardInput) MergePullRequestByFastForwardRequest
}

MergePullRequestByFastForwardRequest is the request type for the MergePullRequestByFastForward API operation.

func (MergePullRequestByFastForwardRequest) Send added in v0.2.0

Send marshals and sends the MergePullRequestByFastForward API request.

type MergePullRequestByFastForwardResponse added in v0.9.0

type MergePullRequestByFastForwardResponse struct {
	*MergePullRequestByFastForwardOutput
	// contains filtered or unexported fields
}

MergePullRequestByFastForwardResponse is the response type for the MergePullRequestByFastForward API operation.

func (*MergePullRequestByFastForwardResponse) SDKResponseMetdata added in v0.9.0

func (r *MergePullRequestByFastForwardResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the MergePullRequestByFastForward request.

type MergePullRequestBySquashInput added in v0.10.0

type MergePullRequestBySquashInput struct {

	// The name of the author who created the commit. This information will be used
	// as both the author and committer for the commit.
	AuthorName *string `locationName:"authorName" type:"string"`

	// The commit message to include in the commit information for the merge.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// A list of inputs to use when resolving conflicts during a merge if AUTOMERGE
	// is chosen as the conflict resolution strategy.
	ConflictResolution *ConflictResolution `locationName:"conflictResolution" type:"structure"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The email address of the person merging the branches. This information will
	// be used in the commit information for the merge.
	Email *string `locationName:"email" type:"string"`

	// If the commit contains deletions, whether to keep a folder or folder structure
	// if the changes leave the folders empty. If this is specified as true, a .gitkeep
	// file will be created for empty folders. The default is false.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The name of the repository where the pull request was created.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The full commit ID of the original or updated commit in the pull request
	// source branch. Pass this value if you want an exception thrown if the current
	// commit ID of the tip of the source branch does not match this commit ID.
	SourceCommitId *string `locationName:"sourceCommitId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestBySquashInput

func (MergePullRequestBySquashInput) String added in v0.10.0

String returns the string representation

func (*MergePullRequestBySquashInput) Validate added in v0.10.0

func (s *MergePullRequestBySquashInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MergePullRequestBySquashOutput added in v0.10.0

type MergePullRequestBySquashOutput struct {

	// Returns information about a pull request.
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestBySquashOutput

func (MergePullRequestBySquashOutput) String added in v0.10.0

String returns the string representation

type MergePullRequestBySquashRequest added in v0.10.0

type MergePullRequestBySquashRequest struct {
	*aws.Request
	Input *MergePullRequestBySquashInput
	Copy  func(*MergePullRequestBySquashInput) MergePullRequestBySquashRequest
}

MergePullRequestBySquashRequest is the request type for the MergePullRequestBySquash API operation.

func (MergePullRequestBySquashRequest) Send added in v0.10.0

Send marshals and sends the MergePullRequestBySquash API request.

type MergePullRequestBySquashResponse added in v0.10.0

type MergePullRequestBySquashResponse struct {
	*MergePullRequestBySquashOutput
	// contains filtered or unexported fields
}

MergePullRequestBySquashResponse is the response type for the MergePullRequestBySquash API operation.

func (*MergePullRequestBySquashResponse) SDKResponseMetdata added in v0.10.0

func (r *MergePullRequestBySquashResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the MergePullRequestBySquash request.

type MergePullRequestByThreeWayInput added in v0.10.0

type MergePullRequestByThreeWayInput struct {

	// The name of the author who created the commit. This information will be used
	// as both the author and committer for the commit.
	AuthorName *string `locationName:"authorName" type:"string"`

	// The commit message to include in the commit information for the merge.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// The level of conflict detail to use. If unspecified, the default FILE_LEVEL
	// is used, which will return a not mergeable result if the same file has differences
	// in both branches. If LINE_LEVEL is specified, a conflict will be considered
	// not mergeable if the same file in both branches has differences on the same
	// line.
	ConflictDetailLevel ConflictDetailLevelTypeEnum `locationName:"conflictDetailLevel" type:"string" enum:"true"`

	// A list of inputs to use when resolving conflicts during a merge if AUTOMERGE
	// is chosen as the conflict resolution strategy.
	ConflictResolution *ConflictResolution `locationName:"conflictResolution" type:"structure"`

	// Specifies which branch to use when resolving conflicts, or whether to attempt
	// automatically merging two versions of a file. The default is NONE, which
	// requires any conflicts to be resolved manually before the merge operation
	// will be successful.
	ConflictResolutionStrategy ConflictResolutionStrategyTypeEnum `locationName:"conflictResolutionStrategy" type:"string" enum:"true"`

	// The email address of the person merging the branches. This information will
	// be used in the commit information for the merge.
	Email *string `locationName:"email" type:"string"`

	// If the commit contains deletions, whether to keep a folder or folder structure
	// if the changes leave the folders empty. If this is specified as true, a .gitkeep
	// file will be created for empty folders. The default is false.
	KeepEmptyFolders *bool `locationName:"keepEmptyFolders" type:"boolean"`

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The name of the repository where the pull request was created.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The full commit ID of the original or updated commit in the pull request
	// source branch. Pass this value if you want an exception thrown if the current
	// commit ID of the tip of the source branch does not match this commit ID.
	SourceCommitId *string `locationName:"sourceCommitId" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestByThreeWayInput

func (MergePullRequestByThreeWayInput) String added in v0.10.0

String returns the string representation

func (*MergePullRequestByThreeWayInput) Validate added in v0.10.0

func (s *MergePullRequestByThreeWayInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type MergePullRequestByThreeWayOutput added in v0.10.0

type MergePullRequestByThreeWayOutput struct {

	// Returns information about a pull request.
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/MergePullRequestByThreeWayOutput

func (MergePullRequestByThreeWayOutput) String added in v0.10.0

String returns the string representation

type MergePullRequestByThreeWayRequest added in v0.10.0

type MergePullRequestByThreeWayRequest struct {
	*aws.Request
	Input *MergePullRequestByThreeWayInput
	Copy  func(*MergePullRequestByThreeWayInput) MergePullRequestByThreeWayRequest
}

MergePullRequestByThreeWayRequest is the request type for the MergePullRequestByThreeWay API operation.

func (MergePullRequestByThreeWayRequest) Send added in v0.10.0

Send marshals and sends the MergePullRequestByThreeWay API request.

type MergePullRequestByThreeWayResponse added in v0.10.0

type MergePullRequestByThreeWayResponse struct {
	*MergePullRequestByThreeWayOutput
	// contains filtered or unexported fields
}

MergePullRequestByThreeWayResponse is the response type for the MergePullRequestByThreeWay API operation.

func (*MergePullRequestByThreeWayResponse) SDKResponseMetdata added in v0.10.0

func (r *MergePullRequestByThreeWayResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the MergePullRequestByThreeWay request.

type ObjectTypeEnum added in v0.10.0

type ObjectTypeEnum string
const (
	ObjectTypeEnumFile         ObjectTypeEnum = "FILE"
	ObjectTypeEnumDirectory    ObjectTypeEnum = "DIRECTORY"
	ObjectTypeEnumGitLink      ObjectTypeEnum = "GIT_LINK"
	ObjectTypeEnumSymbolicLink ObjectTypeEnum = "SYMBOLIC_LINK"
)

Enum values for ObjectTypeEnum

func (ObjectTypeEnum) MarshalValue added in v0.10.0

func (enum ObjectTypeEnum) MarshalValue() (string, error)

func (ObjectTypeEnum) MarshalValueBuf added in v0.10.0

func (enum ObjectTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type ObjectTypes added in v0.10.0

type ObjectTypes struct {

	// The type of the object in the base commit of the merge.
	Base ObjectTypeEnum `locationName:"base" type:"string" enum:"true"`

	// The type of the object in the destination branch.
	Destination ObjectTypeEnum `locationName:"destination" type:"string" enum:"true"`

	// The type of the object in the source branch.
	Source ObjectTypeEnum `locationName:"source" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about the type of an object in a merge operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ObjectTypes

func (ObjectTypes) String added in v0.10.0

func (s ObjectTypes) String() string

String returns the string representation

type OrderEnum

type OrderEnum string
const (
	OrderEnumAscending  OrderEnum = "ascending"
	OrderEnumDescending OrderEnum = "descending"
)

Enum values for OrderEnum

func (OrderEnum) MarshalValue added in v0.3.0

func (enum OrderEnum) MarshalValue() (string, error)

func (OrderEnum) MarshalValueBuf added in v0.3.0

func (enum OrderEnum) MarshalValueBuf(b []byte) ([]byte, error)

type PostCommentForComparedCommitInput added in v0.2.0

type PostCommentForComparedCommitInput struct {

	// To establish the directionality of the comparison, the full commit ID of
	// the 'after' commit.
	//
	// AfterCommitId is a required field
	AfterCommitId *string `locationName:"afterCommitId" type:"string" required:"true"`

	// To establish the directionality of the comparison, the full commit ID of
	// the 'before' commit.
	//
	// This is required for commenting on any commit unless that commit is the initial
	// commit.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// 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
	// will return information about the initial request that used that token.
	ClientRequestToken *string `locationName:"clientRequestToken" type:"string" idempotencyToken:"true"`

	// The content of the comment you want to make.
	//
	// Content is a required field
	Content *string `locationName:"content" type:"string" required:"true"`

	// The location of the comparison where you want to comment.
	Location *Location `locationName:"location" type:"structure"`

	// The name of the repository where you want to post a comment on the comparison
	// between commits.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentForComparedCommitInput

func (PostCommentForComparedCommitInput) String added in v0.2.0

String returns the string representation

func (*PostCommentForComparedCommitInput) Validate added in v0.2.0

Validate inspects the fields of the type to determine if they are valid.

type PostCommentForComparedCommitOutput added in v0.2.0

type PostCommentForComparedCommitOutput struct {

	// In the directionality you established, the blob ID of the 'after' blob.
	AfterBlobId *string `locationName:"afterBlobId" type:"string"`

	// In the directionality you established, the full commit ID of the 'after'
	// commit.
	AfterCommitId *string `locationName:"afterCommitId" type:"string"`

	// In the directionality you established, the blob ID of the 'before' blob.
	BeforeBlobId *string `locationName:"beforeBlobId" type:"string"`

	// In the directionality you established, the full commit ID of the 'before'
	// commit.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// The content of the comment you posted.
	Comment *Comment `locationName:"comment" type:"structure"`

	// The location of the comment in the comparison between the two commits.
	Location *Location `locationName:"location" type:"structure"`

	// The name of the repository where you posted a comment on the comparison between
	// commits.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentForComparedCommitOutput

func (PostCommentForComparedCommitOutput) String added in v0.2.0

String returns the string representation

type PostCommentForComparedCommitRequest added in v0.2.0

type PostCommentForComparedCommitRequest struct {
	*aws.Request
	Input *PostCommentForComparedCommitInput
	Copy  func(*PostCommentForComparedCommitInput) PostCommentForComparedCommitRequest
}

PostCommentForComparedCommitRequest is the request type for the PostCommentForComparedCommit API operation.

func (PostCommentForComparedCommitRequest) Send added in v0.2.0

Send marshals and sends the PostCommentForComparedCommit API request.

type PostCommentForComparedCommitResponse added in v0.9.0

type PostCommentForComparedCommitResponse struct {
	*PostCommentForComparedCommitOutput
	// contains filtered or unexported fields
}

PostCommentForComparedCommitResponse is the response type for the PostCommentForComparedCommit API operation.

func (*PostCommentForComparedCommitResponse) SDKResponseMetdata added in v0.9.0

func (r *PostCommentForComparedCommitResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PostCommentForComparedCommit request.

type PostCommentForPullRequestInput added in v0.2.0

type PostCommentForPullRequestInput struct {

	// The full commit ID of the commit in the source branch that is the current
	// tip of the branch for the pull request when you post the comment.
	//
	// AfterCommitId is a required field
	AfterCommitId *string `locationName:"afterCommitId" type:"string" required:"true"`

	// The full commit ID of the commit in the destination branch that was the tip
	// of the branch at the time the pull request was created.
	//
	// BeforeCommitId is a required field
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string" required:"true"`

	// 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
	// will return information about the initial request that used that token.
	ClientRequestToken *string `locationName:"clientRequestToken" type:"string" idempotencyToken:"true"`

	// The content of your comment on the change.
	//
	// Content is a required field
	Content *string `locationName:"content" type:"string" required:"true"`

	// The location of the change where you want to post your comment. If no location
	// is provided, the comment will be posted as a general comment on the pull
	// request difference between the before commit ID and the after commit ID.
	Location *Location `locationName:"location" type:"structure"`

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The name of the repository where you want to post a comment on a pull request.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentForPullRequestInput

func (PostCommentForPullRequestInput) String added in v0.2.0

String returns the string representation

func (*PostCommentForPullRequestInput) Validate added in v0.2.0

func (s *PostCommentForPullRequestInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PostCommentForPullRequestOutput added in v0.2.0

type PostCommentForPullRequestOutput struct {

	// In the directionality of the pull request, the blob ID of the 'after' blob.
	AfterBlobId *string `locationName:"afterBlobId" type:"string"`

	// The full commit ID of the commit in the destination branch where the pull
	// request will be merged.
	AfterCommitId *string `locationName:"afterCommitId" type:"string"`

	// In the directionality of the pull request, the blob ID of the 'before' blob.
	BeforeBlobId *string `locationName:"beforeBlobId" type:"string"`

	// The full commit ID of the commit in the source branch used to create the
	// pull request, or in the case of an updated pull request, the full commit
	// ID of the commit used to update the pull request.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// The content of the comment you posted.
	Comment *Comment `locationName:"comment" type:"structure"`

	// The location of the change where you posted your comment.
	Location *Location `locationName:"location" type:"structure"`

	// The system-generated ID of the pull request.
	PullRequestId *string `locationName:"pullRequestId" type:"string"`

	// The name of the repository where you posted a comment on a pull request.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentForPullRequestOutput

func (PostCommentForPullRequestOutput) String added in v0.2.0

String returns the string representation

type PostCommentForPullRequestRequest added in v0.2.0

type PostCommentForPullRequestRequest struct {
	*aws.Request
	Input *PostCommentForPullRequestInput
	Copy  func(*PostCommentForPullRequestInput) PostCommentForPullRequestRequest
}

PostCommentForPullRequestRequest is the request type for the PostCommentForPullRequest API operation.

func (PostCommentForPullRequestRequest) Send added in v0.2.0

Send marshals and sends the PostCommentForPullRequest API request.

type PostCommentForPullRequestResponse added in v0.9.0

type PostCommentForPullRequestResponse struct {
	*PostCommentForPullRequestOutput
	// contains filtered or unexported fields
}

PostCommentForPullRequestResponse is the response type for the PostCommentForPullRequest API operation.

func (*PostCommentForPullRequestResponse) SDKResponseMetdata added in v0.9.0

func (r *PostCommentForPullRequestResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PostCommentForPullRequest request.

type PostCommentReplyInput added in v0.2.0

type PostCommentReplyInput struct {

	// 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
	// will return information about the initial request that used that token.
	ClientRequestToken *string `locationName:"clientRequestToken" type:"string" idempotencyToken:"true"`

	// The contents of your reply to a comment.
	//
	// Content is a required field
	Content *string `locationName:"content" type:"string" required:"true"`

	// The system-generated ID of the comment to which you want to reply. To get
	// this ID, use GetCommentsForComparedCommit or GetCommentsForPullRequest.
	//
	// InReplyTo is a required field
	InReplyTo *string `locationName:"inReplyTo" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentReplyInput

func (PostCommentReplyInput) String added in v0.2.0

func (s PostCommentReplyInput) String() string

String returns the string representation

func (*PostCommentReplyInput) Validate added in v0.2.0

func (s *PostCommentReplyInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PostCommentReplyOutput added in v0.2.0

type PostCommentReplyOutput struct {

	// Information about the reply to a comment.
	Comment *Comment `locationName:"comment" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PostCommentReplyOutput

func (PostCommentReplyOutput) String added in v0.2.0

func (s PostCommentReplyOutput) String() string

String returns the string representation

type PostCommentReplyRequest added in v0.2.0

type PostCommentReplyRequest struct {
	*aws.Request
	Input *PostCommentReplyInput
	Copy  func(*PostCommentReplyInput) PostCommentReplyRequest
}

PostCommentReplyRequest is the request type for the PostCommentReply API operation.

func (PostCommentReplyRequest) Send added in v0.2.0

Send marshals and sends the PostCommentReply API request.

type PostCommentReplyResponse added in v0.9.0

type PostCommentReplyResponse struct {
	*PostCommentReplyOutput
	// contains filtered or unexported fields
}

PostCommentReplyResponse is the response type for the PostCommentReply API operation.

func (*PostCommentReplyResponse) SDKResponseMetdata added in v0.9.0

func (r *PostCommentReplyResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PostCommentReply request.

type PullRequest added in v0.2.0

type PullRequest struct {

	// The Amazon Resource Name (ARN) of the user who created the pull request.
	AuthorArn *string `locationName:"authorArn" type:"string"`

	// 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
	// will return information about the initial request that used that token.
	ClientRequestToken *string `locationName:"clientRequestToken" type:"string"`

	// The date and time the pull request was originally created, in timestamp format.
	CreationDate *time.Time `locationName:"creationDate" type:"timestamp"`

	// The user-defined description of the pull request. This description can be
	// used to clarify what should be reviewed and other details of the request.
	Description *string `locationName:"description" type:"string"`

	// The day and time of the last user or system activity on the pull request,
	// in timestamp format.
	LastActivityDate *time.Time `locationName:"lastActivityDate" type:"timestamp"`

	// The system-generated ID of the pull request.
	PullRequestId *string `locationName:"pullRequestId" type:"string"`

	// The status of the pull request. Pull request status can only change from
	// OPEN to CLOSED.
	PullRequestStatus PullRequestStatusEnum `locationName:"pullRequestStatus" type:"string" enum:"true"`

	// The targets of the pull request, including the source branch and destination
	// branch for the pull request.
	PullRequestTargets []PullRequestTarget `locationName:"pullRequestTargets" type:"list"`

	// The user-defined title of the pull request. This title is displayed in the
	// list of pull requests to other users of the repository.
	Title *string `locationName:"title" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequest

func (PullRequest) String added in v0.2.0

func (s PullRequest) String() string

String returns the string representation

type PullRequestCreatedEventMetadata added in v0.5.0

type PullRequestCreatedEventMetadata struct {

	// The commit ID of the tip of the branch specified as the destination branch
	// when the pull request was created.
	DestinationCommitId *string `locationName:"destinationCommitId" type:"string"`

	// The commit ID of the most recent commit that the source branch and the destination
	// branch have in common.
	MergeBase *string `locationName:"mergeBase" type:"string"`

	// The name of the repository where the pull request was created.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`

	// The commit ID on the source branch used when the pull request was created.
	SourceCommitId *string `locationName:"sourceCommitId" type:"string"`
	// contains filtered or unexported fields
}

Metadata about the pull request that is used when comparing the pull request source with its destination. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestCreatedEventMetadata

func (PullRequestCreatedEventMetadata) String added in v0.5.0

String returns the string representation

type PullRequestEvent added in v0.2.0

type PullRequestEvent struct {

	// The Amazon Resource Name (ARN) of the user whose actions resulted in the
	// event. Examples include updating the pull request with additional commits
	// or changing the status of a pull request.
	ActorArn *string `locationName:"actorArn" type:"string"`

	// The day and time of the pull request event, in timestamp format.
	EventDate *time.Time `locationName:"eventDate" type:"timestamp"`

	// Information about the source and destination branches for the pull request.
	PullRequestCreatedEventMetadata *PullRequestCreatedEventMetadata `locationName:"pullRequestCreatedEventMetadata" type:"structure"`

	// The type of the pull request event, for example a status change event (PULL_REQUEST_STATUS_CHANGED)
	// or update event (PULL_REQUEST_SOURCE_REFERENCE_UPDATED).
	PullRequestEventType PullRequestEventType `locationName:"pullRequestEventType" type:"string" enum:"true"`

	// The system-generated ID of the pull request.
	PullRequestId *string `locationName:"pullRequestId" type:"string"`

	// Information about the change in mergability state for the pull request event.
	PullRequestMergedStateChangedEventMetadata *PullRequestMergedStateChangedEventMetadata `locationName:"pullRequestMergedStateChangedEventMetadata" type:"structure"`

	// Information about the updated source branch for the pull request event.
	PullRequestSourceReferenceUpdatedEventMetadata *PullRequestSourceReferenceUpdatedEventMetadata `locationName:"pullRequestSourceReferenceUpdatedEventMetadata" type:"structure"`

	// Information about the change in status for the pull request event.
	PullRequestStatusChangedEventMetadata *PullRequestStatusChangedEventMetadata `locationName:"pullRequestStatusChangedEventMetadata" type:"structure"`
	// contains filtered or unexported fields
}

Returns information about a pull request event. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestEvent

func (PullRequestEvent) String added in v0.2.0

func (s PullRequestEvent) String() string

String returns the string representation

type PullRequestEventType added in v0.2.0

type PullRequestEventType string
const (
	PullRequestEventTypePullRequestCreated                PullRequestEventType = "PULL_REQUEST_CREATED"
	PullRequestEventTypePullRequestStatusChanged          PullRequestEventType = "PULL_REQUEST_STATUS_CHANGED"
	PullRequestEventTypePullRequestSourceReferenceUpdated PullRequestEventType = "PULL_REQUEST_SOURCE_REFERENCE_UPDATED"
	PullRequestEventTypePullRequestMergeStateChanged      PullRequestEventType = "PULL_REQUEST_MERGE_STATE_CHANGED"
)

Enum values for PullRequestEventType

func (PullRequestEventType) MarshalValue added in v0.3.0

func (enum PullRequestEventType) MarshalValue() (string, error)

func (PullRequestEventType) MarshalValueBuf added in v0.3.0

func (enum PullRequestEventType) MarshalValueBuf(b []byte) ([]byte, error)

type PullRequestMergedStateChangedEventMetadata added in v0.2.0

type PullRequestMergedStateChangedEventMetadata struct {

	// The name of the branch that the pull request will be merged into.
	DestinationReference *string `locationName:"destinationReference" type:"string"`

	// Information about the merge state change event.
	MergeMetadata *MergeMetadata `locationName:"mergeMetadata" type:"structure"`

	// The name of the repository where the pull request was created.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Returns information about the change in the merge state for a pull request event. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestMergedStateChangedEventMetadata

func (PullRequestMergedStateChangedEventMetadata) String added in v0.2.0

String returns the string representation

type PullRequestSourceReferenceUpdatedEventMetadata added in v0.2.0

type PullRequestSourceReferenceUpdatedEventMetadata struct {

	// The full commit ID of the commit in the source branch that was the tip of
	// the branch at the time the pull request was updated.
	AfterCommitId *string `locationName:"afterCommitId" type:"string"`

	// The full commit ID of the commit in the destination branch that was the tip
	// of the branch at the time the pull request was updated.
	BeforeCommitId *string `locationName:"beforeCommitId" type:"string"`

	// The commit ID of the most recent commit that the source branch and the destination
	// branch have in common.
	MergeBase *string `locationName:"mergeBase" type:"string"`

	// The name of the repository where the pull request was updated.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about an update to the source branch of a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestSourceReferenceUpdatedEventMetadata

func (PullRequestSourceReferenceUpdatedEventMetadata) String added in v0.2.0

String returns the string representation

type PullRequestStatusChangedEventMetadata added in v0.2.0

type PullRequestStatusChangedEventMetadata struct {

	// The changed status of the pull request.
	PullRequestStatus PullRequestStatusEnum `locationName:"pullRequestStatus" type:"string" enum:"true"`
	// contains filtered or unexported fields
}

Information about a change to the status of a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestStatusChangedEventMetadata

func (PullRequestStatusChangedEventMetadata) String added in v0.2.0

String returns the string representation

type PullRequestStatusEnum added in v0.2.0

type PullRequestStatusEnum string
const (
	PullRequestStatusEnumOpen   PullRequestStatusEnum = "OPEN"
	PullRequestStatusEnumClosed PullRequestStatusEnum = "CLOSED"
)

Enum values for PullRequestStatusEnum

func (PullRequestStatusEnum) MarshalValue added in v0.3.0

func (enum PullRequestStatusEnum) MarshalValue() (string, error)

func (PullRequestStatusEnum) MarshalValueBuf added in v0.3.0

func (enum PullRequestStatusEnum) MarshalValueBuf(b []byte) ([]byte, error)

type PullRequestTarget added in v0.2.0

type PullRequestTarget struct {

	// The full commit ID that is the tip of the destination branch. This is the
	// commit where the pull request was or will be merged.
	DestinationCommit *string `locationName:"destinationCommit" type:"string"`

	// The branch of the repository where the pull request changes will be merged
	// into. Also known as the destination branch.
	DestinationReference *string `locationName:"destinationReference" type:"string"`

	// The commit ID of the most recent commit that the source branch and the destination
	// branch have in common.
	MergeBase *string `locationName:"mergeBase" type:"string"`

	// Returns metadata about the state of the merge, including whether the merge
	// has been made.
	MergeMetadata *MergeMetadata `locationName:"mergeMetadata" type:"structure"`

	// The name of the repository that contains the pull request source and destination
	// branches.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`

	// The full commit ID of the tip of the source branch used to create the pull
	// request. If the pull request branch is updated by a push while the pull request
	// is open, the commit ID will change to reflect the new tip of the branch.
	SourceCommit *string `locationName:"sourceCommit" type:"string"`

	// The branch of the repository that contains the changes for the pull request.
	// Also known as the source branch.
	SourceReference *string `locationName:"sourceReference" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a pull request target. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PullRequestTarget

func (PullRequestTarget) String added in v0.2.0

func (s PullRequestTarget) String() string

String returns the string representation

type PutFileEntry added in v0.8.0

type PutFileEntry struct {

	// The content of the file, if a source file is not specified.
	//
	// FileContent is automatically base64 encoded/decoded by the SDK.
	FileContent []byte `locationName:"fileContent" type:"blob"`

	// The extrapolated file mode permissions for the file. Valid values include
	// EXECUTABLE and NORMAL.
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" enum:"true"`

	// The full path to the file in the repository, including the name of the file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The name and full path of the file that contains the changes you want to
	// make as part of the commit, if you are not providing the file content directly.
	SourceFile *SourceFileSpecifier `locationName:"sourceFile" type:"structure"`
	// contains filtered or unexported fields
}

Information about a file that will be added or updated as part of a commit. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutFileEntry

func (PutFileEntry) String added in v0.8.0

func (s PutFileEntry) String() string

String returns the string representation

func (*PutFileEntry) Validate added in v0.8.0

func (s *PutFileEntry) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutFileInput added in v0.3.0

type PutFileInput struct {

	// The name of the branch where you want to add or update the file. If this
	// is an empty repository, this branch will be created.
	//
	// BranchName is a required field
	BranchName *string `locationName:"branchName" min:"1" type:"string" required:"true"`

	// A message about why this file was added or updated. While optional, adding
	// a message is strongly encouraged in order to provide a more useful commit
	// history for your repository.
	CommitMessage *string `locationName:"commitMessage" type:"string"`

	// An email address for the person adding or updating the file.
	Email *string `locationName:"email" type:"string"`

	// The content of the file, in binary object format.
	//
	// FileContent is automatically base64 encoded/decoded by the SDK.
	//
	// FileContent is a required field
	FileContent []byte `locationName:"fileContent" type:"blob" required:"true"`

	// The file mode permissions of the blob. Valid file mode permissions are listed
	// below.
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" enum:"true"`

	// The name of the file you want to add or update, including the relative path
	// to the file in the repository.
	//
	// If the path does not currently exist in the repository, the path will be
	// created as part of adding the file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The name of the person adding or updating the file. While optional, adding
	// a name is strongly encouraged in order to provide a more useful commit history
	// for your repository.
	Name *string `locationName:"name" type:"string"`

	// The full commit ID of the head commit in the branch where you want to add
	// or update the file. If this is an empty repository, no commit ID is required.
	// If this is not an empty repository, a commit ID is required.
	//
	// The commit ID must match the ID of the head commit at the time of the operation,
	// or an error will occur, and the file will not be added or updated.
	ParentCommitId *string `locationName:"parentCommitId" type:"string"`

	// The name of the repository where you want to add or update the file.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutFileInput

func (PutFileInput) String added in v0.3.0

func (s PutFileInput) String() string

String returns the string representation

func (*PutFileInput) Validate added in v0.3.0

func (s *PutFileInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutFileOutput added in v0.3.0

type PutFileOutput struct {

	// The ID of the blob, which is its SHA-1 pointer.
	//
	// BlobId is a required field
	BlobId *string `locationName:"blobId" type:"string" required:"true"`

	// The full SHA of the commit that contains this file change.
	//
	// CommitId is a required field
	CommitId *string `locationName:"commitId" type:"string" required:"true"`

	// The full SHA-1 pointer of the tree information for the commit that contains
	// this file change.
	//
	// TreeId is a required field
	TreeId *string `locationName:"treeId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutFileOutput

func (PutFileOutput) String added in v0.3.0

func (s PutFileOutput) String() string

String returns the string representation

type PutFileRequest added in v0.3.0

type PutFileRequest struct {
	*aws.Request
	Input *PutFileInput
	Copy  func(*PutFileInput) PutFileRequest
}

PutFileRequest is the request type for the PutFile API operation.

func (PutFileRequest) Send added in v0.3.0

Send marshals and sends the PutFile API request.

type PutFileResponse added in v0.9.0

type PutFileResponse struct {
	*PutFileOutput
	// contains filtered or unexported fields
}

PutFileResponse is the response type for the PutFile API operation.

func (*PutFileResponse) SDKResponseMetdata added in v0.9.0

func (r *PutFileResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PutFile request.

type PutRepositoryTriggersInput

type PutRepositoryTriggersInput struct {

	// The name of the repository where you want to create or update the trigger.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The JSON block of configuration information for each trigger.
	//
	// Triggers is a required field
	Triggers []RepositoryTrigger `locationName:"triggers" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents the input ofa put repository triggers operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutRepositoryTriggersInput

func (PutRepositoryTriggersInput) String

String returns the string representation

func (*PutRepositoryTriggersInput) Validate

func (s *PutRepositoryTriggersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type PutRepositoryTriggersOutput

type PutRepositoryTriggersOutput struct {

	// The system-generated unique ID for the create or update operation.
	ConfigurationId *string `locationName:"configurationId" type:"string"`
	// contains filtered or unexported fields
}

Represents the output of a put repository triggers operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/PutRepositoryTriggersOutput

func (PutRepositoryTriggersOutput) String

String returns the string representation

type PutRepositoryTriggersRequest

type PutRepositoryTriggersRequest struct {
	*aws.Request
	Input *PutRepositoryTriggersInput
	Copy  func(*PutRepositoryTriggersInput) PutRepositoryTriggersRequest
}

PutRepositoryTriggersRequest is the request type for the PutRepositoryTriggers API operation.

func (PutRepositoryTriggersRequest) Send

Send marshals and sends the PutRepositoryTriggers API request.

type PutRepositoryTriggersResponse added in v0.9.0

type PutRepositoryTriggersResponse struct {
	*PutRepositoryTriggersOutput
	// contains filtered or unexported fields
}

PutRepositoryTriggersResponse is the response type for the PutRepositoryTriggers API operation.

func (*PutRepositoryTriggersResponse) SDKResponseMetdata added in v0.9.0

func (r *PutRepositoryTriggersResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the PutRepositoryTriggers request.

type RelativeFileVersionEnum added in v0.2.0

type RelativeFileVersionEnum string
const (
	RelativeFileVersionEnumBefore RelativeFileVersionEnum = "BEFORE"
	RelativeFileVersionEnumAfter  RelativeFileVersionEnum = "AFTER"
)

Enum values for RelativeFileVersionEnum

func (RelativeFileVersionEnum) MarshalValue added in v0.3.0

func (enum RelativeFileVersionEnum) MarshalValue() (string, error)

func (RelativeFileVersionEnum) MarshalValueBuf added in v0.3.0

func (enum RelativeFileVersionEnum) MarshalValueBuf(b []byte) ([]byte, error)

type ReplaceContentEntry added in v0.10.0

type ReplaceContentEntry struct {

	// The base-64 encoded content to use when the replacement type is USE_NEW_CONTENT.
	//
	// Content is automatically base64 encoded/decoded by the SDK.
	Content []byte `locationName:"content" type:"blob"`

	// The file mode to apply during conflict resoltion.
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" enum:"true"`

	// The path of the conflicting file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// The replacement type to use when determining how to resolve the conflict.
	//
	// ReplacementType is a required field
	ReplacementType ReplacementTypeEnum `locationName:"replacementType" type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Information about a replacement content entry in the conflict of a merge or pull request operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/ReplaceContentEntry

func (ReplaceContentEntry) String added in v0.10.0

func (s ReplaceContentEntry) String() string

String returns the string representation

func (*ReplaceContentEntry) Validate added in v0.10.0

func (s *ReplaceContentEntry) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type ReplacementTypeEnum added in v0.10.0

type ReplacementTypeEnum string
const (
	ReplacementTypeEnumKeepBase        ReplacementTypeEnum = "KEEP_BASE"
	ReplacementTypeEnumKeepSource      ReplacementTypeEnum = "KEEP_SOURCE"
	ReplacementTypeEnumKeepDestination ReplacementTypeEnum = "KEEP_DESTINATION"
	ReplacementTypeEnumUseNewContent   ReplacementTypeEnum = "USE_NEW_CONTENT"
)

Enum values for ReplacementTypeEnum

func (ReplacementTypeEnum) MarshalValue added in v0.10.0

func (enum ReplacementTypeEnum) MarshalValue() (string, error)

func (ReplacementTypeEnum) MarshalValueBuf added in v0.10.0

func (enum ReplacementTypeEnum) MarshalValueBuf(b []byte) ([]byte, error)

type RepositoryMetadata

type RepositoryMetadata struct {

	// The ID of the AWS account associated with the repository.
	AccountId *string `locationName:"accountId" type:"string"`

	// The Amazon Resource Name (ARN) of the repository.
	Arn *string `type:"string"`

	// The URL to use for cloning the repository over HTTPS.
	CloneUrlHttp *string `locationName:"cloneUrlHttp" type:"string"`

	// The URL to use for cloning the repository over SSH.
	CloneUrlSsh *string `locationName:"cloneUrlSsh" type:"string"`

	// The date and time the repository was created, in timestamp format.
	CreationDate *time.Time `locationName:"creationDate" type:"timestamp"`

	// The repository's default branch name.
	DefaultBranch *string `locationName:"defaultBranch" min:"1" type:"string"`

	// The date and time the repository was last modified, in timestamp format.
	LastModifiedDate *time.Time `locationName:"lastModifiedDate" type:"timestamp"`

	// A comment or description about the repository.
	RepositoryDescription *string `locationName:"repositoryDescription" type:"string"`

	// The ID of the repository.
	RepositoryId *string `locationName:"repositoryId" type:"string"`

	// The repository's name.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a repository. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryMetadata

func (RepositoryMetadata) String

func (s RepositoryMetadata) String() string

String returns the string representation

type RepositoryNameIdPair

type RepositoryNameIdPair struct {

	// The ID associated with the repository.
	RepositoryId *string `locationName:"repositoryId" type:"string"`

	// The name associated with the repository.
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string"`
	// contains filtered or unexported fields
}

Information about a repository name and ID. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryNameIdPair

func (RepositoryNameIdPair) String

func (s RepositoryNameIdPair) String() string

String returns the string representation

type RepositoryTrigger

type RepositoryTrigger struct {

	// The branches that will be included in the trigger configuration. If you specify
	// an empty array, the trigger will apply to all branches.
	//
	// Although no content is required in the array, you must include the array
	// itself.
	Branches []string `locationName:"branches" type:"list"`

	// Any custom data associated with the trigger that will be included in the
	// information sent to the target of the trigger.
	CustomData *string `locationName:"customData" type:"string"`

	// The ARN of the resource that is the target for a trigger. For example, the
	// ARN of a topic in Amazon SNS.
	//
	// DestinationArn is a required field
	DestinationArn *string `locationName:"destinationArn" type:"string" required:"true"`

	// The repository events that will cause the trigger to run actions in another
	// service, such as sending a notification through Amazon SNS.
	//
	// The valid value "all" cannot be used with any other values.
	//
	// Events is a required field
	Events []RepositoryTriggerEventEnum `locationName:"events" type:"list" required:"true"`

	// The name of the trigger.
	//
	// Name is a required field
	Name *string `locationName:"name" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Information about a trigger for a repository. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryTrigger

func (RepositoryTrigger) String

func (s RepositoryTrigger) String() string

String returns the string representation

func (*RepositoryTrigger) Validate

func (s *RepositoryTrigger) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type RepositoryTriggerEventEnum

type RepositoryTriggerEventEnum string
const (
	RepositoryTriggerEventEnumAll             RepositoryTriggerEventEnum = "all"
	RepositoryTriggerEventEnumUpdateReference RepositoryTriggerEventEnum = "updateReference"
	RepositoryTriggerEventEnumCreateReference RepositoryTriggerEventEnum = "createReference"
	RepositoryTriggerEventEnumDeleteReference RepositoryTriggerEventEnum = "deleteReference"
)

Enum values for RepositoryTriggerEventEnum

func (RepositoryTriggerEventEnum) MarshalValue added in v0.3.0

func (enum RepositoryTriggerEventEnum) MarshalValue() (string, error)

func (RepositoryTriggerEventEnum) MarshalValueBuf added in v0.3.0

func (enum RepositoryTriggerEventEnum) MarshalValueBuf(b []byte) ([]byte, error)

type RepositoryTriggerExecutionFailure

type RepositoryTriggerExecutionFailure struct {

	// Additional message information about the trigger that did not run.
	FailureMessage *string `locationName:"failureMessage" type:"string"`

	// The name of the trigger that did not run.
	Trigger *string `locationName:"trigger" type:"string"`
	// contains filtered or unexported fields
}

A trigger failed to run. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/RepositoryTriggerExecutionFailure

func (RepositoryTriggerExecutionFailure) String

String returns the string representation

type SetFileModeEntry added in v0.8.0

type SetFileModeEntry struct {

	// The file mode for the file.
	//
	// FileMode is a required field
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" required:"true" enum:"true"`

	// The full path to the file, including the name of the file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Information about the file mode changes. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/SetFileModeEntry

func (SetFileModeEntry) String added in v0.8.0

func (s SetFileModeEntry) String() string

String returns the string representation

func (*SetFileModeEntry) Validate added in v0.8.0

func (s *SetFileModeEntry) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SortByEnum

type SortByEnum string
const (
	SortByEnumRepositoryName   SortByEnum = "repositoryName"
	SortByEnumLastModifiedDate SortByEnum = "lastModifiedDate"
)

Enum values for SortByEnum

func (SortByEnum) MarshalValue added in v0.3.0

func (enum SortByEnum) MarshalValue() (string, error)

func (SortByEnum) MarshalValueBuf added in v0.3.0

func (enum SortByEnum) MarshalValueBuf(b []byte) ([]byte, error)

type SourceFileSpecifier added in v0.8.0

type SourceFileSpecifier struct {

	// The full path to the file, including the name of the file.
	//
	// FilePath is a required field
	FilePath *string `locationName:"filePath" type:"string" required:"true"`

	// Whether to remove the source file from the parent commit.
	IsMove *bool `locationName:"isMove" type:"boolean"`
	// contains filtered or unexported fields
}

Information about a source file that is part of changes made in a commit. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/SourceFileSpecifier

func (SourceFileSpecifier) String added in v0.8.0

func (s SourceFileSpecifier) String() string

String returns the string representation

func (*SourceFileSpecifier) Validate added in v0.8.0

func (s *SourceFileSpecifier) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type SubModule added in v0.5.0

type SubModule struct {

	// The fully qualified path to the folder that contains the reference to the
	// submodule.
	AbsolutePath *string `locationName:"absolutePath" type:"string"`

	// The commit ID that contains the reference to the submodule.
	CommitId *string `locationName:"commitId" type:"string"`

	// The relative path of the submodule from the folder where the query originated.
	RelativePath *string `locationName:"relativePath" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a submodule reference in a repository folder. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/SubModule

func (SubModule) String added in v0.5.0

func (s SubModule) String() string

String returns the string representation

type SymbolicLink struct {

	// The fully-qualified path to the folder that contains the symbolic link.
	AbsolutePath *string `locationName:"absolutePath" type:"string"`

	// The blob ID that contains the information about the symbolic link.
	BlobId *string `locationName:"blobId" type:"string"`

	// The file mode permissions of the blob that cotains information about the
	// symbolic link.
	FileMode FileModeTypeEnum `locationName:"fileMode" type:"string" enum:"true"`

	// The relative path of the symbolic link from the folder where the query originated.
	RelativePath *string `locationName:"relativePath" type:"string"`
	// contains filtered or unexported fields
}

Returns information about a symbolic link in a repository folder. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/SymbolicLink

func (SymbolicLink) String added in v0.5.0

func (s SymbolicLink) String() string

String returns the string representation

type TagResourceInput added in v0.10.0

type TagResourceInput struct {

	// The Amazon Resource Name (ARN) of the resource to which you want to add or
	// update tags.
	//
	// ResourceArn is a required field
	ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"`

	// The key-value pair to use when tagging this repository.
	//
	// Tags is a required field
	Tags map[string]string `locationName:"tags" type:"map" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TagResourceInput

func (TagResourceInput) String added in v0.10.0

func (s TagResourceInput) String() string

String returns the string representation

func (*TagResourceInput) Validate added in v0.10.0

func (s *TagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TagResourceOutput added in v0.10.0

type TagResourceOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TagResourceOutput

func (TagResourceOutput) String added in v0.10.0

func (s TagResourceOutput) String() string

String returns the string representation

type TagResourceRequest added in v0.10.0

type TagResourceRequest struct {
	*aws.Request
	Input *TagResourceInput
	Copy  func(*TagResourceInput) TagResourceRequest
}

TagResourceRequest is the request type for the TagResource API operation.

func (TagResourceRequest) Send added in v0.10.0

Send marshals and sends the TagResource API request.

type TagResourceResponse added in v0.10.0

type TagResourceResponse struct {
	*TagResourceOutput
	// contains filtered or unexported fields
}

TagResourceResponse is the response type for the TagResource API operation.

func (*TagResourceResponse) SDKResponseMetdata added in v0.10.0

func (r *TagResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the TagResource request.

type Target added in v0.2.0

type Target struct {

	// The branch of the repository where the pull request changes will be merged
	// into. Also known as the destination branch.
	DestinationReference *string `locationName:"destinationReference" type:"string"`

	// The name of the repository that contains the pull request.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The branch of the repository that contains the changes for the pull request.
	// Also known as the source branch.
	//
	// SourceReference is a required field
	SourceReference *string `locationName:"sourceReference" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Returns information about a target for a pull request. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/Target

func (Target) String added in v0.2.0

func (s Target) String() string

String returns the string representation

func (*Target) Validate added in v0.2.0

func (s *Target) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TestRepositoryTriggersInput

type TestRepositoryTriggersInput struct {

	// The name of the repository in which to test the triggers.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`

	// The list of triggers to test.
	//
	// Triggers is a required field
	Triggers []RepositoryTrigger `locationName:"triggers" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of a test repository triggers operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TestRepositoryTriggersInput

func (TestRepositoryTriggersInput) String

String returns the string representation

func (*TestRepositoryTriggersInput) Validate

func (s *TestRepositoryTriggersInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type TestRepositoryTriggersOutput

type TestRepositoryTriggersOutput struct {

	// The list of triggers that were not able to be tested. This list provides
	// the names of the triggers that could not be tested, separated by commas.
	FailedExecutions []RepositoryTriggerExecutionFailure `locationName:"failedExecutions" type:"list"`

	// The list of triggers that were successfully tested. This list provides the
	// names of the triggers that were successfully tested, separated by commas.
	SuccessfulExecutions []string `locationName:"successfulExecutions" type:"list"`
	// contains filtered or unexported fields
}

Represents the output of a test repository triggers operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/TestRepositoryTriggersOutput

func (TestRepositoryTriggersOutput) String

String returns the string representation

type TestRepositoryTriggersRequest

type TestRepositoryTriggersRequest struct {
	*aws.Request
	Input *TestRepositoryTriggersInput
	Copy  func(*TestRepositoryTriggersInput) TestRepositoryTriggersRequest
}

TestRepositoryTriggersRequest is the request type for the TestRepositoryTriggers API operation.

func (TestRepositoryTriggersRequest) Send

Send marshals and sends the TestRepositoryTriggers API request.

type TestRepositoryTriggersResponse added in v0.9.0

type TestRepositoryTriggersResponse struct {
	*TestRepositoryTriggersOutput
	// contains filtered or unexported fields
}

TestRepositoryTriggersResponse is the response type for the TestRepositoryTriggers API operation.

func (*TestRepositoryTriggersResponse) SDKResponseMetdata added in v0.9.0

func (r *TestRepositoryTriggersResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the TestRepositoryTriggers request.

type UntagResourceInput added in v0.10.0

type UntagResourceInput struct {

	// The Amazon Resource Name (ARN) of the resource to which you want to remove
	// tags.
	//
	// ResourceArn is a required field
	ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"`

	// The tag key for each tag that you want to remove from the resource.
	//
	// TagKeys is a required field
	TagKeys []string `locationName:"tagKeys" type:"list" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UntagResourceInput

func (UntagResourceInput) String added in v0.10.0

func (s UntagResourceInput) String() string

String returns the string representation

func (*UntagResourceInput) Validate added in v0.10.0

func (s *UntagResourceInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UntagResourceOutput added in v0.10.0

type UntagResourceOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UntagResourceOutput

func (UntagResourceOutput) String added in v0.10.0

func (s UntagResourceOutput) String() string

String returns the string representation

type UntagResourceRequest added in v0.10.0

type UntagResourceRequest struct {
	*aws.Request
	Input *UntagResourceInput
	Copy  func(*UntagResourceInput) UntagResourceRequest
}

UntagResourceRequest is the request type for the UntagResource API operation.

func (UntagResourceRequest) Send added in v0.10.0

Send marshals and sends the UntagResource API request.

type UntagResourceResponse added in v0.10.0

type UntagResourceResponse struct {
	*UntagResourceOutput
	// contains filtered or unexported fields
}

UntagResourceResponse is the response type for the UntagResource API operation.

func (*UntagResourceResponse) SDKResponseMetdata added in v0.10.0

func (r *UntagResourceResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UntagResource request.

type UpdateCommentInput added in v0.2.0

type UpdateCommentInput struct {

	// The system-generated ID of the comment you want to update. To get this ID,
	// use GetCommentsForComparedCommit or GetCommentsForPullRequest.
	//
	// CommentId is a required field
	CommentId *string `locationName:"commentId" type:"string" required:"true"`

	// The updated content with which you want to replace the existing content of
	// the comment.
	//
	// Content is a required field
	Content *string `locationName:"content" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateCommentInput

func (UpdateCommentInput) String added in v0.2.0

func (s UpdateCommentInput) String() string

String returns the string representation

func (*UpdateCommentInput) Validate added in v0.2.0

func (s *UpdateCommentInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateCommentOutput added in v0.2.0

type UpdateCommentOutput struct {

	// Information about the updated comment.
	Comment *Comment `locationName:"comment" type:"structure"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateCommentOutput

func (UpdateCommentOutput) String added in v0.2.0

func (s UpdateCommentOutput) String() string

String returns the string representation

type UpdateCommentRequest added in v0.2.0

type UpdateCommentRequest struct {
	*aws.Request
	Input *UpdateCommentInput
	Copy  func(*UpdateCommentInput) UpdateCommentRequest
}

UpdateCommentRequest is the request type for the UpdateComment API operation.

func (UpdateCommentRequest) Send added in v0.2.0

Send marshals and sends the UpdateComment API request.

type UpdateCommentResponse added in v0.9.0

type UpdateCommentResponse struct {
	*UpdateCommentOutput
	// contains filtered or unexported fields
}

UpdateCommentResponse is the response type for the UpdateComment API operation.

func (*UpdateCommentResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateCommentResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateComment request.

type UpdateDefaultBranchInput

type UpdateDefaultBranchInput struct {

	// The name of the branch to set as the default.
	//
	// DefaultBranchName is a required field
	DefaultBranchName *string `locationName:"defaultBranchName" min:"1" type:"string" required:"true"`

	// The name of the repository to set or change the default branch for.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of an update default branch operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateDefaultBranchInput

func (UpdateDefaultBranchInput) String

func (s UpdateDefaultBranchInput) String() string

String returns the string representation

func (*UpdateDefaultBranchInput) Validate

func (s *UpdateDefaultBranchInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateDefaultBranchOutput

type UpdateDefaultBranchOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateDefaultBranchOutput

func (UpdateDefaultBranchOutput) String

func (s UpdateDefaultBranchOutput) String() string

String returns the string representation

type UpdateDefaultBranchRequest

type UpdateDefaultBranchRequest struct {
	*aws.Request
	Input *UpdateDefaultBranchInput
	Copy  func(*UpdateDefaultBranchInput) UpdateDefaultBranchRequest
}

UpdateDefaultBranchRequest is the request type for the UpdateDefaultBranch API operation.

func (UpdateDefaultBranchRequest) Send

Send marshals and sends the UpdateDefaultBranch API request.

type UpdateDefaultBranchResponse added in v0.9.0

type UpdateDefaultBranchResponse struct {
	*UpdateDefaultBranchOutput
	// contains filtered or unexported fields
}

UpdateDefaultBranchResponse is the response type for the UpdateDefaultBranch API operation.

func (*UpdateDefaultBranchResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateDefaultBranchResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateDefaultBranch request.

type UpdatePullRequestDescriptionInput added in v0.2.0

type UpdatePullRequestDescriptionInput struct {

	// The updated content of the description for the pull request. This content
	// will replace the existing description.
	//
	// Description is a required field
	Description *string `locationName:"description" type:"string" required:"true"`

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestDescriptionInput

func (UpdatePullRequestDescriptionInput) String added in v0.2.0

String returns the string representation

func (*UpdatePullRequestDescriptionInput) Validate added in v0.2.0

Validate inspects the fields of the type to determine if they are valid.

type UpdatePullRequestDescriptionOutput added in v0.2.0

type UpdatePullRequestDescriptionOutput struct {

	// Information about the updated pull request.
	//
	// PullRequest is a required field
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestDescriptionOutput

func (UpdatePullRequestDescriptionOutput) String added in v0.2.0

String returns the string representation

type UpdatePullRequestDescriptionRequest added in v0.2.0

type UpdatePullRequestDescriptionRequest struct {
	*aws.Request
	Input *UpdatePullRequestDescriptionInput
	Copy  func(*UpdatePullRequestDescriptionInput) UpdatePullRequestDescriptionRequest
}

UpdatePullRequestDescriptionRequest is the request type for the UpdatePullRequestDescription API operation.

func (UpdatePullRequestDescriptionRequest) Send added in v0.2.0

Send marshals and sends the UpdatePullRequestDescription API request.

type UpdatePullRequestDescriptionResponse added in v0.9.0

type UpdatePullRequestDescriptionResponse struct {
	*UpdatePullRequestDescriptionOutput
	// contains filtered or unexported fields
}

UpdatePullRequestDescriptionResponse is the response type for the UpdatePullRequestDescription API operation.

func (*UpdatePullRequestDescriptionResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdatePullRequestDescriptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdatePullRequestDescription request.

type UpdatePullRequestStatusInput added in v0.2.0

type UpdatePullRequestStatusInput struct {

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The status of the pull request. The only valid operations are to update the
	// status from OPEN to OPEN, OPEN to CLOSED or from from CLOSED to CLOSED.
	//
	// PullRequestStatus is a required field
	PullRequestStatus PullRequestStatusEnum `locationName:"pullRequestStatus" type:"string" required:"true" enum:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestStatusInput

func (UpdatePullRequestStatusInput) String added in v0.2.0

String returns the string representation

func (*UpdatePullRequestStatusInput) Validate added in v0.2.0

func (s *UpdatePullRequestStatusInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdatePullRequestStatusOutput added in v0.2.0

type UpdatePullRequestStatusOutput struct {

	// Information about the pull request.
	//
	// PullRequest is a required field
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestStatusOutput

func (UpdatePullRequestStatusOutput) String added in v0.2.0

String returns the string representation

type UpdatePullRequestStatusRequest added in v0.2.0

type UpdatePullRequestStatusRequest struct {
	*aws.Request
	Input *UpdatePullRequestStatusInput
	Copy  func(*UpdatePullRequestStatusInput) UpdatePullRequestStatusRequest
}

UpdatePullRequestStatusRequest is the request type for the UpdatePullRequestStatus API operation.

func (UpdatePullRequestStatusRequest) Send added in v0.2.0

Send marshals and sends the UpdatePullRequestStatus API request.

type UpdatePullRequestStatusResponse added in v0.9.0

type UpdatePullRequestStatusResponse struct {
	*UpdatePullRequestStatusOutput
	// contains filtered or unexported fields
}

UpdatePullRequestStatusResponse is the response type for the UpdatePullRequestStatus API operation.

func (*UpdatePullRequestStatusResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdatePullRequestStatusResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdatePullRequestStatus request.

type UpdatePullRequestTitleInput added in v0.2.0

type UpdatePullRequestTitleInput struct {

	// The system-generated ID of the pull request. To get this ID, use ListPullRequests.
	//
	// PullRequestId is a required field
	PullRequestId *string `locationName:"pullRequestId" type:"string" required:"true"`

	// The updated title of the pull request. This will replace the existing title.
	//
	// Title is a required field
	Title *string `locationName:"title" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestTitleInput

func (UpdatePullRequestTitleInput) String added in v0.2.0

String returns the string representation

func (*UpdatePullRequestTitleInput) Validate added in v0.2.0

func (s *UpdatePullRequestTitleInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdatePullRequestTitleOutput added in v0.2.0

type UpdatePullRequestTitleOutput struct {

	// Information about the updated pull request.
	//
	// PullRequest is a required field
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure" required:"true"`
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdatePullRequestTitleOutput

func (UpdatePullRequestTitleOutput) String added in v0.2.0

String returns the string representation

type UpdatePullRequestTitleRequest added in v0.2.0

type UpdatePullRequestTitleRequest struct {
	*aws.Request
	Input *UpdatePullRequestTitleInput
	Copy  func(*UpdatePullRequestTitleInput) UpdatePullRequestTitleRequest
}

UpdatePullRequestTitleRequest is the request type for the UpdatePullRequestTitle API operation.

func (UpdatePullRequestTitleRequest) Send added in v0.2.0

Send marshals and sends the UpdatePullRequestTitle API request.

type UpdatePullRequestTitleResponse added in v0.9.0

type UpdatePullRequestTitleResponse struct {
	*UpdatePullRequestTitleOutput
	// contains filtered or unexported fields
}

UpdatePullRequestTitleResponse is the response type for the UpdatePullRequestTitle API operation.

func (*UpdatePullRequestTitleResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdatePullRequestTitleResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdatePullRequestTitle request.

type UpdateRepositoryDescriptionInput

type UpdateRepositoryDescriptionInput struct {

	// The new comment or description for the specified repository. Repository descriptions
	// are limited to 1,000 characters.
	RepositoryDescription *string `locationName:"repositoryDescription" type:"string"`

	// The name of the repository to set or change the comment or description for.
	//
	// RepositoryName is a required field
	RepositoryName *string `locationName:"repositoryName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of an update repository description operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryDescriptionInput

func (UpdateRepositoryDescriptionInput) String

String returns the string representation

func (*UpdateRepositoryDescriptionInput) Validate

Validate inspects the fields of the type to determine if they are valid.

type UpdateRepositoryDescriptionOutput

type UpdateRepositoryDescriptionOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryDescriptionOutput

func (UpdateRepositoryDescriptionOutput) String

String returns the string representation

type UpdateRepositoryDescriptionRequest

type UpdateRepositoryDescriptionRequest struct {
	*aws.Request
	Input *UpdateRepositoryDescriptionInput
	Copy  func(*UpdateRepositoryDescriptionInput) UpdateRepositoryDescriptionRequest
}

UpdateRepositoryDescriptionRequest is the request type for the UpdateRepositoryDescription API operation.

func (UpdateRepositoryDescriptionRequest) Send

Send marshals and sends the UpdateRepositoryDescription API request.

type UpdateRepositoryDescriptionResponse added in v0.9.0

type UpdateRepositoryDescriptionResponse struct {
	*UpdateRepositoryDescriptionOutput
	// contains filtered or unexported fields
}

UpdateRepositoryDescriptionResponse is the response type for the UpdateRepositoryDescription API operation.

func (*UpdateRepositoryDescriptionResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateRepositoryDescriptionResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateRepositoryDescription request.

type UpdateRepositoryNameInput

type UpdateRepositoryNameInput struct {

	// The new name for the repository.
	//
	// NewName is a required field
	NewName *string `locationName:"newName" min:"1" type:"string" required:"true"`

	// The existing name of the repository.
	//
	// OldName is a required field
	OldName *string `locationName:"oldName" min:"1" type:"string" required:"true"`
	// contains filtered or unexported fields
}

Represents the input of an update repository description operation. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryNameInput

func (UpdateRepositoryNameInput) String

func (s UpdateRepositoryNameInput) String() string

String returns the string representation

func (*UpdateRepositoryNameInput) Validate

func (s *UpdateRepositoryNameInput) Validate() error

Validate inspects the fields of the type to determine if they are valid.

type UpdateRepositoryNameOutput

type UpdateRepositoryNameOutput struct {
	// contains filtered or unexported fields
}

Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UpdateRepositoryNameOutput

func (UpdateRepositoryNameOutput) String

String returns the string representation

type UpdateRepositoryNameRequest

type UpdateRepositoryNameRequest struct {
	*aws.Request
	Input *UpdateRepositoryNameInput
	Copy  func(*UpdateRepositoryNameInput) UpdateRepositoryNameRequest
}

UpdateRepositoryNameRequest is the request type for the UpdateRepositoryName API operation.

func (UpdateRepositoryNameRequest) Send

Send marshals and sends the UpdateRepositoryName API request.

type UpdateRepositoryNameResponse added in v0.9.0

type UpdateRepositoryNameResponse struct {
	*UpdateRepositoryNameOutput
	// contains filtered or unexported fields
}

UpdateRepositoryNameResponse is the response type for the UpdateRepositoryName API operation.

func (*UpdateRepositoryNameResponse) SDKResponseMetdata added in v0.9.0

func (r *UpdateRepositoryNameResponse) SDKResponseMetdata() *aws.Response

SDKResponseMetdata returns the response metadata for the UpdateRepositoryName request.

type UserInfo

type UserInfo struct {

	// The date when the specified commit was commited, in timestamp format with
	// GMT offset.
	Date *string `locationName:"date" type:"string"`

	// The email address associated with the user who made the commit, if any.
	Email *string `locationName:"email" type:"string"`

	// The name of the user who made the specified commit.
	Name *string `locationName:"name" type:"string"`
	// contains filtered or unexported fields
}

Information about the user who made a specified commit. Please also see https://docs.aws.amazon.com/goto/WebAPI/codecommit-2015-04-13/UserInfo

func (UserInfo) String

func (s UserInfo) String() string

String returns the string representation

Source Files

Directories

Path Synopsis
Package codecommitiface provides an interface to enable mocking the AWS CodeCommit service client for testing your code.
Package codecommitiface provides an interface to enable mocking the AWS CodeCommit service client for testing your code.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL