codecommit

package
v1.99.1 Latest Latest
Warning

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

Go to latest
Published: Feb 10, 2020 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Overview

Package codecommit provides the client and types for making API requests to AWS 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:

  • 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 contact AWS 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 AWS CodeCommit client CodeCommit 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 (
	// ChangeTypeEnumA is a ChangeTypeEnum enum value
	ChangeTypeEnumA = "A"

	// ChangeTypeEnumM is a ChangeTypeEnum enum value
	ChangeTypeEnumM = "M"

	// ChangeTypeEnumD is a ChangeTypeEnum enum value
	ChangeTypeEnumD = "D"
)
View Source
const (
	// ConflictDetailLevelTypeEnumFileLevel is a ConflictDetailLevelTypeEnum enum value
	ConflictDetailLevelTypeEnumFileLevel = "FILE_LEVEL"

	// ConflictDetailLevelTypeEnumLineLevel is a ConflictDetailLevelTypeEnum enum value
	ConflictDetailLevelTypeEnumLineLevel = "LINE_LEVEL"
)
View Source
const (
	// ConflictResolutionStrategyTypeEnumNone is a ConflictResolutionStrategyTypeEnum enum value
	ConflictResolutionStrategyTypeEnumNone = "NONE"

	// ConflictResolutionStrategyTypeEnumAcceptSource is a ConflictResolutionStrategyTypeEnum enum value
	ConflictResolutionStrategyTypeEnumAcceptSource = "ACCEPT_SOURCE"

	// ConflictResolutionStrategyTypeEnumAcceptDestination is a ConflictResolutionStrategyTypeEnum enum value
	ConflictResolutionStrategyTypeEnumAcceptDestination = "ACCEPT_DESTINATION"

	// ConflictResolutionStrategyTypeEnumAutomerge is a ConflictResolutionStrategyTypeEnum enum value
	ConflictResolutionStrategyTypeEnumAutomerge = "AUTOMERGE"
)
View Source
const (
	// FileModeTypeEnumExecutable is a FileModeTypeEnum enum value
	FileModeTypeEnumExecutable = "EXECUTABLE"

	// FileModeTypeEnumNormal is a FileModeTypeEnum enum value
	FileModeTypeEnumNormal = "NORMAL"

	// FileModeTypeEnumSymlink is a FileModeTypeEnum enum value
	FileModeTypeEnumSymlink = "SYMLINK"
)
View Source
const (
	// MergeOptionTypeEnumFastForwardMerge is a MergeOptionTypeEnum enum value
	MergeOptionTypeEnumFastForwardMerge = "FAST_FORWARD_MERGE"

	// MergeOptionTypeEnumSquashMerge is a MergeOptionTypeEnum enum value
	MergeOptionTypeEnumSquashMerge = "SQUASH_MERGE"

	// MergeOptionTypeEnumThreeWayMerge is a MergeOptionTypeEnum enum value
	MergeOptionTypeEnumThreeWayMerge = "THREE_WAY_MERGE"
)
View Source
const (
	// ObjectTypeEnumFile is a ObjectTypeEnum enum value
	ObjectTypeEnumFile = "FILE"

	// ObjectTypeEnumDirectory is a ObjectTypeEnum enum value
	ObjectTypeEnumDirectory = "DIRECTORY"

	// ObjectTypeEnumGitLink is a ObjectTypeEnum enum value
	ObjectTypeEnumGitLink = "GIT_LINK"

	// ObjectTypeEnumSymbolicLink is a ObjectTypeEnum enum value
	ObjectTypeEnumSymbolicLink = "SYMBOLIC_LINK"
)
View Source
const (
	// OrderEnumAscending is a OrderEnum enum value
	OrderEnumAscending = "ascending"

	// OrderEnumDescending is a OrderEnum enum value
	OrderEnumDescending = "descending"
)
View Source
const (
	// PullRequestEventTypePullRequestCreated is a PullRequestEventType enum value
	PullRequestEventTypePullRequestCreated = "PULL_REQUEST_CREATED"

	// PullRequestEventTypePullRequestStatusChanged is a PullRequestEventType enum value
	PullRequestEventTypePullRequestStatusChanged = "PULL_REQUEST_STATUS_CHANGED"

	// PullRequestEventTypePullRequestSourceReferenceUpdated is a PullRequestEventType enum value
	PullRequestEventTypePullRequestSourceReferenceUpdated = "PULL_REQUEST_SOURCE_REFERENCE_UPDATED"

	// PullRequestEventTypePullRequestMergeStateChanged is a PullRequestEventType enum value
	PullRequestEventTypePullRequestMergeStateChanged = "PULL_REQUEST_MERGE_STATE_CHANGED"
)
View Source
const (
	// PullRequestStatusEnumOpen is a PullRequestStatusEnum enum value
	PullRequestStatusEnumOpen = "OPEN"

	// PullRequestStatusEnumClosed is a PullRequestStatusEnum enum value
	PullRequestStatusEnumClosed = "CLOSED"
)
View Source
const (
	// RelativeFileVersionEnumBefore is a RelativeFileVersionEnum enum value
	RelativeFileVersionEnumBefore = "BEFORE"

	// RelativeFileVersionEnumAfter is a RelativeFileVersionEnum enum value
	RelativeFileVersionEnumAfter = "AFTER"
)
View Source
const (
	// ReplacementTypeEnumKeepBase is a ReplacementTypeEnum enum value
	ReplacementTypeEnumKeepBase = "KEEP_BASE"

	// ReplacementTypeEnumKeepSource is a ReplacementTypeEnum enum value
	ReplacementTypeEnumKeepSource = "KEEP_SOURCE"

	// ReplacementTypeEnumKeepDestination is a ReplacementTypeEnum enum value
	ReplacementTypeEnumKeepDestination = "KEEP_DESTINATION"

	// ReplacementTypeEnumUseNewContent is a ReplacementTypeEnum enum value
	ReplacementTypeEnumUseNewContent = "USE_NEW_CONTENT"
)
View Source
const (
	// RepositoryTriggerEventEnumAll is a RepositoryTriggerEventEnum enum value
	RepositoryTriggerEventEnumAll = "all"

	// RepositoryTriggerEventEnumUpdateReference is a RepositoryTriggerEventEnum enum value
	RepositoryTriggerEventEnumUpdateReference = "updateReference"

	// RepositoryTriggerEventEnumCreateReference is a RepositoryTriggerEventEnum enum value
	RepositoryTriggerEventEnumCreateReference = "createReference"

	// RepositoryTriggerEventEnumDeleteReference is a RepositoryTriggerEventEnum enum value
	RepositoryTriggerEventEnumDeleteReference = "deleteReference"
)
View Source
const (
	// SortByEnumRepositoryName is a SortByEnum enum value
	SortByEnumRepositoryName = "repositoryName"

	// SortByEnumLastModifiedDate is a SortByEnum enum value
	SortByEnumLastModifiedDate = "lastModifiedDate"
)
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"

	// ErrCodeClientRequestTokenRequiredException for service response error code
	// "ClientRequestTokenRequiredException".
	//
	// 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.
	ErrCodeClientRequestTokenRequiredException = "ClientRequestTokenRequiredException"

	// 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"

	// 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"

	// 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"

	// 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"
)
View Source
const (
	ServiceName = "codecommit" // Name of service.
	EndpointsID = ServiceName  // ID to lookup a service endpoint with.
	ServiceID   = "CodeCommit" // ServiceID is a unique identifer of a specific service.
)

Service information constants

Variables

This section is empty.

Functions

This section is empty.

Types

type BatchDescribeMergeConflictsError added in v1.99.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.

func (BatchDescribeMergeConflictsError) GoString added in v1.99.0

GoString returns the string representation

func (*BatchDescribeMergeConflictsError) SetExceptionName added in v1.99.0

SetExceptionName sets the ExceptionName field's value.

func (*BatchDescribeMergeConflictsError) SetFilePath added in v1.99.0

SetFilePath sets the FilePath field's value.

func (*BatchDescribeMergeConflictsError) SetMessage added in v1.99.0

SetMessage sets the Message field's value.

func (BatchDescribeMergeConflictsError) String added in v1.99.0

String returns the string representation

type BatchDescribeMergeConflictsInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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 *string `locationName:"mergeOption" type:"string" required:"true" enum:"MergeOptionTypeEnum"`

	// 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
}

func (BatchDescribeMergeConflictsInput) GoString added in v1.99.0

GoString returns the string representation

func (*BatchDescribeMergeConflictsInput) SetConflictDetailLevel added in v1.99.0

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*BatchDescribeMergeConflictsInput) SetConflictResolutionStrategy added in v1.99.0

func (s *BatchDescribeMergeConflictsInput) SetConflictResolutionStrategy(v string) *BatchDescribeMergeConflictsInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*BatchDescribeMergeConflictsInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *BatchDescribeMergeConflictsInput) SetDestinationCommitSpecifier(v string) *BatchDescribeMergeConflictsInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*BatchDescribeMergeConflictsInput) SetFilePaths added in v1.99.0

SetFilePaths sets the FilePaths field's value.

func (*BatchDescribeMergeConflictsInput) SetMaxConflictFiles added in v1.99.0

SetMaxConflictFiles sets the MaxConflictFiles field's value.

func (*BatchDescribeMergeConflictsInput) SetMaxMergeHunks added in v1.99.0

SetMaxMergeHunks sets the MaxMergeHunks field's value.

func (*BatchDescribeMergeConflictsInput) SetMergeOption added in v1.99.0

SetMergeOption sets the MergeOption field's value.

func (*BatchDescribeMergeConflictsInput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*BatchDescribeMergeConflictsInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*BatchDescribeMergeConflictsInput) SetSourceCommitSpecifier added in v1.99.0

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (BatchDescribeMergeConflictsInput) String added in v1.99.0

String returns the string representation

func (*BatchDescribeMergeConflictsInput) Validate added in v1.99.0

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

type BatchDescribeMergeConflictsOutput added in v1.99.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
}

func (BatchDescribeMergeConflictsOutput) GoString added in v1.99.0

GoString returns the string representation

func (*BatchDescribeMergeConflictsOutput) SetBaseCommitId added in v1.99.0

SetBaseCommitId sets the BaseCommitId field's value.

func (*BatchDescribeMergeConflictsOutput) SetConflicts added in v1.99.0

SetConflicts sets the Conflicts field's value.

func (*BatchDescribeMergeConflictsOutput) SetDestinationCommitId added in v1.99.0

SetDestinationCommitId sets the DestinationCommitId field's value.

func (*BatchDescribeMergeConflictsOutput) SetErrors added in v1.99.0

SetErrors sets the Errors field's value.

func (*BatchDescribeMergeConflictsOutput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*BatchDescribeMergeConflictsOutput) SetSourceCommitId added in v1.99.0

SetSourceCommitId sets the SourceCommitId field's value.

func (BatchDescribeMergeConflictsOutput) String added in v1.99.0

String returns the string representation

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.

func (BatchGetRepositoriesInput) GoString

func (s BatchGetRepositoriesInput) GoString() string

GoString returns the string representation

func (*BatchGetRepositoriesInput) SetRepositoryNames added in v1.5.0

func (s *BatchGetRepositoriesInput) SetRepositoryNames(v []*string) *BatchGetRepositoriesInput

SetRepositoryNames sets the RepositoryNames field's value.

func (BatchGetRepositoriesInput) String

func (s BatchGetRepositoriesInput) String() string

String returns the string representation

func (*BatchGetRepositoriesInput) Validate added in v1.1.21

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.

func (BatchGetRepositoriesOutput) GoString

func (s BatchGetRepositoriesOutput) GoString() string

GoString returns the string representation

func (*BatchGetRepositoriesOutput) SetRepositories added in v1.5.0

SetRepositories sets the Repositories field's value.

func (*BatchGetRepositoriesOutput) SetRepositoriesNotFound added in v1.5.0

func (s *BatchGetRepositoriesOutput) SetRepositoriesNotFound(v []*string) *BatchGetRepositoriesOutput

SetRepositoriesNotFound sets the RepositoriesNotFound field's value.

func (BatchGetRepositoriesOutput) String

String returns the string representation

type BlobMetadata added in v1.6.16

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.

func (BlobMetadata) GoString added in v1.6.16

func (s BlobMetadata) GoString() string

GoString returns the string representation

func (*BlobMetadata) SetBlobId added in v1.6.16

func (s *BlobMetadata) SetBlobId(v string) *BlobMetadata

SetBlobId sets the BlobId field's value.

func (*BlobMetadata) SetMode added in v1.6.16

func (s *BlobMetadata) SetMode(v string) *BlobMetadata

SetMode sets the Mode field's value.

func (*BlobMetadata) SetPath added in v1.6.16

func (s *BlobMetadata) SetPath(v string) *BlobMetadata

SetPath sets the Path field's value.

func (BlobMetadata) String added in v1.6.16

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.

func (BranchInfo) GoString

func (s BranchInfo) GoString() string

GoString returns the string representation

func (*BranchInfo) SetBranchName added in v1.5.0

func (s *BranchInfo) SetBranchName(v string) *BranchInfo

SetBranchName sets the BranchName field's value.

func (*BranchInfo) SetCommitId added in v1.5.0

func (s *BranchInfo) SetCommitId(v string) *BranchInfo

SetCommitId sets the CommitId field's value.

func (BranchInfo) String

func (s BranchInfo) String() string

String returns the string representation

type CodeCommit

type CodeCommit struct {
	*client.Client
}

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

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

func New

func New(p client.ConfigProvider, cfgs ...*aws.Config) *CodeCommit

New creates a new instance of the CodeCommit client with a session. If additional configuration is needed for the client instance use the optional aws.Config parameter to add your extra config.

Example:

// Create a CodeCommit client from just a session.
svc := codecommit.New(mySession)

// Create a CodeCommit client with additional configuration
svc := codecommit.New(mySession, aws.NewConfig().WithRegion("us-west-2"))

func (*CodeCommit) BatchDescribeMergeConflicts added in v1.99.0

func (c *CodeCommit) BatchDescribeMergeConflicts(input *BatchDescribeMergeConflictsInput) (*BatchDescribeMergeConflictsOutput, error)

BatchDescribeMergeConflicts 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation BatchDescribeMergeConflicts for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeMergeOptionRequiredException "MergeOptionRequiredException" A merge option or stategy is required, and none was provided.

  • ErrCodeInvalidMergeOptionException "InvalidMergeOptionException" The specified merge option is not valid for this operation. Not all merge strategies are supported for all operations.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeInvalidMaxConflictFilesException "InvalidMaxConflictFilesException" The specified value for the number of conflict files to return is not valid.

  • ErrCodeInvalidMaxMergeHunksException "InvalidMaxMergeHunksException" The specified value for the number of merge hunks to return is not valid.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) BatchDescribeMergeConflictsRequest added in v1.99.0

func (c *CodeCommit) BatchDescribeMergeConflictsRequest(input *BatchDescribeMergeConflictsInput) (req *request.Request, output *BatchDescribeMergeConflictsOutput)

BatchDescribeMergeConflictsRequest generates a "aws/request.Request" representing the client's request for the BatchDescribeMergeConflicts operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchDescribeMergeConflicts for more information on using the BatchDescribeMergeConflicts API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchDescribeMergeConflictsRequest method.
req, resp := client.BatchDescribeMergeConflictsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) BatchDescribeMergeConflictsWithContext added in v1.99.0

func (c *CodeCommit) BatchDescribeMergeConflictsWithContext(ctx aws.Context, input *BatchDescribeMergeConflictsInput, opts ...request.Option) (*BatchDescribeMergeConflictsOutput, error)

BatchDescribeMergeConflictsWithContext is the same as BatchDescribeMergeConflicts with the addition of the ability to pass a context and additional request options.

See BatchDescribeMergeConflicts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) BatchGetRepositories

func (c *CodeCommit) BatchGetRepositories(input *BatchGetRepositoriesInput) (*BatchGetRepositoriesOutput, error)

BatchGetRepositories 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation BatchGetRepositories for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNamesRequiredException "RepositoryNamesRequiredException" A repository names object is required but was not specified.

  • ErrCodeMaximumRepositoryNamesExceededException "MaximumRepositoryNamesExceededException" The maximum number of allowed repository names was exceeded. Currently, this number is 25.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) BatchGetRepositoriesRequest

func (c *CodeCommit) BatchGetRepositoriesRequest(input *BatchGetRepositoriesInput) (req *request.Request, output *BatchGetRepositoriesOutput)

BatchGetRepositoriesRequest generates a "aws/request.Request" representing the client's request for the BatchGetRepositories operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See BatchGetRepositories for more information on using the BatchGetRepositories API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the BatchGetRepositoriesRequest method.
req, resp := client.BatchGetRepositoriesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) BatchGetRepositoriesWithContext added in v1.8.0

func (c *CodeCommit) BatchGetRepositoriesWithContext(ctx aws.Context, input *BatchGetRepositoriesInput, opts ...request.Option) (*BatchGetRepositoriesOutput, error)

BatchGetRepositoriesWithContext is the same as BatchGetRepositories with the addition of the ability to pass a context and additional request options.

See BatchGetRepositories for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) CreateBranch

func (c *CodeCommit) CreateBranch(input *CreateBranchInput) (*CreateBranchOutput, error)

CreateBranch 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation CreateBranch for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeBranchNameExistsException "BranchNameExistsException" The specified branch name already exists.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeCommitIdRequiredException "CommitIdRequiredException" A commit ID was not specified.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) CreateBranchRequest

func (c *CodeCommit) CreateBranchRequest(input *CreateBranchInput) (req *request.Request, output *CreateBranchOutput)

CreateBranchRequest generates a "aws/request.Request" representing the client's request for the CreateBranch operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateBranch for more information on using the CreateBranch API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateBranchRequest method.
req, resp := client.CreateBranchRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) CreateBranchWithContext added in v1.8.0

func (c *CodeCommit) CreateBranchWithContext(ctx aws.Context, input *CreateBranchInput, opts ...request.Option) (*CreateBranchOutput, error)

CreateBranchWithContext is the same as CreateBranch with the addition of the ability to pass a context and additional request options.

See CreateBranch for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) CreateCommit added in v1.99.0

func (c *CodeCommit) CreateCommit(input *CreateCommitInput) (*CreateCommitOutput, error)

CreateCommit API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation CreateCommit for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeParentCommitIdRequiredException "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).

  • ErrCodeInvalidParentCommitIdException "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.

  • ErrCodeParentCommitDoesNotExistException "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.

  • ErrCodeParentCommitIdOutdatedException "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.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeBranchNameIsTagNameException "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.

  • ErrCodeFileEntryRequiredException "FileEntryRequiredException" The commit cannot be created because no files have been specified as added, updated, or changed (PutFile or DeleteFile) for the commit.

  • ErrCodeMaximumFileEntriesExceededException "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.

  • ErrCodePutFileEntryConflictException "PutFileEntryConflictException" The commit cannot be created because one or more files specified in the commit reference both a file and a folder.

  • ErrCodeSourceFileOrContentRequiredException "SourceFileOrContentRequiredException" The commit cannot be created because no source files or file content have been specified for the commit.

  • ErrCodeFileContentAndSourceFileSpecifiedException "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.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeSamePathRequestException "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.

  • ErrCodeFileDoesNotExistException "FileDoesNotExistException" The specified file does not exist. Verify that you have provided the correct name of the file, including its full path and extension.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodeInvalidDeletionParameterException "InvalidDeletionParameterException" The specified deletion parameter is not valid.

  • ErrCodeRestrictedSourceFileException "RestrictedSourceFileException" The commit cannot be created because one of the changes specifies copying or moving a .gitkeep file.

  • ErrCodeFileModeRequiredException "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.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeNoChangeException "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.

  • ErrCodeFileNameConflictsWithDirectoryNameException "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.

  • ErrCodeDirectoryNameConflictsWithFileNameException "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.

  • ErrCodeFilePathConflictsWithSubmodulePathException "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.

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

func (*CodeCommit) CreateCommitRequest added in v1.99.0

func (c *CodeCommit) CreateCommitRequest(input *CreateCommitInput) (req *request.Request, output *CreateCommitOutput)

CreateCommitRequest generates a "aws/request.Request" representing the client's request for the CreateCommit operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateCommit for more information on using the CreateCommit API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateCommitRequest method.
req, resp := client.CreateCommitRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) CreateCommitWithContext added in v1.99.0

func (c *CodeCommit) CreateCommitWithContext(ctx aws.Context, input *CreateCommitInput, opts ...request.Option) (*CreateCommitOutput, error)

CreateCommitWithContext is the same as CreateCommit with the addition of the ability to pass a context and additional request options.

See CreateCommit for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) CreatePullRequest added in v1.12.31

func (c *CodeCommit) CreatePullRequest(input *CreatePullRequestInput) (*CreatePullRequestOutput, error)

CreatePullRequest API operation for AWS CodeCommit.

Creates a pull request in the specified repository.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation CreatePullRequest for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeClientRequestTokenRequiredException "ClientRequestTokenRequiredException" 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.

  • ErrCodeInvalidClientRequestTokenException "InvalidClientRequestTokenException" The client request token is not valid.

  • ErrCodeIdempotencyParameterMismatchException "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.

  • ErrCodeReferenceNameRequiredException "ReferenceNameRequiredException" A reference name is required, but none was provided.

  • ErrCodeInvalidReferenceNameException "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.

  • ErrCodeReferenceDoesNotExistException "ReferenceDoesNotExistException" The specified reference does not exist. You must provide a full commit ID.

  • ErrCodeReferenceTypeNotSupportedException "ReferenceTypeNotSupportedException" The specified reference is not a supported type.

  • ErrCodeTitleRequiredException "TitleRequiredException" A pull request title is required. It cannot be empty or null.

  • ErrCodeInvalidTitleException "InvalidTitleException" The title of the pull request is not valid. Pull request titles cannot exceed 100 characters in length.

  • ErrCodeInvalidDescriptionException "InvalidDescriptionException" The pull request description is not valid. Descriptions are limited to 1,000 characters in length.

  • ErrCodeTargetsRequiredException "TargetsRequiredException" An array of target objects is required. It cannot be empty or null.

  • ErrCodeInvalidTargetsException "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.

  • ErrCodeTargetRequiredException "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.

  • ErrCodeInvalidTargetException "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.

  • ErrCodeMultipleRepositoriesInPullRequestException "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.

  • ErrCodeMaximumOpenPullRequestsExceededException "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.

  • ErrCodeSourceAndDestinationAreSameException "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.

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

func (*CodeCommit) CreatePullRequestRequest added in v1.12.31

func (c *CodeCommit) CreatePullRequestRequest(input *CreatePullRequestInput) (req *request.Request, output *CreatePullRequestOutput)

CreatePullRequestRequest generates a "aws/request.Request" representing the client's request for the CreatePullRequest operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreatePullRequest for more information on using the CreatePullRequest API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreatePullRequestRequest method.
req, resp := client.CreatePullRequestRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) CreatePullRequestWithContext added in v1.12.31

func (c *CodeCommit) CreatePullRequestWithContext(ctx aws.Context, input *CreatePullRequestInput, opts ...request.Option) (*CreatePullRequestOutput, error)

CreatePullRequestWithContext is the same as CreatePullRequest with the addition of the ability to pass a context and additional request options.

See CreatePullRequest for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) CreateRepository

func (c *CodeCommit) CreateRepository(input *CreateRepositoryInput) (*CreateRepositoryOutput, error)

CreateRepository API operation for AWS CodeCommit.

Creates a new, empty repository.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation CreateRepository for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameExistsException "RepositoryNameExistsException" The specified repository name already exists.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeInvalidRepositoryDescriptionException "InvalidRepositoryDescriptionException" The specified repository description is not valid.

  • ErrCodeRepositoryLimitExceededException "RepositoryLimitExceededException" A repository resource limit was exceeded.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeInvalidTagsMapException "InvalidTagsMapException" The map of tags is not valid.

  • ErrCodeTooManyTagsException "TooManyTagsException" The maximum number of tags for an AWS CodeCommit resource has been exceeded.

  • ErrCodeInvalidSystemTagUsageException "InvalidSystemTagUsageException" The specified tag is not valid. Key names cannot be prefixed with aws:.

  • ErrCodeTagPolicyException "TagPolicyException" The tag policy is not valid.

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

func (*CodeCommit) CreateRepositoryRequest

func (c *CodeCommit) CreateRepositoryRequest(input *CreateRepositoryInput) (req *request.Request, output *CreateRepositoryOutput)

CreateRepositoryRequest generates a "aws/request.Request" representing the client's request for the CreateRepository operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateRepository for more information on using the CreateRepository API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateRepositoryRequest method.
req, resp := client.CreateRepositoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) CreateRepositoryWithContext added in v1.8.0

func (c *CodeCommit) CreateRepositoryWithContext(ctx aws.Context, input *CreateRepositoryInput, opts ...request.Option) (*CreateRepositoryOutput, error)

CreateRepositoryWithContext is the same as CreateRepository with the addition of the ability to pass a context and additional request options.

See CreateRepository for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) CreateUnreferencedMergeCommit added in v1.99.0

func (c *CodeCommit) CreateUnreferencedMergeCommit(input *CreateUnreferencedMergeCommitInput) (*CreateUnreferencedMergeCommitOutput, error)

CreateUnreferencedMergeCommit 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation CreateUnreferencedMergeCommit for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeMergeOptionRequiredException "MergeOptionRequiredException" A merge option or stategy is required, and none was provided.

  • ErrCodeInvalidMergeOptionException "InvalidMergeOptionException" The specified merge option is not valid for this operation. Not all merge strategies are supported for all operations.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeInvalidConflictResolutionException "InvalidConflictResolutionException" The specified conflict resolution list is not valid.

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodeMaximumConflictResolutionEntriesExceededException "MaximumConflictResolutionEntriesExceededException" The number of allowed conflict resolution entries was exceeded.

  • ErrCodeMultipleConflictResolutionEntriesException "MultipleConflictResolutionEntriesException" More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.

  • ErrCodeReplacementTypeRequiredException "ReplacementTypeRequiredException" A replacement type is required.

  • ErrCodeInvalidReplacementTypeException "InvalidReplacementTypeException" Automerge was specified for resolving the conflict, but the specified replacement type is not valid.

  • ErrCodeReplacementContentRequiredException "ReplacementContentRequiredException" USE_NEW_CONTENT was specified but no replacement content has been provided.

  • ErrCodeInvalidReplacementContentException "InvalidReplacementContentException" Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeFileModeRequiredException "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.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) CreateUnreferencedMergeCommitRequest added in v1.99.0

func (c *CodeCommit) CreateUnreferencedMergeCommitRequest(input *CreateUnreferencedMergeCommitInput) (req *request.Request, output *CreateUnreferencedMergeCommitOutput)

CreateUnreferencedMergeCommitRequest generates a "aws/request.Request" representing the client's request for the CreateUnreferencedMergeCommit operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See CreateUnreferencedMergeCommit for more information on using the CreateUnreferencedMergeCommit API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the CreateUnreferencedMergeCommitRequest method.
req, resp := client.CreateUnreferencedMergeCommitRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) CreateUnreferencedMergeCommitWithContext added in v1.99.0

func (c *CodeCommit) CreateUnreferencedMergeCommitWithContext(ctx aws.Context, input *CreateUnreferencedMergeCommitInput, opts ...request.Option) (*CreateUnreferencedMergeCommitOutput, error)

CreateUnreferencedMergeCommitWithContext is the same as CreateUnreferencedMergeCommit with the addition of the ability to pass a context and additional request options.

See CreateUnreferencedMergeCommit for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DeleteBranch added in v1.12.10

func (c *CodeCommit) DeleteBranch(input *DeleteBranchInput) (*DeleteBranchOutput, error)

DeleteBranch API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation DeleteBranch for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeDefaultBranchCannotBeDeletedException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) DeleteBranchRequest added in v1.12.10

func (c *CodeCommit) DeleteBranchRequest(input *DeleteBranchInput) (req *request.Request, output *DeleteBranchOutput)

DeleteBranchRequest generates a "aws/request.Request" representing the client's request for the DeleteBranch operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteBranch for more information on using the DeleteBranch API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteBranchRequest method.
req, resp := client.DeleteBranchRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) DeleteBranchWithContext added in v1.12.10

func (c *CodeCommit) DeleteBranchWithContext(ctx aws.Context, input *DeleteBranchInput, opts ...request.Option) (*DeleteBranchOutput, error)

DeleteBranchWithContext is the same as DeleteBranch with the addition of the ability to pass a context and additional request options.

See DeleteBranch for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DeleteCommentContent added in v1.12.31

func (c *CodeCommit) DeleteCommentContent(input *DeleteCommentContentInput) (*DeleteCommentContentOutput, error)

DeleteCommentContent API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation DeleteCommentContent for usage and error information.

Returned Error Codes:

  • ErrCodeCommentDoesNotExistException "CommentDoesNotExistException" No comment exists with the provided ID. Verify that you have provided the correct ID, and then try again.

  • ErrCodeCommentIdRequiredException "CommentIdRequiredException" The comment ID is missing or null. A comment ID is required.

  • ErrCodeInvalidCommentIdException "InvalidCommentIdException" The comment ID is not in a valid format. Make sure that you have provided the full comment ID.

  • ErrCodeCommentDeletedException "CommentDeletedException" This comment has already been deleted. You cannot edit or delete a deleted comment.

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

func (*CodeCommit) DeleteCommentContentRequest added in v1.12.31

func (c *CodeCommit) DeleteCommentContentRequest(input *DeleteCommentContentInput) (req *request.Request, output *DeleteCommentContentOutput)

DeleteCommentContentRequest generates a "aws/request.Request" representing the client's request for the DeleteCommentContent operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteCommentContent for more information on using the DeleteCommentContent API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteCommentContentRequest method.
req, resp := client.DeleteCommentContentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) DeleteCommentContentWithContext added in v1.12.31

func (c *CodeCommit) DeleteCommentContentWithContext(ctx aws.Context, input *DeleteCommentContentInput, opts ...request.Option) (*DeleteCommentContentOutput, error)

DeleteCommentContentWithContext is the same as DeleteCommentContent with the addition of the ability to pass a context and additional request options.

See DeleteCommentContent for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DeleteFile added in v1.99.0

func (c *CodeCommit) DeleteFile(input *DeleteFileInput) (*DeleteFileOutput, error)

DeleteFile 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation DeleteFile for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeParentCommitIdRequiredException "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).

  • ErrCodeInvalidParentCommitIdException "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.

  • ErrCodeParentCommitDoesNotExistException "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.

  • ErrCodeParentCommitIdOutdatedException "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.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFileDoesNotExistException "FileDoesNotExistException" The specified file does not exist. Verify that you have provided the correct name of the file, including its full path and extension.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeBranchNameIsTagNameException "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.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) DeleteFileRequest added in v1.99.0

func (c *CodeCommit) DeleteFileRequest(input *DeleteFileInput) (req *request.Request, output *DeleteFileOutput)

DeleteFileRequest generates a "aws/request.Request" representing the client's request for the DeleteFile operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteFile for more information on using the DeleteFile API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteFileRequest method.
req, resp := client.DeleteFileRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) DeleteFileWithContext added in v1.99.0

func (c *CodeCommit) DeleteFileWithContext(ctx aws.Context, input *DeleteFileInput, opts ...request.Option) (*DeleteFileOutput, error)

DeleteFileWithContext is the same as DeleteFile with the addition of the ability to pass a context and additional request options.

See DeleteFile for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DeleteRepository

func (c *CodeCommit) DeleteRepository(input *DeleteRepositoryInput) (*DeleteRepositoryOutput, error)

DeleteRepository 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation DeleteRepository for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) DeleteRepositoryRequest

func (c *CodeCommit) DeleteRepositoryRequest(input *DeleteRepositoryInput) (req *request.Request, output *DeleteRepositoryOutput)

DeleteRepositoryRequest generates a "aws/request.Request" representing the client's request for the DeleteRepository operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DeleteRepository for more information on using the DeleteRepository API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DeleteRepositoryRequest method.
req, resp := client.DeleteRepositoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) DeleteRepositoryWithContext added in v1.8.0

func (c *CodeCommit) DeleteRepositoryWithContext(ctx aws.Context, input *DeleteRepositoryInput, opts ...request.Option) (*DeleteRepositoryOutput, error)

DeleteRepositoryWithContext is the same as DeleteRepository with the addition of the ability to pass a context and additional request options.

See DeleteRepository for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DescribeMergeConflicts added in v1.99.0

func (c *CodeCommit) DescribeMergeConflicts(input *DescribeMergeConflictsInput) (*DescribeMergeConflictsOutput, error)

DescribeMergeConflicts 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation DescribeMergeConflicts for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeMergeOptionRequiredException "MergeOptionRequiredException" A merge option or stategy is required, and none was provided.

  • ErrCodeInvalidMergeOptionException "InvalidMergeOptionException" The specified merge option is not valid for this operation. Not all merge strategies are supported for all operations.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFileDoesNotExistException "FileDoesNotExistException" The specified file does not exist. Verify that you have provided the correct name of the file, including its full path and extension.

  • ErrCodeInvalidMaxMergeHunksException "InvalidMaxMergeHunksException" The specified value for the number of merge hunks to return is not valid.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) DescribeMergeConflictsPages added in v1.99.0

func (c *CodeCommit) DescribeMergeConflictsPages(input *DescribeMergeConflictsInput, fn func(*DescribeMergeConflictsOutput, bool) bool) error

DescribeMergeConflictsPages iterates over the pages of a DescribeMergeConflicts operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribeMergeConflicts method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a DescribeMergeConflicts operation.
pageNum := 0
err := client.DescribeMergeConflictsPages(params,
    func(page *codecommit.DescribeMergeConflictsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) DescribeMergeConflictsPagesWithContext added in v1.99.0

func (c *CodeCommit) DescribeMergeConflictsPagesWithContext(ctx aws.Context, input *DescribeMergeConflictsInput, fn func(*DescribeMergeConflictsOutput, bool) bool, opts ...request.Option) error

DescribeMergeConflictsPagesWithContext same as DescribeMergeConflictsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DescribeMergeConflictsRequest added in v1.99.0

func (c *CodeCommit) DescribeMergeConflictsRequest(input *DescribeMergeConflictsInput) (req *request.Request, output *DescribeMergeConflictsOutput)

DescribeMergeConflictsRequest generates a "aws/request.Request" representing the client's request for the DescribeMergeConflicts operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribeMergeConflicts for more information on using the DescribeMergeConflicts API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribeMergeConflictsRequest method.
req, resp := client.DescribeMergeConflictsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) DescribeMergeConflictsWithContext added in v1.99.0

func (c *CodeCommit) DescribeMergeConflictsWithContext(ctx aws.Context, input *DescribeMergeConflictsInput, opts ...request.Option) (*DescribeMergeConflictsOutput, error)

DescribeMergeConflictsWithContext is the same as DescribeMergeConflicts with the addition of the ability to pass a context and additional request options.

See DescribeMergeConflicts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DescribePullRequestEvents added in v1.12.31

func (c *CodeCommit) DescribePullRequestEvents(input *DescribePullRequestEventsInput) (*DescribePullRequestEventsOutput, error)

DescribePullRequestEvents API operation for AWS CodeCommit.

Returns information about one or more pull request events.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation DescribePullRequestEvents for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeInvalidPullRequestEventTypeException "InvalidPullRequestEventTypeException" The pull request event type is not valid.

  • ErrCodeInvalidActorArnException "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.

  • ErrCodeActorDoesNotExistException "ActorDoesNotExistException" The specified Amazon Resource Name (ARN) does not exist in the AWS account.

  • ErrCodeInvalidMaxResultsException "InvalidMaxResultsException" The specified number of maximum results is not valid.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) DescribePullRequestEventsPages added in v1.12.31

func (c *CodeCommit) DescribePullRequestEventsPages(input *DescribePullRequestEventsInput, fn func(*DescribePullRequestEventsOutput, bool) bool) error

DescribePullRequestEventsPages iterates over the pages of a DescribePullRequestEvents operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See DescribePullRequestEvents method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a DescribePullRequestEvents operation.
pageNum := 0
err := client.DescribePullRequestEventsPages(params,
    func(page *codecommit.DescribePullRequestEventsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) DescribePullRequestEventsPagesWithContext added in v1.12.31

func (c *CodeCommit) DescribePullRequestEventsPagesWithContext(ctx aws.Context, input *DescribePullRequestEventsInput, fn func(*DescribePullRequestEventsOutput, bool) bool, opts ...request.Option) error

DescribePullRequestEventsPagesWithContext same as DescribePullRequestEventsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) DescribePullRequestEventsRequest added in v1.12.31

func (c *CodeCommit) DescribePullRequestEventsRequest(input *DescribePullRequestEventsInput) (req *request.Request, output *DescribePullRequestEventsOutput)

DescribePullRequestEventsRequest generates a "aws/request.Request" representing the client's request for the DescribePullRequestEvents operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See DescribePullRequestEvents for more information on using the DescribePullRequestEvents API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the DescribePullRequestEventsRequest method.
req, resp := client.DescribePullRequestEventsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) DescribePullRequestEventsWithContext added in v1.12.31

func (c *CodeCommit) DescribePullRequestEventsWithContext(ctx aws.Context, input *DescribePullRequestEventsInput, opts ...request.Option) (*DescribePullRequestEventsOutput, error)

DescribePullRequestEventsWithContext is the same as DescribePullRequestEvents with the addition of the ability to pass a context and additional request options.

See DescribePullRequestEvents for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetBlob added in v1.6.16

func (c *CodeCommit) GetBlob(input *GetBlobInput) (*GetBlobOutput, error)

GetBlob API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetBlob for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeBlobIdRequiredException "BlobIdRequiredException" A blob ID is required but was not specified.

  • ErrCodeInvalidBlobIdException "InvalidBlobIdException" The specified blob is not valid.

  • ErrCodeBlobIdDoesNotExistException "BlobIdDoesNotExistException" The specified blob does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeFileTooLargeException "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).

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

func (*CodeCommit) GetBlobRequest added in v1.6.16

func (c *CodeCommit) GetBlobRequest(input *GetBlobInput) (req *request.Request, output *GetBlobOutput)

GetBlobRequest generates a "aws/request.Request" representing the client's request for the GetBlob operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetBlob for more information on using the GetBlob API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetBlobRequest method.
req, resp := client.GetBlobRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetBlobWithContext added in v1.8.0

func (c *CodeCommit) GetBlobWithContext(ctx aws.Context, input *GetBlobInput, opts ...request.Option) (*GetBlobOutput, error)

GetBlobWithContext is the same as GetBlob with the addition of the ability to pass a context and additional request options.

See GetBlob for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetBranch

func (c *CodeCommit) GetBranch(input *GetBranchInput) (*GetBranchOutput, error)

GetBranch API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetBranch for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetBranchRequest

func (c *CodeCommit) GetBranchRequest(input *GetBranchInput) (req *request.Request, output *GetBranchOutput)

GetBranchRequest generates a "aws/request.Request" representing the client's request for the GetBranch operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetBranch for more information on using the GetBranch API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetBranchRequest method.
req, resp := client.GetBranchRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetBranchWithContext added in v1.8.0

func (c *CodeCommit) GetBranchWithContext(ctx aws.Context, input *GetBranchInput, opts ...request.Option) (*GetBranchOutput, error)

GetBranchWithContext is the same as GetBranch with the addition of the ability to pass a context and additional request options.

See GetBranch for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetComment added in v1.12.31

func (c *CodeCommit) GetComment(input *GetCommentInput) (*GetCommentOutput, error)

GetComment API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetComment for usage and error information.

Returned Error Codes:

  • ErrCodeCommentDoesNotExistException "CommentDoesNotExistException" No comment exists with the provided ID. Verify that you have provided the correct ID, and then try again.

  • ErrCodeCommentIdRequiredException "CommentIdRequiredException" The comment ID is missing or null. A comment ID is required.

  • ErrCodeInvalidCommentIdException "InvalidCommentIdException" The comment ID is not in a valid format. Make sure that you have provided the full comment ID.

  • ErrCodeCommentDeletedException "CommentDeletedException" This comment has already been deleted. You cannot edit or delete a deleted comment.

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

func (*CodeCommit) GetCommentRequest added in v1.12.31

func (c *CodeCommit) GetCommentRequest(input *GetCommentInput) (req *request.Request, output *GetCommentOutput)

GetCommentRequest generates a "aws/request.Request" representing the client's request for the GetComment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetComment for more information on using the GetComment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetCommentRequest method.
req, resp := client.GetCommentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetCommentWithContext added in v1.12.31

func (c *CodeCommit) GetCommentWithContext(ctx aws.Context, input *GetCommentInput, opts ...request.Option) (*GetCommentOutput, error)

GetCommentWithContext is the same as GetComment with the addition of the ability to pass a context and additional request options.

See GetComment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetCommentsForComparedCommit added in v1.12.31

func (c *CodeCommit) GetCommentsForComparedCommit(input *GetCommentsForComparedCommitInput) (*GetCommentsForComparedCommitOutput, error)

GetCommentsForComparedCommit API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetCommentsForComparedCommit for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeCommitIdRequiredException "CommitIdRequiredException" A commit ID was not specified.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidMaxResultsException "InvalidMaxResultsException" The specified number of maximum results is not valid.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetCommentsForComparedCommitPages added in v1.12.31

func (c *CodeCommit) GetCommentsForComparedCommitPages(input *GetCommentsForComparedCommitInput, fn func(*GetCommentsForComparedCommitOutput, bool) bool) error

GetCommentsForComparedCommitPages iterates over the pages of a GetCommentsForComparedCommit operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetCommentsForComparedCommit method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a GetCommentsForComparedCommit operation.
pageNum := 0
err := client.GetCommentsForComparedCommitPages(params,
    func(page *codecommit.GetCommentsForComparedCommitOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) GetCommentsForComparedCommitPagesWithContext added in v1.12.31

func (c *CodeCommit) GetCommentsForComparedCommitPagesWithContext(ctx aws.Context, input *GetCommentsForComparedCommitInput, fn func(*GetCommentsForComparedCommitOutput, bool) bool, opts ...request.Option) error

GetCommentsForComparedCommitPagesWithContext same as GetCommentsForComparedCommitPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetCommentsForComparedCommitRequest added in v1.12.31

func (c *CodeCommit) GetCommentsForComparedCommitRequest(input *GetCommentsForComparedCommitInput) (req *request.Request, output *GetCommentsForComparedCommitOutput)

GetCommentsForComparedCommitRequest generates a "aws/request.Request" representing the client's request for the GetCommentsForComparedCommit operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCommentsForComparedCommit for more information on using the GetCommentsForComparedCommit API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetCommentsForComparedCommitRequest method.
req, resp := client.GetCommentsForComparedCommitRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetCommentsForComparedCommitWithContext added in v1.12.31

func (c *CodeCommit) GetCommentsForComparedCommitWithContext(ctx aws.Context, input *GetCommentsForComparedCommitInput, opts ...request.Option) (*GetCommentsForComparedCommitOutput, error)

GetCommentsForComparedCommitWithContext is the same as GetCommentsForComparedCommit with the addition of the ability to pass a context and additional request options.

See GetCommentsForComparedCommit for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetCommentsForPullRequest added in v1.12.31

func (c *CodeCommit) GetCommentsForPullRequest(input *GetCommentsForPullRequestInput) (*GetCommentsForPullRequestOutput, error)

GetCommentsForPullRequest API operation for AWS CodeCommit.

Returns comments made on a pull request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetCommentsForPullRequest for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeCommitIdRequiredException "CommitIdRequiredException" A commit ID was not specified.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidMaxResultsException "InvalidMaxResultsException" The specified number of maximum results is not valid.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeRepositoryNotAssociatedWithPullRequestException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetCommentsForPullRequestPages added in v1.12.31

func (c *CodeCommit) GetCommentsForPullRequestPages(input *GetCommentsForPullRequestInput, fn func(*GetCommentsForPullRequestOutput, bool) bool) error

GetCommentsForPullRequestPages iterates over the pages of a GetCommentsForPullRequest operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetCommentsForPullRequest method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a GetCommentsForPullRequest operation.
pageNum := 0
err := client.GetCommentsForPullRequestPages(params,
    func(page *codecommit.GetCommentsForPullRequestOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) GetCommentsForPullRequestPagesWithContext added in v1.12.31

func (c *CodeCommit) GetCommentsForPullRequestPagesWithContext(ctx aws.Context, input *GetCommentsForPullRequestInput, fn func(*GetCommentsForPullRequestOutput, bool) bool, opts ...request.Option) error

GetCommentsForPullRequestPagesWithContext same as GetCommentsForPullRequestPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetCommentsForPullRequestRequest added in v1.12.31

func (c *CodeCommit) GetCommentsForPullRequestRequest(input *GetCommentsForPullRequestInput) (req *request.Request, output *GetCommentsForPullRequestOutput)

GetCommentsForPullRequestRequest generates a "aws/request.Request" representing the client's request for the GetCommentsForPullRequest operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCommentsForPullRequest for more information on using the GetCommentsForPullRequest API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetCommentsForPullRequestRequest method.
req, resp := client.GetCommentsForPullRequestRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetCommentsForPullRequestWithContext added in v1.12.31

func (c *CodeCommit) GetCommentsForPullRequestWithContext(ctx aws.Context, input *GetCommentsForPullRequestInput, opts ...request.Option) (*GetCommentsForPullRequestOutput, error)

GetCommentsForPullRequestWithContext is the same as GetCommentsForPullRequest with the addition of the ability to pass a context and additional request options.

See GetCommentsForPullRequest for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetCommit added in v1.1.9

func (c *CodeCommit) GetCommit(input *GetCommitInput) (*GetCommitOutput, error)

GetCommit API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetCommit for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeCommitIdRequiredException "CommitIdRequiredException" A commit ID was not specified.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeCommitIdDoesNotExistException "CommitIdDoesNotExistException" The specified commit ID does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetCommitRequest added in v1.1.9

func (c *CodeCommit) GetCommitRequest(input *GetCommitInput) (req *request.Request, output *GetCommitOutput)

GetCommitRequest generates a "aws/request.Request" representing the client's request for the GetCommit operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetCommit for more information on using the GetCommit API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetCommitRequest method.
req, resp := client.GetCommitRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetCommitWithContext added in v1.8.0

func (c *CodeCommit) GetCommitWithContext(ctx aws.Context, input *GetCommitInput, opts ...request.Option) (*GetCommitOutput, error)

GetCommitWithContext is the same as GetCommit with the addition of the ability to pass a context and additional request options.

See GetCommit for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetDifferences added in v1.6.16

func (c *CodeCommit) GetDifferences(input *GetDifferencesInput) (*GetDifferencesOutput, error)

GetDifferences 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetDifferences for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeInvalidMaxResultsException "InvalidMaxResultsException" The specified number of maximum results is not valid.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodePathDoesNotExistException "PathDoesNotExistException" The specified path does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetDifferencesPages added in v1.6.16

func (c *CodeCommit) GetDifferencesPages(input *GetDifferencesInput, fn func(*GetDifferencesOutput, bool) bool) error

GetDifferencesPages iterates over the pages of a GetDifferences operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetDifferences method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a GetDifferences operation.
pageNum := 0
err := client.GetDifferencesPages(params,
    func(page *codecommit.GetDifferencesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) GetDifferencesPagesWithContext added in v1.8.0

func (c *CodeCommit) GetDifferencesPagesWithContext(ctx aws.Context, input *GetDifferencesInput, fn func(*GetDifferencesOutput, bool) bool, opts ...request.Option) error

GetDifferencesPagesWithContext same as GetDifferencesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetDifferencesRequest added in v1.6.16

func (c *CodeCommit) GetDifferencesRequest(input *GetDifferencesInput) (req *request.Request, output *GetDifferencesOutput)

GetDifferencesRequest generates a "aws/request.Request" representing the client's request for the GetDifferences operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetDifferences for more information on using the GetDifferences API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetDifferencesRequest method.
req, resp := client.GetDifferencesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetDifferencesWithContext added in v1.8.0

func (c *CodeCommit) GetDifferencesWithContext(ctx aws.Context, input *GetDifferencesInput, opts ...request.Option) (*GetDifferencesOutput, error)

GetDifferencesWithContext is the same as GetDifferences with the addition of the ability to pass a context and additional request options.

See GetDifferences for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetFile added in v1.99.0

func (c *CodeCommit) GetFile(input *GetFileInput) (*GetFileOutput, error)

GetFile API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetFile for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFileDoesNotExistException "FileDoesNotExistException" The specified file does not exist. Verify that you have provided the correct name of the file, including its full path and extension.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeFileTooLargeException "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).

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

func (*CodeCommit) GetFileRequest added in v1.99.0

func (c *CodeCommit) GetFileRequest(input *GetFileInput) (req *request.Request, output *GetFileOutput)

GetFileRequest generates a "aws/request.Request" representing the client's request for the GetFile operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetFile for more information on using the GetFile API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetFileRequest method.
req, resp := client.GetFileRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetFileWithContext added in v1.99.0

func (c *CodeCommit) GetFileWithContext(ctx aws.Context, input *GetFileInput, opts ...request.Option) (*GetFileOutput, error)

GetFileWithContext is the same as GetFile with the addition of the ability to pass a context and additional request options.

See GetFile for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetFolder added in v1.99.0

func (c *CodeCommit) GetFolder(input *GetFolderInput) (*GetFolderOutput, error)

GetFolder API operation for AWS CodeCommit.

Returns the contents of a specified folder in a repository.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetFolder for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFolderDoesNotExistException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetFolderRequest added in v1.99.0

func (c *CodeCommit) GetFolderRequest(input *GetFolderInput) (req *request.Request, output *GetFolderOutput)

GetFolderRequest generates a "aws/request.Request" representing the client's request for the GetFolder operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetFolder for more information on using the GetFolder API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetFolderRequest method.
req, resp := client.GetFolderRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetFolderWithContext added in v1.99.0

func (c *CodeCommit) GetFolderWithContext(ctx aws.Context, input *GetFolderInput, opts ...request.Option) (*GetFolderOutput, error)

GetFolderWithContext is the same as GetFolder with the addition of the ability to pass a context and additional request options.

See GetFolder for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetMergeCommit added in v1.99.0

func (c *CodeCommit) GetMergeCommit(input *GetMergeCommitInput) (*GetMergeCommitOutput, error)

GetMergeCommit API operation for AWS CodeCommit.

Returns information about a specified merge commit.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetMergeCommit for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetMergeCommitRequest added in v1.99.0

func (c *CodeCommit) GetMergeCommitRequest(input *GetMergeCommitInput) (req *request.Request, output *GetMergeCommitOutput)

GetMergeCommitRequest generates a "aws/request.Request" representing the client's request for the GetMergeCommit operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetMergeCommit for more information on using the GetMergeCommit API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetMergeCommitRequest method.
req, resp := client.GetMergeCommitRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetMergeCommitWithContext added in v1.99.0

func (c *CodeCommit) GetMergeCommitWithContext(ctx aws.Context, input *GetMergeCommitInput, opts ...request.Option) (*GetMergeCommitOutput, error)

GetMergeCommitWithContext is the same as GetMergeCommit with the addition of the ability to pass a context and additional request options.

See GetMergeCommit for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetMergeConflicts added in v1.12.31

func (c *CodeCommit) GetMergeConflicts(input *GetMergeConflictsInput) (*GetMergeConflictsOutput, error)

GetMergeConflicts API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetMergeConflicts for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeMergeOptionRequiredException "MergeOptionRequiredException" A merge option or stategy is required, and none was provided.

  • ErrCodeInvalidMergeOptionException "InvalidMergeOptionException" The specified merge option is not valid for this operation. Not all merge strategies are supported for all operations.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeInvalidMaxConflictFilesException "InvalidMaxConflictFilesException" The specified value for the number of conflict files to return is not valid.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidDestinationCommitSpecifierException "InvalidDestinationCommitSpecifierException" The destination commit specifier is not valid. You must provide a valid branch name, tag, or full commit ID.

  • ErrCodeInvalidSourceCommitSpecifierException "InvalidSourceCommitSpecifierException" The source commit specifier is not valid. You must provide a valid branch name, tag, or full commit ID.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetMergeConflictsPages added in v1.99.0

func (c *CodeCommit) GetMergeConflictsPages(input *GetMergeConflictsInput, fn func(*GetMergeConflictsOutput, bool) bool) error

GetMergeConflictsPages iterates over the pages of a GetMergeConflicts operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See GetMergeConflicts method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a GetMergeConflicts operation.
pageNum := 0
err := client.GetMergeConflictsPages(params,
    func(page *codecommit.GetMergeConflictsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) GetMergeConflictsPagesWithContext added in v1.99.0

func (c *CodeCommit) GetMergeConflictsPagesWithContext(ctx aws.Context, input *GetMergeConflictsInput, fn func(*GetMergeConflictsOutput, bool) bool, opts ...request.Option) error

GetMergeConflictsPagesWithContext same as GetMergeConflictsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetMergeConflictsRequest added in v1.12.31

func (c *CodeCommit) GetMergeConflictsRequest(input *GetMergeConflictsInput) (req *request.Request, output *GetMergeConflictsOutput)

GetMergeConflictsRequest generates a "aws/request.Request" representing the client's request for the GetMergeConflicts operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetMergeConflicts for more information on using the GetMergeConflicts API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetMergeConflictsRequest method.
req, resp := client.GetMergeConflictsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetMergeConflictsWithContext added in v1.12.31

func (c *CodeCommit) GetMergeConflictsWithContext(ctx aws.Context, input *GetMergeConflictsInput, opts ...request.Option) (*GetMergeConflictsOutput, error)

GetMergeConflictsWithContext is the same as GetMergeConflicts with the addition of the ability to pass a context and additional request options.

See GetMergeConflicts for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetMergeOptions added in v1.99.0

func (c *CodeCommit) GetMergeOptions(input *GetMergeOptionsInput) (*GetMergeOptionsOutput, error)

GetMergeOptions 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetMergeOptions for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetMergeOptionsRequest added in v1.99.0

func (c *CodeCommit) GetMergeOptionsRequest(input *GetMergeOptionsInput) (req *request.Request, output *GetMergeOptionsOutput)

GetMergeOptionsRequest generates a "aws/request.Request" representing the client's request for the GetMergeOptions operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetMergeOptions for more information on using the GetMergeOptions API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetMergeOptionsRequest method.
req, resp := client.GetMergeOptionsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetMergeOptionsWithContext added in v1.99.0

func (c *CodeCommit) GetMergeOptionsWithContext(ctx aws.Context, input *GetMergeOptionsInput, opts ...request.Option) (*GetMergeOptionsOutput, error)

GetMergeOptionsWithContext is the same as GetMergeOptions with the addition of the ability to pass a context and additional request options.

See GetMergeOptions for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetPullRequest added in v1.12.31

func (c *CodeCommit) GetPullRequest(input *GetPullRequestInput) (*GetPullRequestOutput, error)

GetPullRequest API operation for AWS CodeCommit.

Gets information about a pull request in a specified repository.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetPullRequest for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetPullRequestRequest added in v1.12.31

func (c *CodeCommit) GetPullRequestRequest(input *GetPullRequestInput) (req *request.Request, output *GetPullRequestOutput)

GetPullRequestRequest generates a "aws/request.Request" representing the client's request for the GetPullRequest operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetPullRequest for more information on using the GetPullRequest API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetPullRequestRequest method.
req, resp := client.GetPullRequestRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetPullRequestWithContext added in v1.12.31

func (c *CodeCommit) GetPullRequestWithContext(ctx aws.Context, input *GetPullRequestInput, opts ...request.Option) (*GetPullRequestOutput, error)

GetPullRequestWithContext is the same as GetPullRequest with the addition of the ability to pass a context and additional request options.

See GetPullRequest for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetRepository

func (c *CodeCommit) GetRepository(input *GetRepositoryInput) (*GetRepositoryOutput, error)

GetRepository 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetRepository for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetRepositoryRequest

func (c *CodeCommit) GetRepositoryRequest(input *GetRepositoryInput) (req *request.Request, output *GetRepositoryOutput)

GetRepositoryRequest generates a "aws/request.Request" representing the client's request for the GetRepository operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetRepository for more information on using the GetRepository API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetRepositoryRequest method.
req, resp := client.GetRepositoryRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetRepositoryTriggers added in v1.1.9

func (c *CodeCommit) GetRepositoryTriggers(input *GetRepositoryTriggersInput) (*GetRepositoryTriggersOutput, error)

GetRepositoryTriggers API operation for AWS CodeCommit.

Gets information about triggers configured for a repository.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation GetRepositoryTriggers for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) GetRepositoryTriggersRequest added in v1.1.9

func (c *CodeCommit) GetRepositoryTriggersRequest(input *GetRepositoryTriggersInput) (req *request.Request, output *GetRepositoryTriggersOutput)

GetRepositoryTriggersRequest generates a "aws/request.Request" representing the client's request for the GetRepositoryTriggers operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See GetRepositoryTriggers for more information on using the GetRepositoryTriggers API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the GetRepositoryTriggersRequest method.
req, resp := client.GetRepositoryTriggersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) GetRepositoryTriggersWithContext added in v1.8.0

func (c *CodeCommit) GetRepositoryTriggersWithContext(ctx aws.Context, input *GetRepositoryTriggersInput, opts ...request.Option) (*GetRepositoryTriggersOutput, error)

GetRepositoryTriggersWithContext is the same as GetRepositoryTriggers with the addition of the ability to pass a context and additional request options.

See GetRepositoryTriggers for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) GetRepositoryWithContext added in v1.8.0

func (c *CodeCommit) GetRepositoryWithContext(ctx aws.Context, input *GetRepositoryInput, opts ...request.Option) (*GetRepositoryOutput, error)

GetRepositoryWithContext is the same as GetRepository with the addition of the ability to pass a context and additional request options.

See GetRepository for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListBranches

func (c *CodeCommit) ListBranches(input *ListBranchesInput) (*ListBranchesOutput, error)

ListBranches API operation for AWS CodeCommit.

Gets information about one or more branches in a repository.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation ListBranches for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

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

func (*CodeCommit) ListBranchesPages added in v1.1.9

func (c *CodeCommit) ListBranchesPages(input *ListBranchesInput, fn func(*ListBranchesOutput, bool) bool) error

ListBranchesPages iterates over the pages of a ListBranches operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListBranches method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a ListBranches operation.
pageNum := 0
err := client.ListBranchesPages(params,
    func(page *codecommit.ListBranchesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) ListBranchesPagesWithContext added in v1.8.0

func (c *CodeCommit) ListBranchesPagesWithContext(ctx aws.Context, input *ListBranchesInput, fn func(*ListBranchesOutput, bool) bool, opts ...request.Option) error

ListBranchesPagesWithContext same as ListBranchesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListBranchesRequest

func (c *CodeCommit) ListBranchesRequest(input *ListBranchesInput) (req *request.Request, output *ListBranchesOutput)

ListBranchesRequest generates a "aws/request.Request" representing the client's request for the ListBranches operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListBranches for more information on using the ListBranches API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListBranchesRequest method.
req, resp := client.ListBranchesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) ListBranchesWithContext added in v1.8.0

func (c *CodeCommit) ListBranchesWithContext(ctx aws.Context, input *ListBranchesInput, opts ...request.Option) (*ListBranchesOutput, error)

ListBranchesWithContext is the same as ListBranches with the addition of the ability to pass a context and additional request options.

See ListBranches for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListPullRequests added in v1.12.31

func (c *CodeCommit) ListPullRequests(input *ListPullRequestsInput) (*ListPullRequestsOutput, error)

ListPullRequests 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation ListPullRequests for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidPullRequestStatusException "InvalidPullRequestStatusException" The pull request status is not valid. The only valid values are OPEN and CLOSED.

  • ErrCodeInvalidAuthorArnException "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.

  • ErrCodeAuthorDoesNotExistException "AuthorDoesNotExistException" The specified Amazon Resource Name (ARN) does not exist in the AWS account.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidMaxResultsException "InvalidMaxResultsException" The specified number of maximum results is not valid.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) ListPullRequestsPages added in v1.12.31

func (c *CodeCommit) ListPullRequestsPages(input *ListPullRequestsInput, fn func(*ListPullRequestsOutput, bool) bool) error

ListPullRequestsPages iterates over the pages of a ListPullRequests operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListPullRequests method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a ListPullRequests operation.
pageNum := 0
err := client.ListPullRequestsPages(params,
    func(page *codecommit.ListPullRequestsOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) ListPullRequestsPagesWithContext added in v1.12.31

func (c *CodeCommit) ListPullRequestsPagesWithContext(ctx aws.Context, input *ListPullRequestsInput, fn func(*ListPullRequestsOutput, bool) bool, opts ...request.Option) error

ListPullRequestsPagesWithContext same as ListPullRequestsPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListPullRequestsRequest added in v1.12.31

func (c *CodeCommit) ListPullRequestsRequest(input *ListPullRequestsInput) (req *request.Request, output *ListPullRequestsOutput)

ListPullRequestsRequest generates a "aws/request.Request" representing the client's request for the ListPullRequests operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListPullRequests for more information on using the ListPullRequests API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListPullRequestsRequest method.
req, resp := client.ListPullRequestsRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) ListPullRequestsWithContext added in v1.12.31

func (c *CodeCommit) ListPullRequestsWithContext(ctx aws.Context, input *ListPullRequestsInput, opts ...request.Option) (*ListPullRequestsOutput, error)

ListPullRequestsWithContext is the same as ListPullRequests with the addition of the ability to pass a context and additional request options.

See ListPullRequests for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListRepositories

func (c *CodeCommit) ListRepositories(input *ListRepositoriesInput) (*ListRepositoriesOutput, error)

ListRepositories API operation for AWS CodeCommit.

Gets information about one or more repositories.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation ListRepositories for usage and error information.

Returned Error Codes:

  • ErrCodeInvalidSortByException "InvalidSortByException" The specified sort by value is not valid.

  • ErrCodeInvalidOrderException "InvalidOrderException" The specified sort order is not valid.

  • ErrCodeInvalidContinuationTokenException "InvalidContinuationTokenException" The specified continuation token is not valid.

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

func (*CodeCommit) ListRepositoriesPages added in v1.1.9

func (c *CodeCommit) ListRepositoriesPages(input *ListRepositoriesInput, fn func(*ListRepositoriesOutput, bool) bool) error

ListRepositoriesPages iterates over the pages of a ListRepositories operation, calling the "fn" function with the response data for each page. To stop iterating, return false from the fn function.

See ListRepositories method for more information on how to use this operation.

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

// Example iterating over at most 3 pages of a ListRepositories operation.
pageNum := 0
err := client.ListRepositoriesPages(params,
    func(page *codecommit.ListRepositoriesOutput, lastPage bool) bool {
        pageNum++
        fmt.Println(page)
        return pageNum <= 3
    })

func (*CodeCommit) ListRepositoriesPagesWithContext added in v1.8.0

func (c *CodeCommit) ListRepositoriesPagesWithContext(ctx aws.Context, input *ListRepositoriesInput, fn func(*ListRepositoriesOutput, bool) bool, opts ...request.Option) error

ListRepositoriesPagesWithContext same as ListRepositoriesPages except it takes a Context and allows setting request options on the pages.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListRepositoriesRequest

func (c *CodeCommit) ListRepositoriesRequest(input *ListRepositoriesInput) (req *request.Request, output *ListRepositoriesOutput)

ListRepositoriesRequest generates a "aws/request.Request" representing the client's request for the ListRepositories operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListRepositories for more information on using the ListRepositories API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListRepositoriesRequest method.
req, resp := client.ListRepositoriesRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) ListRepositoriesWithContext added in v1.8.0

func (c *CodeCommit) ListRepositoriesWithContext(ctx aws.Context, input *ListRepositoriesInput, opts ...request.Option) (*ListRepositoriesOutput, error)

ListRepositoriesWithContext is the same as ListRepositories with the addition of the ability to pass a context and additional request options.

See ListRepositories for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) ListTagsForResource added in v1.99.0

func (c *CodeCommit) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation ListTagsForResource for usage and error information.

Returned Error Codes:

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

func (*CodeCommit) ListTagsForResourceRequest added in v1.99.0

func (c *CodeCommit) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

ListTagsForResourceRequest generates a "aws/request.Request" representing the client's request for the ListTagsForResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See ListTagsForResource for more information on using the ListTagsForResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the ListTagsForResourceRequest method.
req, resp := client.ListTagsForResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) ListTagsForResourceWithContext added in v1.99.0

func (c *CodeCommit) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

ListTagsForResourceWithContext is the same as ListTagsForResource with the addition of the ability to pass a context and additional request options.

See ListTagsForResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) MergeBranchesByFastForward added in v1.99.0

func (c *CodeCommit) MergeBranchesByFastForward(input *MergeBranchesByFastForwardInput) (*MergeBranchesByFastForwardOutput, error)

MergeBranchesByFastForward API operation for AWS CodeCommit.

Merges two branches using the fast-forward merge strategy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation MergeBranchesByFastForward for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidTargetBranchException "InvalidTargetBranchException" The specified target branch is not valid.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeBranchNameIsTagNameException "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.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) MergeBranchesByFastForwardRequest added in v1.99.0

func (c *CodeCommit) MergeBranchesByFastForwardRequest(input *MergeBranchesByFastForwardInput) (req *request.Request, output *MergeBranchesByFastForwardOutput)

MergeBranchesByFastForwardRequest generates a "aws/request.Request" representing the client's request for the MergeBranchesByFastForward operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See MergeBranchesByFastForward for more information on using the MergeBranchesByFastForward API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the MergeBranchesByFastForwardRequest method.
req, resp := client.MergeBranchesByFastForwardRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) MergeBranchesByFastForwardWithContext added in v1.99.0

func (c *CodeCommit) MergeBranchesByFastForwardWithContext(ctx aws.Context, input *MergeBranchesByFastForwardInput, opts ...request.Option) (*MergeBranchesByFastForwardOutput, error)

MergeBranchesByFastForwardWithContext is the same as MergeBranchesByFastForward with the addition of the ability to pass a context and additional request options.

See MergeBranchesByFastForward for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) MergeBranchesBySquash added in v1.99.0

func (c *CodeCommit) MergeBranchesBySquash(input *MergeBranchesBySquashInput) (*MergeBranchesBySquashOutput, error)

MergeBranchesBySquash API operation for AWS CodeCommit.

Merges two branches using the squash merge strategy.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation MergeBranchesBySquash for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidTargetBranchException "InvalidTargetBranchException" The specified target branch is not valid.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeBranchNameIsTagNameException "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.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeInvalidConflictResolutionException "InvalidConflictResolutionException" The specified conflict resolution list is not valid.

  • ErrCodeMaximumConflictResolutionEntriesExceededException "MaximumConflictResolutionEntriesExceededException" The number of allowed conflict resolution entries was exceeded.

  • ErrCodeMultipleConflictResolutionEntriesException "MultipleConflictResolutionEntriesException" More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.

  • ErrCodeReplacementTypeRequiredException "ReplacementTypeRequiredException" A replacement type is required.

  • ErrCodeInvalidReplacementTypeException "InvalidReplacementTypeException" Automerge was specified for resolving the conflict, but the specified replacement type is not valid.

  • ErrCodeReplacementContentRequiredException "ReplacementContentRequiredException" USE_NEW_CONTENT was specified but no replacement content has been provided.

  • ErrCodeInvalidReplacementContentException "InvalidReplacementContentException" Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeFileModeRequiredException "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.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) MergeBranchesBySquashRequest added in v1.99.0

func (c *CodeCommit) MergeBranchesBySquashRequest(input *MergeBranchesBySquashInput) (req *request.Request, output *MergeBranchesBySquashOutput)

MergeBranchesBySquashRequest generates a "aws/request.Request" representing the client's request for the MergeBranchesBySquash operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See MergeBranchesBySquash for more information on using the MergeBranchesBySquash API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the MergeBranchesBySquashRequest method.
req, resp := client.MergeBranchesBySquashRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) MergeBranchesBySquashWithContext added in v1.99.0

func (c *CodeCommit) MergeBranchesBySquashWithContext(ctx aws.Context, input *MergeBranchesBySquashInput, opts ...request.Option) (*MergeBranchesBySquashOutput, error)

MergeBranchesBySquashWithContext is the same as MergeBranchesBySquash with the addition of the ability to pass a context and additional request options.

See MergeBranchesBySquash for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) MergeBranchesByThreeWay added in v1.99.0

func (c *CodeCommit) MergeBranchesByThreeWay(input *MergeBranchesByThreeWayInput) (*MergeBranchesByThreeWayOutput, error)

MergeBranchesByThreeWay API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation MergeBranchesByThreeWay for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeCommitRequiredException "CommitRequiredException" A commit was not specified.

  • ErrCodeInvalidCommitException "InvalidCommitException" The specified commit is not valid.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidTargetBranchException "InvalidTargetBranchException" The specified target branch is not valid.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeBranchNameIsTagNameException "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.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeInvalidConflictResolutionException "InvalidConflictResolutionException" The specified conflict resolution list is not valid.

  • ErrCodeMaximumConflictResolutionEntriesExceededException "MaximumConflictResolutionEntriesExceededException" The number of allowed conflict resolution entries was exceeded.

  • ErrCodeMultipleConflictResolutionEntriesException "MultipleConflictResolutionEntriesException" More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.

  • ErrCodeReplacementTypeRequiredException "ReplacementTypeRequiredException" A replacement type is required.

  • ErrCodeInvalidReplacementTypeException "InvalidReplacementTypeException" Automerge was specified for resolving the conflict, but the specified replacement type is not valid.

  • ErrCodeReplacementContentRequiredException "ReplacementContentRequiredException" USE_NEW_CONTENT was specified but no replacement content has been provided.

  • ErrCodeInvalidReplacementContentException "InvalidReplacementContentException" Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeFileModeRequiredException "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.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) MergeBranchesByThreeWayRequest added in v1.99.0

func (c *CodeCommit) MergeBranchesByThreeWayRequest(input *MergeBranchesByThreeWayInput) (req *request.Request, output *MergeBranchesByThreeWayOutput)

MergeBranchesByThreeWayRequest generates a "aws/request.Request" representing the client's request for the MergeBranchesByThreeWay operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See MergeBranchesByThreeWay for more information on using the MergeBranchesByThreeWay API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the MergeBranchesByThreeWayRequest method.
req, resp := client.MergeBranchesByThreeWayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) MergeBranchesByThreeWayWithContext added in v1.99.0

func (c *CodeCommit) MergeBranchesByThreeWayWithContext(ctx aws.Context, input *MergeBranchesByThreeWayInput, opts ...request.Option) (*MergeBranchesByThreeWayOutput, error)

MergeBranchesByThreeWayWithContext is the same as MergeBranchesByThreeWay with the addition of the ability to pass a context and additional request options.

See MergeBranchesByThreeWay for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) MergePullRequestByFastForward added in v1.12.31

func (c *CodeCommit) MergePullRequestByFastForward(input *MergePullRequestByFastForwardInput) (*MergePullRequestByFastForwardOutput, error)

MergePullRequestByFastForward 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation MergePullRequestByFastForward for usage and error information.

Returned Error Codes:

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodePullRequestAlreadyClosedException "PullRequestAlreadyClosedException" The pull request status cannot be updated because it is already closed.

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeTipOfSourceReferenceIsDifferentException "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.

  • ErrCodeReferenceDoesNotExistException "ReferenceDoesNotExistException" The specified reference does not exist. You must provide a full commit ID.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeRepositoryNotAssociatedWithPullRequestException "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.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) MergePullRequestByFastForwardRequest added in v1.12.31

func (c *CodeCommit) MergePullRequestByFastForwardRequest(input *MergePullRequestByFastForwardInput) (req *request.Request, output *MergePullRequestByFastForwardOutput)

MergePullRequestByFastForwardRequest generates a "aws/request.Request" representing the client's request for the MergePullRequestByFastForward operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See MergePullRequestByFastForward for more information on using the MergePullRequestByFastForward API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the MergePullRequestByFastForwardRequest method.
req, resp := client.MergePullRequestByFastForwardRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) MergePullRequestByFastForwardWithContext added in v1.12.31

func (c *CodeCommit) MergePullRequestByFastForwardWithContext(ctx aws.Context, input *MergePullRequestByFastForwardInput, opts ...request.Option) (*MergePullRequestByFastForwardOutput, error)

MergePullRequestByFastForwardWithContext is the same as MergePullRequestByFastForward with the addition of the ability to pass a context and additional request options.

See MergePullRequestByFastForward for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) MergePullRequestBySquash added in v1.99.0

func (c *CodeCommit) MergePullRequestBySquash(input *MergePullRequestBySquashInput) (*MergePullRequestBySquashOutput, error)

MergePullRequestBySquash 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation MergePullRequestBySquash for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestAlreadyClosedException "PullRequestAlreadyClosedException" The pull request status cannot be updated because it is already closed.

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodeTipOfSourceReferenceIsDifferentException "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.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeInvalidConflictResolutionException "InvalidConflictResolutionException" The specified conflict resolution list is not valid.

  • ErrCodeReplacementTypeRequiredException "ReplacementTypeRequiredException" A replacement type is required.

  • ErrCodeInvalidReplacementTypeException "InvalidReplacementTypeException" Automerge was specified for resolving the conflict, but the specified replacement type is not valid.

  • ErrCodeMultipleConflictResolutionEntriesException "MultipleConflictResolutionEntriesException" More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.

  • ErrCodeReplacementContentRequiredException "ReplacementContentRequiredException" USE_NEW_CONTENT was specified but no replacement content has been provided.

  • ErrCodeMaximumConflictResolutionEntriesExceededException "MaximumConflictResolutionEntriesExceededException" The number of allowed conflict resolution entries was exceeded.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeInvalidReplacementContentException "InvalidReplacementContentException" Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeRepositoryNotAssociatedWithPullRequestException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) MergePullRequestBySquashRequest added in v1.99.0

func (c *CodeCommit) MergePullRequestBySquashRequest(input *MergePullRequestBySquashInput) (req *request.Request, output *MergePullRequestBySquashOutput)

MergePullRequestBySquashRequest generates a "aws/request.Request" representing the client's request for the MergePullRequestBySquash operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See MergePullRequestBySquash for more information on using the MergePullRequestBySquash API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the MergePullRequestBySquashRequest method.
req, resp := client.MergePullRequestBySquashRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) MergePullRequestBySquashWithContext added in v1.99.0

func (c *CodeCommit) MergePullRequestBySquashWithContext(ctx aws.Context, input *MergePullRequestBySquashInput, opts ...request.Option) (*MergePullRequestBySquashOutput, error)

MergePullRequestBySquashWithContext is the same as MergePullRequestBySquash with the addition of the ability to pass a context and additional request options.

See MergePullRequestBySquash for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) MergePullRequestByThreeWay added in v1.99.0

func (c *CodeCommit) MergePullRequestByThreeWay(input *MergePullRequestByThreeWayInput) (*MergePullRequestByThreeWayOutput, error)

MergePullRequestByThreeWay 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation MergePullRequestByThreeWay for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestAlreadyClosedException "PullRequestAlreadyClosedException" The pull request status cannot be updated because it is already closed.

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeManualMergeRequiredException "ManualMergeRequiredException" The pull request cannot be merged automatically into the destination branch. You must manually merge the branches and resolve any conflicts.

  • ErrCodeTipOfSourceReferenceIsDifferentException "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.

  • ErrCodeTipsDivergenceExceededException "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.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeInvalidConflictDetailLevelException "InvalidConflictDetailLevelException" The specified conflict detail level is not valid.

  • ErrCodeInvalidConflictResolutionStrategyException "InvalidConflictResolutionStrategyException" The specified conflict resolution strategy is not valid.

  • ErrCodeInvalidConflictResolutionException "InvalidConflictResolutionException" The specified conflict resolution list is not valid.

  • ErrCodeReplacementTypeRequiredException "ReplacementTypeRequiredException" A replacement type is required.

  • ErrCodeInvalidReplacementTypeException "InvalidReplacementTypeException" Automerge was specified for resolving the conflict, but the specified replacement type is not valid.

  • ErrCodeMultipleConflictResolutionEntriesException "MultipleConflictResolutionEntriesException" More than one conflict resolution entries exists for the conflict. A conflict can have only one conflict resolution entry.

  • ErrCodeReplacementContentRequiredException "ReplacementContentRequiredException" USE_NEW_CONTENT was specified but no replacement content has been provided.

  • ErrCodeMaximumConflictResolutionEntriesExceededException "MaximumConflictResolutionEntriesExceededException" The number of allowed conflict resolution entries was exceeded.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeInvalidReplacementContentException "InvalidReplacementContentException" Automerge was specified for resolving the conflict, but the replacement type is not valid or content is missing.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodeMaximumFileContentToLoadExceededException "MaximumFileContentToLoadExceededException" The number of files to load exceeds the allowed limit.

  • ErrCodeMaximumItemsToCompareExceededException "MaximumItemsToCompareExceededException" The maximum number of items to compare between the source or destination branches and the merge base has exceeded the maximum allowed.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeRepositoryNotAssociatedWithPullRequestException "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.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) MergePullRequestByThreeWayRequest added in v1.99.0

func (c *CodeCommit) MergePullRequestByThreeWayRequest(input *MergePullRequestByThreeWayInput) (req *request.Request, output *MergePullRequestByThreeWayOutput)

MergePullRequestByThreeWayRequest generates a "aws/request.Request" representing the client's request for the MergePullRequestByThreeWay operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See MergePullRequestByThreeWay for more information on using the MergePullRequestByThreeWay API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the MergePullRequestByThreeWayRequest method.
req, resp := client.MergePullRequestByThreeWayRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) MergePullRequestByThreeWayWithContext added in v1.99.0

func (c *CodeCommit) MergePullRequestByThreeWayWithContext(ctx aws.Context, input *MergePullRequestByThreeWayInput, opts ...request.Option) (*MergePullRequestByThreeWayOutput, error)

MergePullRequestByThreeWayWithContext is the same as MergePullRequestByThreeWay with the addition of the ability to pass a context and additional request options.

See MergePullRequestByThreeWay for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) PostCommentForComparedCommit added in v1.12.31

func (c *CodeCommit) PostCommentForComparedCommit(input *PostCommentForComparedCommitInput) (*PostCommentForComparedCommitOutput, error)

PostCommentForComparedCommit API operation for AWS CodeCommit.

Posts a comment on the comparison between two commits.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation PostCommentForComparedCommit for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeClientRequestTokenRequiredException "ClientRequestTokenRequiredException" 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.

  • ErrCodeInvalidClientRequestTokenException "InvalidClientRequestTokenException" The client request token is not valid.

  • ErrCodeIdempotencyParameterMismatchException "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.

  • ErrCodeCommentContentRequiredException "CommentContentRequiredException" The comment is empty. You must provide some content for a comment. The content cannot be null.

  • ErrCodeCommentContentSizeLimitExceededException "CommentContentSizeLimitExceededException" The comment is too large. Comments are limited to 1,000 characters.

  • ErrCodeInvalidFileLocationException "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.

  • ErrCodeInvalidRelativeFileVersionEnumException "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.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidFilePositionException "InvalidFilePositionException" The position is not valid. Make sure that the line number exists in the version of the file you want to comment on.

  • ErrCodeCommitIdRequiredException "CommitIdRequiredException" A commit ID was not specified.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeBeforeCommitIdAndAfterCommitIdAreSameException "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.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodePathDoesNotExistException "PathDoesNotExistException" The specified path does not exist.

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

func (*CodeCommit) PostCommentForComparedCommitRequest added in v1.12.31

func (c *CodeCommit) PostCommentForComparedCommitRequest(input *PostCommentForComparedCommitInput) (req *request.Request, output *PostCommentForComparedCommitOutput)

PostCommentForComparedCommitRequest generates a "aws/request.Request" representing the client's request for the PostCommentForComparedCommit operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PostCommentForComparedCommit for more information on using the PostCommentForComparedCommit API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PostCommentForComparedCommitRequest method.
req, resp := client.PostCommentForComparedCommitRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) PostCommentForComparedCommitWithContext added in v1.12.31

func (c *CodeCommit) PostCommentForComparedCommitWithContext(ctx aws.Context, input *PostCommentForComparedCommitInput, opts ...request.Option) (*PostCommentForComparedCommitOutput, error)

PostCommentForComparedCommitWithContext is the same as PostCommentForComparedCommit with the addition of the ability to pass a context and additional request options.

See PostCommentForComparedCommit for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) PostCommentForPullRequest added in v1.12.31

func (c *CodeCommit) PostCommentForPullRequest(input *PostCommentForPullRequestInput) (*PostCommentForPullRequestOutput, error)

PostCommentForPullRequest API operation for AWS CodeCommit.

Posts a comment on a pull request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation PostCommentForPullRequest for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeRepositoryNotAssociatedWithPullRequestException "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.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeClientRequestTokenRequiredException "ClientRequestTokenRequiredException" 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.

  • ErrCodeInvalidClientRequestTokenException "InvalidClientRequestTokenException" The client request token is not valid.

  • ErrCodeIdempotencyParameterMismatchException "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.

  • ErrCodeCommentContentRequiredException "CommentContentRequiredException" The comment is empty. You must provide some content for a comment. The content cannot be null.

  • ErrCodeCommentContentSizeLimitExceededException "CommentContentSizeLimitExceededException" The comment is too large. Comments are limited to 1,000 characters.

  • ErrCodeInvalidFileLocationException "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.

  • ErrCodeInvalidRelativeFileVersionEnumException "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.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidFilePositionException "InvalidFilePositionException" The position is not valid. Make sure that the line number exists in the version of the file you want to comment on.

  • ErrCodeCommitIdRequiredException "CommitIdRequiredException" A commit ID was not specified.

  • ErrCodeInvalidCommitIdException "InvalidCommitIdException" The specified commit ID is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeCommitDoesNotExistException "CommitDoesNotExistException" The specified commit does not exist or no commit was specified, and the specified repository has no default branch.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodePathDoesNotExistException "PathDoesNotExistException" The specified path does not exist.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeBeforeCommitIdAndAfterCommitIdAreSameException "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.

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

func (*CodeCommit) PostCommentForPullRequestRequest added in v1.12.31

func (c *CodeCommit) PostCommentForPullRequestRequest(input *PostCommentForPullRequestInput) (req *request.Request, output *PostCommentForPullRequestOutput)

PostCommentForPullRequestRequest generates a "aws/request.Request" representing the client's request for the PostCommentForPullRequest operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PostCommentForPullRequest for more information on using the PostCommentForPullRequest API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PostCommentForPullRequestRequest method.
req, resp := client.PostCommentForPullRequestRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) PostCommentForPullRequestWithContext added in v1.12.31

func (c *CodeCommit) PostCommentForPullRequestWithContext(ctx aws.Context, input *PostCommentForPullRequestInput, opts ...request.Option) (*PostCommentForPullRequestOutput, error)

PostCommentForPullRequestWithContext is the same as PostCommentForPullRequest with the addition of the ability to pass a context and additional request options.

See PostCommentForPullRequest for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) PostCommentReply added in v1.12.31

func (c *CodeCommit) PostCommentReply(input *PostCommentReplyInput) (*PostCommentReplyOutput, error)

PostCommentReply API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation PostCommentReply for usage and error information.

Returned Error Codes:

  • ErrCodeClientRequestTokenRequiredException "ClientRequestTokenRequiredException" 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.

  • ErrCodeInvalidClientRequestTokenException "InvalidClientRequestTokenException" The client request token is not valid.

  • ErrCodeIdempotencyParameterMismatchException "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.

  • ErrCodeCommentContentRequiredException "CommentContentRequiredException" The comment is empty. You must provide some content for a comment. The content cannot be null.

  • ErrCodeCommentContentSizeLimitExceededException "CommentContentSizeLimitExceededException" The comment is too large. Comments are limited to 1,000 characters.

  • ErrCodeCommentDoesNotExistException "CommentDoesNotExistException" No comment exists with the provided ID. Verify that you have provided the correct ID, and then try again.

  • ErrCodeCommentIdRequiredException "CommentIdRequiredException" The comment ID is missing or null. A comment ID is required.

  • ErrCodeInvalidCommentIdException "InvalidCommentIdException" The comment ID is not in a valid format. Make sure that you have provided the full comment ID.

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

func (*CodeCommit) PostCommentReplyRequest added in v1.12.31

func (c *CodeCommit) PostCommentReplyRequest(input *PostCommentReplyInput) (req *request.Request, output *PostCommentReplyOutput)

PostCommentReplyRequest generates a "aws/request.Request" representing the client's request for the PostCommentReply operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PostCommentReply for more information on using the PostCommentReply API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PostCommentReplyRequest method.
req, resp := client.PostCommentReplyRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) PostCommentReplyWithContext added in v1.12.31

func (c *CodeCommit) PostCommentReplyWithContext(ctx aws.Context, input *PostCommentReplyInput, opts ...request.Option) (*PostCommentReplyOutput, error)

PostCommentReplyWithContext is the same as PostCommentReply with the addition of the ability to pass a context and additional request options.

See PostCommentReply for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) PutFile added in v1.13.2

func (c *CodeCommit) PutFile(input *PutFileInput) (*PutFileOutput, error)

PutFile 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation PutFile for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeParentCommitIdRequiredException "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).

  • ErrCodeInvalidParentCommitIdException "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.

  • ErrCodeParentCommitDoesNotExistException "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.

  • ErrCodeParentCommitIdOutdatedException "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.

  • ErrCodeFileContentRequiredException "FileContentRequiredException" The file cannot be added because it is empty. Empty files cannot be added to the repository with this API.

  • ErrCodeFileContentSizeLimitExceededException "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.

  • ErrCodeFolderContentSizeLimitExceededException "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.

  • ErrCodePathRequiredException "PathRequiredException" The folderPath for a location cannot be null.

  • ErrCodeInvalidPathException "InvalidPathException" The specified path is not valid.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeBranchNameIsTagNameException "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.

  • ErrCodeInvalidFileModeException "InvalidFileModeException" The specified file mode permission is not valid. For a list of valid file mode permissions, see PutFile.

  • ErrCodeNameLengthExceededException "NameLengthExceededException" The user name is not valid because it has exceeded the character limit for author names.

  • ErrCodeInvalidEmailException "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.

  • ErrCodeCommitMessageLengthExceededException "CommitMessageLengthExceededException" The commit message is too long. Provide a shorter string.

  • ErrCodeInvalidDeletionParameterException "InvalidDeletionParameterException" The specified deletion parameter is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

  • ErrCodeSameFileContentException "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.

  • ErrCodeFileNameConflictsWithDirectoryNameException "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.

  • ErrCodeDirectoryNameConflictsWithFileNameException "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.

  • ErrCodeFilePathConflictsWithSubmodulePathException "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.

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

func (*CodeCommit) PutFileRequest added in v1.13.2

func (c *CodeCommit) PutFileRequest(input *PutFileInput) (req *request.Request, output *PutFileOutput)

PutFileRequest generates a "aws/request.Request" representing the client's request for the PutFile operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutFile for more information on using the PutFile API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutFileRequest method.
req, resp := client.PutFileRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) PutFileWithContext added in v1.13.2

func (c *CodeCommit) PutFileWithContext(ctx aws.Context, input *PutFileInput, opts ...request.Option) (*PutFileOutput, error)

PutFileWithContext is the same as PutFile with the addition of the ability to pass a context and additional request options.

See PutFile for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) PutRepositoryTriggers added in v1.1.9

func (c *CodeCommit) PutRepositoryTriggers(input *PutRepositoryTriggersInput) (*PutRepositoryTriggersOutput, error)

PutRepositoryTriggers API operation for AWS CodeCommit.

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

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation PutRepositoryTriggers for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryTriggersListRequiredException "RepositoryTriggersListRequiredException" The list of triggers for the repository is required but was not specified.

  • ErrCodeMaximumRepositoryTriggersExceededException "MaximumRepositoryTriggersExceededException" The number of triggers allowed for the repository was exceeded.

  • ErrCodeInvalidRepositoryTriggerNameException "InvalidRepositoryTriggerNameException" The name of the trigger is not valid.

  • ErrCodeInvalidRepositoryTriggerDestinationArnException "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.

  • ErrCodeInvalidRepositoryTriggerRegionException "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.

  • ErrCodeInvalidRepositoryTriggerCustomDataException "InvalidRepositoryTriggerCustomDataException" The custom data provided for the trigger is not valid.

  • ErrCodeMaximumBranchesExceededException "MaximumBranchesExceededException" The number of branches for the trigger was exceeded.

  • ErrCodeInvalidRepositoryTriggerBranchNameException "InvalidRepositoryTriggerBranchNameException" One or more branch names specified for the trigger is not valid.

  • ErrCodeInvalidRepositoryTriggerEventsException "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.

  • ErrCodeRepositoryTriggerNameRequiredException "RepositoryTriggerNameRequiredException" A name for the trigger is required but was not specified.

  • ErrCodeRepositoryTriggerDestinationArnRequiredException "RepositoryTriggerDestinationArnRequiredException" A destination ARN for the target service for the trigger is required but was not specified.

  • ErrCodeRepositoryTriggerBranchNameListRequiredException "RepositoryTriggerBranchNameListRequiredException" At least one branch name is required but was not specified in the trigger configuration.

  • ErrCodeRepositoryTriggerEventsListRequiredException "RepositoryTriggerEventsListRequiredException" At least one event for the trigger is required but was not specified.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) PutRepositoryTriggersRequest added in v1.1.9

func (c *CodeCommit) PutRepositoryTriggersRequest(input *PutRepositoryTriggersInput) (req *request.Request, output *PutRepositoryTriggersOutput)

PutRepositoryTriggersRequest generates a "aws/request.Request" representing the client's request for the PutRepositoryTriggers operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See PutRepositoryTriggers for more information on using the PutRepositoryTriggers API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the PutRepositoryTriggersRequest method.
req, resp := client.PutRepositoryTriggersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) PutRepositoryTriggersWithContext added in v1.8.0

func (c *CodeCommit) PutRepositoryTriggersWithContext(ctx aws.Context, input *PutRepositoryTriggersInput, opts ...request.Option) (*PutRepositoryTriggersOutput, error)

PutRepositoryTriggersWithContext is the same as PutRepositoryTriggers with the addition of the ability to pass a context and additional request options.

See PutRepositoryTriggers for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) TagResource added in v1.99.0

func (c *CodeCommit) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation TagResource for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeResourceArnRequiredException "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.

  • ErrCodeInvalidResourceArnException "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.

  • ErrCodeTagsMapRequiredException "TagsMapRequiredException" A map of tags is required.

  • ErrCodeInvalidTagsMapException "InvalidTagsMapException" The map of tags is not valid.

  • ErrCodeTooManyTagsException "TooManyTagsException" The maximum number of tags for an AWS CodeCommit resource has been exceeded.

  • ErrCodeInvalidSystemTagUsageException "InvalidSystemTagUsageException" The specified tag is not valid. Key names cannot be prefixed with aws:.

  • ErrCodeTagPolicyException "TagPolicyException" The tag policy is not valid.

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

func (*CodeCommit) TagResourceRequest added in v1.99.0

func (c *CodeCommit) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

TagResourceRequest generates a "aws/request.Request" representing the client's request for the TagResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See TagResource for more information on using the TagResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the TagResourceRequest method.
req, resp := client.TagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) TagResourceWithContext added in v1.99.0

func (c *CodeCommit) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

TagResourceWithContext is the same as TagResource with the addition of the ability to pass a context and additional request options.

See TagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) TestRepositoryTriggers added in v1.1.9

func (c *CodeCommit) TestRepositoryTriggers(input *TestRepositoryTriggersInput) (*TestRepositoryTriggersOutput, error)

TestRepositoryTriggers 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation TestRepositoryTriggers for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeRepositoryTriggersListRequiredException "RepositoryTriggersListRequiredException" The list of triggers for the repository is required but was not specified.

  • ErrCodeMaximumRepositoryTriggersExceededException "MaximumRepositoryTriggersExceededException" The number of triggers allowed for the repository was exceeded.

  • ErrCodeInvalidRepositoryTriggerNameException "InvalidRepositoryTriggerNameException" The name of the trigger is not valid.

  • ErrCodeInvalidRepositoryTriggerDestinationArnException "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.

  • ErrCodeInvalidRepositoryTriggerRegionException "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.

  • ErrCodeInvalidRepositoryTriggerCustomDataException "InvalidRepositoryTriggerCustomDataException" The custom data provided for the trigger is not valid.

  • ErrCodeMaximumBranchesExceededException "MaximumBranchesExceededException" The number of branches for the trigger was exceeded.

  • ErrCodeInvalidRepositoryTriggerBranchNameException "InvalidRepositoryTriggerBranchNameException" One or more branch names specified for the trigger is not valid.

  • ErrCodeInvalidRepositoryTriggerEventsException "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.

  • ErrCodeRepositoryTriggerNameRequiredException "RepositoryTriggerNameRequiredException" A name for the trigger is required but was not specified.

  • ErrCodeRepositoryTriggerDestinationArnRequiredException "RepositoryTriggerDestinationArnRequiredException" A destination ARN for the target service for the trigger is required but was not specified.

  • ErrCodeRepositoryTriggerBranchNameListRequiredException "RepositoryTriggerBranchNameListRequiredException" At least one branch name is required but was not specified in the trigger configuration.

  • ErrCodeRepositoryTriggerEventsListRequiredException "RepositoryTriggerEventsListRequiredException" At least one event for the trigger is required but was not specified.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) TestRepositoryTriggersRequest added in v1.1.9

func (c *CodeCommit) TestRepositoryTriggersRequest(input *TestRepositoryTriggersInput) (req *request.Request, output *TestRepositoryTriggersOutput)

TestRepositoryTriggersRequest generates a "aws/request.Request" representing the client's request for the TestRepositoryTriggers operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See TestRepositoryTriggers for more information on using the TestRepositoryTriggers API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the TestRepositoryTriggersRequest method.
req, resp := client.TestRepositoryTriggersRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) TestRepositoryTriggersWithContext added in v1.8.0

func (c *CodeCommit) TestRepositoryTriggersWithContext(ctx aws.Context, input *TestRepositoryTriggersInput, opts ...request.Option) (*TestRepositoryTriggersOutput, error)

TestRepositoryTriggersWithContext is the same as TestRepositoryTriggers with the addition of the ability to pass a context and additional request options.

See TestRepositoryTriggers for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UntagResource added in v1.99.0

func (c *CodeCommit) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UntagResource for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeResourceArnRequiredException "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.

  • ErrCodeInvalidResourceArnException "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.

  • ErrCodeTagKeysListRequiredException "TagKeysListRequiredException" A list of tag keys is required. The list cannot be empty or null.

  • ErrCodeInvalidTagKeysListException "InvalidTagKeysListException" The list of tags is not valid.

  • ErrCodeTooManyTagsException "TooManyTagsException" The maximum number of tags for an AWS CodeCommit resource has been exceeded.

  • ErrCodeInvalidSystemTagUsageException "InvalidSystemTagUsageException" The specified tag is not valid. Key names cannot be prefixed with aws:.

  • ErrCodeTagPolicyException "TagPolicyException" The tag policy is not valid.

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

func (*CodeCommit) UntagResourceRequest added in v1.99.0

func (c *CodeCommit) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

UntagResourceRequest generates a "aws/request.Request" representing the client's request for the UntagResource operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UntagResource for more information on using the UntagResource API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UntagResourceRequest method.
req, resp := client.UntagResourceRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UntagResourceWithContext added in v1.99.0

func (c *CodeCommit) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

UntagResourceWithContext is the same as UntagResource with the addition of the ability to pass a context and additional request options.

See UntagResource for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdateComment added in v1.12.31

func (c *CodeCommit) UpdateComment(input *UpdateCommentInput) (*UpdateCommentOutput, error)

UpdateComment API operation for AWS CodeCommit.

Replaces the contents of a comment.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdateComment for usage and error information.

Returned Error Codes:

  • ErrCodeCommentContentRequiredException "CommentContentRequiredException" The comment is empty. You must provide some content for a comment. The content cannot be null.

  • ErrCodeCommentContentSizeLimitExceededException "CommentContentSizeLimitExceededException" The comment is too large. Comments are limited to 1,000 characters.

  • ErrCodeCommentDoesNotExistException "CommentDoesNotExistException" No comment exists with the provided ID. Verify that you have provided the correct ID, and then try again.

  • ErrCodeCommentIdRequiredException "CommentIdRequiredException" The comment ID is missing or null. A comment ID is required.

  • ErrCodeInvalidCommentIdException "InvalidCommentIdException" The comment ID is not in a valid format. Make sure that you have provided the full comment ID.

  • ErrCodeCommentNotCreatedByCallerException "CommentNotCreatedByCallerException" You cannot modify or delete this comment. Only comment authors can modify or delete their comments.

  • ErrCodeCommentDeletedException "CommentDeletedException" This comment has already been deleted. You cannot edit or delete a deleted comment.

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

func (*CodeCommit) UpdateCommentRequest added in v1.12.31

func (c *CodeCommit) UpdateCommentRequest(input *UpdateCommentInput) (req *request.Request, output *UpdateCommentOutput)

UpdateCommentRequest generates a "aws/request.Request" representing the client's request for the UpdateComment operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateComment for more information on using the UpdateComment API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdateCommentRequest method.
req, resp := client.UpdateCommentRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdateCommentWithContext added in v1.12.31

func (c *CodeCommit) UpdateCommentWithContext(ctx aws.Context, input *UpdateCommentInput, opts ...request.Option) (*UpdateCommentOutput, error)

UpdateCommentWithContext is the same as UpdateComment with the addition of the ability to pass a context and additional request options.

See UpdateComment for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdateDefaultBranch

func (c *CodeCommit) UpdateDefaultBranch(input *UpdateDefaultBranchInput) (*UpdateDefaultBranchOutput, error)

UpdateDefaultBranch 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdateDefaultBranch for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeBranchNameRequiredException "BranchNameRequiredException" A branch name is required but was not specified.

  • ErrCodeInvalidBranchNameException "InvalidBranchNameException" The specified reference name is not valid.

  • ErrCodeBranchDoesNotExistException "BranchDoesNotExistException" The specified branch does not exist.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) UpdateDefaultBranchRequest

func (c *CodeCommit) UpdateDefaultBranchRequest(input *UpdateDefaultBranchInput) (req *request.Request, output *UpdateDefaultBranchOutput)

UpdateDefaultBranchRequest generates a "aws/request.Request" representing the client's request for the UpdateDefaultBranch operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateDefaultBranch for more information on using the UpdateDefaultBranch API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdateDefaultBranchRequest method.
req, resp := client.UpdateDefaultBranchRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdateDefaultBranchWithContext added in v1.8.0

func (c *CodeCommit) UpdateDefaultBranchWithContext(ctx aws.Context, input *UpdateDefaultBranchInput, opts ...request.Option) (*UpdateDefaultBranchOutput, error)

UpdateDefaultBranchWithContext is the same as UpdateDefaultBranch with the addition of the ability to pass a context and additional request options.

See UpdateDefaultBranch for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdatePullRequestDescription added in v1.12.31

func (c *CodeCommit) UpdatePullRequestDescription(input *UpdatePullRequestDescriptionInput) (*UpdatePullRequestDescriptionOutput, error)

UpdatePullRequestDescription API operation for AWS CodeCommit.

Replaces the contents of the description of a pull request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdatePullRequestDescription for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeInvalidDescriptionException "InvalidDescriptionException" The pull request description is not valid. Descriptions are limited to 1,000 characters in length.

  • ErrCodePullRequestAlreadyClosedException "PullRequestAlreadyClosedException" The pull request status cannot be updated because it is already closed.

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

func (*CodeCommit) UpdatePullRequestDescriptionRequest added in v1.12.31

func (c *CodeCommit) UpdatePullRequestDescriptionRequest(input *UpdatePullRequestDescriptionInput) (req *request.Request, output *UpdatePullRequestDescriptionOutput)

UpdatePullRequestDescriptionRequest generates a "aws/request.Request" representing the client's request for the UpdatePullRequestDescription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdatePullRequestDescription for more information on using the UpdatePullRequestDescription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdatePullRequestDescriptionRequest method.
req, resp := client.UpdatePullRequestDescriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdatePullRequestDescriptionWithContext added in v1.12.31

func (c *CodeCommit) UpdatePullRequestDescriptionWithContext(ctx aws.Context, input *UpdatePullRequestDescriptionInput, opts ...request.Option) (*UpdatePullRequestDescriptionOutput, error)

UpdatePullRequestDescriptionWithContext is the same as UpdatePullRequestDescription with the addition of the ability to pass a context and additional request options.

See UpdatePullRequestDescription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdatePullRequestStatus added in v1.12.31

func (c *CodeCommit) UpdatePullRequestStatus(input *UpdatePullRequestStatusInput) (*UpdatePullRequestStatusOutput, error)

UpdatePullRequestStatus API operation for AWS CodeCommit.

Updates the status of a pull request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdatePullRequestStatus for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeInvalidPullRequestStatusUpdateException "InvalidPullRequestStatusUpdateException" The pull request status update is not valid. The only valid update is from OPEN to CLOSED.

  • ErrCodeInvalidPullRequestStatusException "InvalidPullRequestStatusException" The pull request status is not valid. The only valid values are OPEN and CLOSED.

  • ErrCodePullRequestStatusRequiredException "PullRequestStatusRequiredException" A pull request status is required, but none was provided.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) UpdatePullRequestStatusRequest added in v1.12.31

func (c *CodeCommit) UpdatePullRequestStatusRequest(input *UpdatePullRequestStatusInput) (req *request.Request, output *UpdatePullRequestStatusOutput)

UpdatePullRequestStatusRequest generates a "aws/request.Request" representing the client's request for the UpdatePullRequestStatus operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdatePullRequestStatus for more information on using the UpdatePullRequestStatus API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdatePullRequestStatusRequest method.
req, resp := client.UpdatePullRequestStatusRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdatePullRequestStatusWithContext added in v1.12.31

func (c *CodeCommit) UpdatePullRequestStatusWithContext(ctx aws.Context, input *UpdatePullRequestStatusInput, opts ...request.Option) (*UpdatePullRequestStatusOutput, error)

UpdatePullRequestStatusWithContext is the same as UpdatePullRequestStatus with the addition of the ability to pass a context and additional request options.

See UpdatePullRequestStatus for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdatePullRequestTitle added in v1.12.31

func (c *CodeCommit) UpdatePullRequestTitle(input *UpdatePullRequestTitleInput) (*UpdatePullRequestTitleOutput, error)

UpdatePullRequestTitle API operation for AWS CodeCommit.

Replaces the title of a pull request.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdatePullRequestTitle for usage and error information.

Returned Error Codes:

  • ErrCodePullRequestDoesNotExistException "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.

  • ErrCodeInvalidPullRequestIdException "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.

  • ErrCodePullRequestIdRequiredException "PullRequestIdRequiredException" A pull request ID is required, but none was provided.

  • ErrCodeTitleRequiredException "TitleRequiredException" A pull request title is required. It cannot be empty or null.

  • ErrCodeInvalidTitleException "InvalidTitleException" The title of the pull request is not valid. Pull request titles cannot exceed 100 characters in length.

  • ErrCodePullRequestAlreadyClosedException "PullRequestAlreadyClosedException" The pull request status cannot be updated because it is already closed.

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

func (*CodeCommit) UpdatePullRequestTitleRequest added in v1.12.31

func (c *CodeCommit) UpdatePullRequestTitleRequest(input *UpdatePullRequestTitleInput) (req *request.Request, output *UpdatePullRequestTitleOutput)

UpdatePullRequestTitleRequest generates a "aws/request.Request" representing the client's request for the UpdatePullRequestTitle operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdatePullRequestTitle for more information on using the UpdatePullRequestTitle API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdatePullRequestTitleRequest method.
req, resp := client.UpdatePullRequestTitleRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdatePullRequestTitleWithContext added in v1.12.31

func (c *CodeCommit) UpdatePullRequestTitleWithContext(ctx aws.Context, input *UpdatePullRequestTitleInput, opts ...request.Option) (*UpdatePullRequestTitleOutput, error)

UpdatePullRequestTitleWithContext is the same as UpdatePullRequestTitle with the addition of the ability to pass a context and additional request options.

See UpdatePullRequestTitle for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdateRepositoryDescription

func (c *CodeCommit) UpdateRepositoryDescription(input *UpdateRepositoryDescriptionInput) (*UpdateRepositoryDescriptionOutput, error)

UpdateRepositoryDescription 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdateRepositoryDescription for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeInvalidRepositoryNameException "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.

  • ErrCodeInvalidRepositoryDescriptionException "InvalidRepositoryDescriptionException" The specified repository description is not valid.

  • ErrCodeEncryptionIntegrityChecksFailedException "EncryptionIntegrityChecksFailedException" An encryption integrity check failed.

  • ErrCodeEncryptionKeyAccessDeniedException "EncryptionKeyAccessDeniedException" An encryption key could not be accessed.

  • ErrCodeEncryptionKeyDisabledException "EncryptionKeyDisabledException" The encryption key is disabled.

  • ErrCodeEncryptionKeyNotFoundException "EncryptionKeyNotFoundException" No encryption key was found.

  • ErrCodeEncryptionKeyUnavailableException "EncryptionKeyUnavailableException" The encryption key is not available.

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

func (*CodeCommit) UpdateRepositoryDescriptionRequest

func (c *CodeCommit) UpdateRepositoryDescriptionRequest(input *UpdateRepositoryDescriptionInput) (req *request.Request, output *UpdateRepositoryDescriptionOutput)

UpdateRepositoryDescriptionRequest generates a "aws/request.Request" representing the client's request for the UpdateRepositoryDescription operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateRepositoryDescription for more information on using the UpdateRepositoryDescription API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdateRepositoryDescriptionRequest method.
req, resp := client.UpdateRepositoryDescriptionRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdateRepositoryDescriptionWithContext added in v1.8.0

func (c *CodeCommit) UpdateRepositoryDescriptionWithContext(ctx aws.Context, input *UpdateRepositoryDescriptionInput, opts ...request.Option) (*UpdateRepositoryDescriptionOutput, error)

UpdateRepositoryDescriptionWithContext is the same as UpdateRepositoryDescription with the addition of the ability to pass a context and additional request options.

See UpdateRepositoryDescription for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

func (*CodeCommit) UpdateRepositoryName

func (c *CodeCommit) UpdateRepositoryName(input *UpdateRepositoryNameInput) (*UpdateRepositoryNameOutput, error)

UpdateRepositoryName 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.

Returns awserr.Error for service API and SDK errors. Use runtime type assertions with awserr.Error's Code and Message methods to get detailed information about the error.

See the AWS API reference guide for AWS CodeCommit's API operation UpdateRepositoryName for usage and error information.

Returned Error Codes:

  • ErrCodeRepositoryDoesNotExistException "RepositoryDoesNotExistException" The specified repository does not exist.

  • ErrCodeRepositoryNameExistsException "RepositoryNameExistsException" The specified repository name already exists.

  • ErrCodeRepositoryNameRequiredException "RepositoryNameRequiredException" A repository name is required but was not specified.

  • ErrCodeInvalidRepositoryNameException "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.

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

func (*CodeCommit) UpdateRepositoryNameRequest

func (c *CodeCommit) UpdateRepositoryNameRequest(input *UpdateRepositoryNameInput) (req *request.Request, output *UpdateRepositoryNameOutput)

UpdateRepositoryNameRequest generates a "aws/request.Request" representing the client's request for the UpdateRepositoryName operation. The "output" return value will be populated with the request's response once the request completes successfully.

Use "Send" method on the returned Request to send the API call to the service. the "output" return value is not valid until after Send returns without error.

See UpdateRepositoryName for more information on using the UpdateRepositoryName API call, and error handling.

This method is useful when you want to inject custom logic or configuration into the SDK's request lifecycle. Such as custom headers, or retry logic.

// Example sending a request using the UpdateRepositoryNameRequest method.
req, resp := client.UpdateRepositoryNameRequest(params)

err := req.Send()
if err == nil { // resp is now filled
    fmt.Println(resp)
}

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

func (*CodeCommit) UpdateRepositoryNameWithContext added in v1.8.0

func (c *CodeCommit) UpdateRepositoryNameWithContext(ctx aws.Context, input *UpdateRepositoryNameInput, opts ...request.Option) (*UpdateRepositoryNameOutput, error)

UpdateRepositoryNameWithContext is the same as UpdateRepositoryName with the addition of the ability to pass a context and additional request options.

See UpdateRepositoryName for details on how to use this API operation.

The context must be non-nil and will be used for request cancellation. If the context is nil a panic will occur. In the future the SDK may create sub-contexts for http.Requests. See https://golang.org/pkg/context/ for more information on using Contexts.

type Comment added in v1.12.31

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.

func (Comment) GoString added in v1.12.31

func (s Comment) GoString() string

GoString returns the string representation

func (*Comment) SetAuthorArn added in v1.12.31

func (s *Comment) SetAuthorArn(v string) *Comment

SetAuthorArn sets the AuthorArn field's value.

func (*Comment) SetClientRequestToken added in v1.12.31

func (s *Comment) SetClientRequestToken(v string) *Comment

SetClientRequestToken sets the ClientRequestToken field's value.

func (*Comment) SetCommentId added in v1.12.31

func (s *Comment) SetCommentId(v string) *Comment

SetCommentId sets the CommentId field's value.

func (*Comment) SetContent added in v1.12.31

func (s *Comment) SetContent(v string) *Comment

SetContent sets the Content field's value.

func (*Comment) SetCreationDate added in v1.12.31

func (s *Comment) SetCreationDate(v time.Time) *Comment

SetCreationDate sets the CreationDate field's value.

func (*Comment) SetDeleted added in v1.12.31

func (s *Comment) SetDeleted(v bool) *Comment

SetDeleted sets the Deleted field's value.

func (*Comment) SetInReplyTo added in v1.12.31

func (s *Comment) SetInReplyTo(v string) *Comment

SetInReplyTo sets the InReplyTo field's value.

func (*Comment) SetLastModifiedDate added in v1.12.31

func (s *Comment) SetLastModifiedDate(v time.Time) *Comment

SetLastModifiedDate sets the LastModifiedDate field's value.

func (Comment) String added in v1.12.31

func (s Comment) String() string

String returns the string representation

type CommentsForComparedCommit added in v1.12.31

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.

func (CommentsForComparedCommit) GoString added in v1.12.31

func (s CommentsForComparedCommit) GoString() string

GoString returns the string representation

func (*CommentsForComparedCommit) SetAfterBlobId added in v1.12.31

SetAfterBlobId sets the AfterBlobId field's value.

func (*CommentsForComparedCommit) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*CommentsForComparedCommit) SetBeforeBlobId added in v1.12.31

SetBeforeBlobId sets the BeforeBlobId field's value.

func (*CommentsForComparedCommit) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*CommentsForComparedCommit) SetComments added in v1.12.31

SetComments sets the Comments field's value.

func (*CommentsForComparedCommit) SetLocation added in v1.12.31

SetLocation sets the Location field's value.

func (*CommentsForComparedCommit) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (CommentsForComparedCommit) String added in v1.12.31

func (s CommentsForComparedCommit) String() string

String returns the string representation

type CommentsForPullRequest added in v1.12.31

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.

func (CommentsForPullRequest) GoString added in v1.12.31

func (s CommentsForPullRequest) GoString() string

GoString returns the string representation

func (*CommentsForPullRequest) SetAfterBlobId added in v1.12.31

SetAfterBlobId sets the AfterBlobId field's value.

func (*CommentsForPullRequest) SetAfterCommitId added in v1.12.31

func (s *CommentsForPullRequest) SetAfterCommitId(v string) *CommentsForPullRequest

SetAfterCommitId sets the AfterCommitId field's value.

func (*CommentsForPullRequest) SetBeforeBlobId added in v1.12.31

func (s *CommentsForPullRequest) SetBeforeBlobId(v string) *CommentsForPullRequest

SetBeforeBlobId sets the BeforeBlobId field's value.

func (*CommentsForPullRequest) SetBeforeCommitId added in v1.12.31

func (s *CommentsForPullRequest) SetBeforeCommitId(v string) *CommentsForPullRequest

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*CommentsForPullRequest) SetComments added in v1.12.31

SetComments sets the Comments field's value.

func (*CommentsForPullRequest) SetLocation added in v1.12.31

SetLocation sets the Location field's value.

func (*CommentsForPullRequest) SetPullRequestId added in v1.12.31

func (s *CommentsForPullRequest) SetPullRequestId(v string) *CommentsForPullRequest

SetPullRequestId sets the PullRequestId field's value.

func (*CommentsForPullRequest) SetRepositoryName added in v1.12.31

func (s *CommentsForPullRequest) SetRepositoryName(v string) *CommentsForPullRequest

SetRepositoryName sets the RepositoryName field's value.

func (CommentsForPullRequest) String added in v1.12.31

func (s CommentsForPullRequest) String() string

String returns the string representation

type Commit added in v1.1.9

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.

func (Commit) GoString added in v1.1.9

func (s Commit) GoString() string

GoString returns the string representation

func (*Commit) SetAdditionalData added in v1.5.0

func (s *Commit) SetAdditionalData(v string) *Commit

SetAdditionalData sets the AdditionalData field's value.

func (*Commit) SetAuthor added in v1.5.0

func (s *Commit) SetAuthor(v *UserInfo) *Commit

SetAuthor sets the Author field's value.

func (*Commit) SetCommitId added in v1.12.10

func (s *Commit) SetCommitId(v string) *Commit

SetCommitId sets the CommitId field's value.

func (*Commit) SetCommitter added in v1.5.0

func (s *Commit) SetCommitter(v *UserInfo) *Commit

SetCommitter sets the Committer field's value.

func (*Commit) SetMessage added in v1.5.0

func (s *Commit) SetMessage(v string) *Commit

SetMessage sets the Message field's value.

func (*Commit) SetParents added in v1.5.0

func (s *Commit) SetParents(v []*string) *Commit

SetParents sets the Parents field's value.

func (*Commit) SetTreeId added in v1.5.0

func (s *Commit) SetTreeId(v string) *Commit

SetTreeId sets the TreeId field's value.

func (Commit) String added in v1.1.9

func (s Commit) String() string

String returns the string representation

type Conflict added in v1.99.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.

func (Conflict) GoString added in v1.99.0

func (s Conflict) GoString() string

GoString returns the string representation

func (*Conflict) SetConflictMetadata added in v1.99.0

func (s *Conflict) SetConflictMetadata(v *ConflictMetadata) *Conflict

SetConflictMetadata sets the ConflictMetadata field's value.

func (*Conflict) SetMergeHunks added in v1.99.0

func (s *Conflict) SetMergeHunks(v []*MergeHunk) *Conflict

SetMergeHunks sets the MergeHunks field's value.

func (Conflict) String added in v1.99.0

func (s Conflict) String() string

String returns the string representation

type ConflictMetadata added in v1.99.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.

func (ConflictMetadata) GoString added in v1.99.0

func (s ConflictMetadata) GoString() string

GoString returns the string representation

func (*ConflictMetadata) SetContentConflict added in v1.99.0

func (s *ConflictMetadata) SetContentConflict(v bool) *ConflictMetadata

SetContentConflict sets the ContentConflict field's value.

func (*ConflictMetadata) SetFileModeConflict added in v1.99.0

func (s *ConflictMetadata) SetFileModeConflict(v bool) *ConflictMetadata

SetFileModeConflict sets the FileModeConflict field's value.

func (*ConflictMetadata) SetFileModes added in v1.99.0

func (s *ConflictMetadata) SetFileModes(v *FileModes) *ConflictMetadata

SetFileModes sets the FileModes field's value.

func (*ConflictMetadata) SetFilePath added in v1.99.0

func (s *ConflictMetadata) SetFilePath(v string) *ConflictMetadata

SetFilePath sets the FilePath field's value.

func (*ConflictMetadata) SetFileSizes added in v1.99.0

func (s *ConflictMetadata) SetFileSizes(v *FileSizes) *ConflictMetadata

SetFileSizes sets the FileSizes field's value.

func (*ConflictMetadata) SetIsBinaryFile added in v1.99.0

func (s *ConflictMetadata) SetIsBinaryFile(v *IsBinaryFile) *ConflictMetadata

SetIsBinaryFile sets the IsBinaryFile field's value.

func (*ConflictMetadata) SetMergeOperations added in v1.99.0

func (s *ConflictMetadata) SetMergeOperations(v *MergeOperations) *ConflictMetadata

SetMergeOperations sets the MergeOperations field's value.

func (*ConflictMetadata) SetNumberOfConflicts added in v1.99.0

func (s *ConflictMetadata) SetNumberOfConflicts(v int64) *ConflictMetadata

SetNumberOfConflicts sets the NumberOfConflicts field's value.

func (*ConflictMetadata) SetObjectTypeConflict added in v1.99.0

func (s *ConflictMetadata) SetObjectTypeConflict(v bool) *ConflictMetadata

SetObjectTypeConflict sets the ObjectTypeConflict field's value.

func (*ConflictMetadata) SetObjectTypes added in v1.99.0

func (s *ConflictMetadata) SetObjectTypes(v *ObjectTypes) *ConflictMetadata

SetObjectTypes sets the ObjectTypes field's value.

func (ConflictMetadata) String added in v1.99.0

func (s ConflictMetadata) String() string

String returns the string representation

type ConflictResolution added in v1.99.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.

func (ConflictResolution) GoString added in v1.99.0

func (s ConflictResolution) GoString() string

GoString returns the string representation

func (*ConflictResolution) SetDeleteFiles added in v1.99.0

func (s *ConflictResolution) SetDeleteFiles(v []*DeleteFileEntry) *ConflictResolution

SetDeleteFiles sets the DeleteFiles field's value.

func (*ConflictResolution) SetReplaceContents added in v1.99.0

func (s *ConflictResolution) SetReplaceContents(v []*ReplaceContentEntry) *ConflictResolution

SetReplaceContents sets the ReplaceContents field's value.

func (*ConflictResolution) SetSetFileModes added in v1.99.0

func (s *ConflictResolution) SetSetFileModes(v []*SetFileModeEntry) *ConflictResolution

SetSetFileModes sets the SetFileModes field's value.

func (ConflictResolution) String added in v1.99.0

func (s ConflictResolution) String() string

String returns the string representation

func (*ConflictResolution) Validate added in v1.99.0

func (s *ConflictResolution) Validate() error

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

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.

func (CreateBranchInput) GoString

func (s CreateBranchInput) GoString() string

GoString returns the string representation

func (*CreateBranchInput) SetBranchName added in v1.5.0

func (s *CreateBranchInput) SetBranchName(v string) *CreateBranchInput

SetBranchName sets the BranchName field's value.

func (*CreateBranchInput) SetCommitId added in v1.5.0

func (s *CreateBranchInput) SetCommitId(v string) *CreateBranchInput

SetCommitId sets the CommitId field's value.

func (*CreateBranchInput) SetRepositoryName added in v1.5.0

func (s *CreateBranchInput) SetRepositoryName(v string) *CreateBranchInput

SetRepositoryName sets the RepositoryName field's value.

func (CreateBranchInput) String

func (s CreateBranchInput) String() string

String returns the string representation

func (*CreateBranchInput) Validate added in v1.1.21

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
}

func (CreateBranchOutput) GoString

func (s CreateBranchOutput) GoString() string

GoString returns the string representation

func (CreateBranchOutput) String

func (s CreateBranchOutput) String() string

String returns the string representation

type CreateCommitInput added in v1.99.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
}

func (CreateCommitInput) GoString added in v1.99.0

func (s CreateCommitInput) GoString() string

GoString returns the string representation

func (*CreateCommitInput) SetAuthorName added in v1.99.0

func (s *CreateCommitInput) SetAuthorName(v string) *CreateCommitInput

SetAuthorName sets the AuthorName field's value.

func (*CreateCommitInput) SetBranchName added in v1.99.0

func (s *CreateCommitInput) SetBranchName(v string) *CreateCommitInput

SetBranchName sets the BranchName field's value.

func (*CreateCommitInput) SetCommitMessage added in v1.99.0

func (s *CreateCommitInput) SetCommitMessage(v string) *CreateCommitInput

SetCommitMessage sets the CommitMessage field's value.

func (*CreateCommitInput) SetDeleteFiles added in v1.99.0

func (s *CreateCommitInput) SetDeleteFiles(v []*DeleteFileEntry) *CreateCommitInput

SetDeleteFiles sets the DeleteFiles field's value.

func (*CreateCommitInput) SetEmail added in v1.99.0

func (s *CreateCommitInput) SetEmail(v string) *CreateCommitInput

SetEmail sets the Email field's value.

func (*CreateCommitInput) SetKeepEmptyFolders added in v1.99.0

func (s *CreateCommitInput) SetKeepEmptyFolders(v bool) *CreateCommitInput

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*CreateCommitInput) SetParentCommitId added in v1.99.0

func (s *CreateCommitInput) SetParentCommitId(v string) *CreateCommitInput

SetParentCommitId sets the ParentCommitId field's value.

func (*CreateCommitInput) SetPutFiles added in v1.99.0

func (s *CreateCommitInput) SetPutFiles(v []*PutFileEntry) *CreateCommitInput

SetPutFiles sets the PutFiles field's value.

func (*CreateCommitInput) SetRepositoryName added in v1.99.0

func (s *CreateCommitInput) SetRepositoryName(v string) *CreateCommitInput

SetRepositoryName sets the RepositoryName field's value.

func (*CreateCommitInput) SetSetFileModes added in v1.99.0

func (s *CreateCommitInput) SetSetFileModes(v []*SetFileModeEntry) *CreateCommitInput

SetSetFileModes sets the SetFileModes field's value.

func (CreateCommitInput) String added in v1.99.0

func (s CreateCommitInput) String() string

String returns the string representation

func (*CreateCommitInput) Validate added in v1.99.0

func (s *CreateCommitInput) Validate() error

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

type CreateCommitOutput added in v1.99.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
}

func (CreateCommitOutput) GoString added in v1.99.0

func (s CreateCommitOutput) GoString() string

GoString returns the string representation

func (*CreateCommitOutput) SetCommitId added in v1.99.0

func (s *CreateCommitOutput) SetCommitId(v string) *CreateCommitOutput

SetCommitId sets the CommitId field's value.

func (*CreateCommitOutput) SetFilesAdded added in v1.99.0

func (s *CreateCommitOutput) SetFilesAdded(v []*FileMetadata) *CreateCommitOutput

SetFilesAdded sets the FilesAdded field's value.

func (*CreateCommitOutput) SetFilesDeleted added in v1.99.0

func (s *CreateCommitOutput) SetFilesDeleted(v []*FileMetadata) *CreateCommitOutput

SetFilesDeleted sets the FilesDeleted field's value.

func (*CreateCommitOutput) SetFilesUpdated added in v1.99.0

func (s *CreateCommitOutput) SetFilesUpdated(v []*FileMetadata) *CreateCommitOutput

SetFilesUpdated sets the FilesUpdated field's value.

func (*CreateCommitOutput) SetTreeId added in v1.99.0

func (s *CreateCommitOutput) SetTreeId(v string) *CreateCommitOutput

SetTreeId sets the TreeId field's value.

func (CreateCommitOutput) String added in v1.99.0

func (s CreateCommitOutput) String() string

String returns the string representation

type CreatePullRequestInput added in v1.12.31

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
}

func (CreatePullRequestInput) GoString added in v1.12.31

func (s CreatePullRequestInput) GoString() string

GoString returns the string representation

func (*CreatePullRequestInput) SetClientRequestToken added in v1.12.31

func (s *CreatePullRequestInput) SetClientRequestToken(v string) *CreatePullRequestInput

SetClientRequestToken sets the ClientRequestToken field's value.

func (*CreatePullRequestInput) SetDescription added in v1.12.31

SetDescription sets the Description field's value.

func (*CreatePullRequestInput) SetTargets added in v1.12.31

SetTargets sets the Targets field's value.

func (*CreatePullRequestInput) SetTitle added in v1.12.31

SetTitle sets the Title field's value.

func (CreatePullRequestInput) String added in v1.12.31

func (s CreatePullRequestInput) String() string

String returns the string representation

func (*CreatePullRequestInput) Validate added in v1.12.31

func (s *CreatePullRequestInput) Validate() error

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

type CreatePullRequestOutput added in v1.12.31

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
}

func (CreatePullRequestOutput) GoString added in v1.12.31

func (s CreatePullRequestOutput) GoString() string

GoString returns the string representation

func (*CreatePullRequestOutput) SetPullRequest added in v1.12.31

SetPullRequest sets the PullRequest field's value.

func (CreatePullRequestOutput) String added in v1.12.31

func (s CreatePullRequestOutput) String() string

String returns the string representation

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.

func (CreateRepositoryInput) GoString

func (s CreateRepositoryInput) GoString() string

GoString returns the string representation

func (*CreateRepositoryInput) SetRepositoryDescription added in v1.5.0

func (s *CreateRepositoryInput) SetRepositoryDescription(v string) *CreateRepositoryInput

SetRepositoryDescription sets the RepositoryDescription field's value.

func (*CreateRepositoryInput) SetRepositoryName added in v1.5.0

func (s *CreateRepositoryInput) SetRepositoryName(v string) *CreateRepositoryInput

SetRepositoryName sets the RepositoryName field's value.

func (*CreateRepositoryInput) SetTags added in v1.99.0

SetTags sets the Tags field's value.

func (CreateRepositoryInput) String

func (s CreateRepositoryInput) String() string

String returns the string representation

func (*CreateRepositoryInput) Validate added in v1.1.21

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.

func (CreateRepositoryOutput) GoString

func (s CreateRepositoryOutput) GoString() string

GoString returns the string representation

func (*CreateRepositoryOutput) SetRepositoryMetadata added in v1.5.0

SetRepositoryMetadata sets the RepositoryMetadata field's value.

func (CreateRepositoryOutput) String

func (s CreateRepositoryOutput) String() string

String returns the string representation

type CreateUnreferencedMergeCommitInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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 *string `locationName:"mergeOption" type:"string" required:"true" enum:"MergeOptionTypeEnum"`

	// 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
}

func (CreateUnreferencedMergeCommitInput) GoString added in v1.99.0

GoString returns the string representation

func (*CreateUnreferencedMergeCommitInput) SetAuthorName added in v1.99.0

SetAuthorName sets the AuthorName field's value.

func (*CreateUnreferencedMergeCommitInput) SetCommitMessage added in v1.99.0

SetCommitMessage sets the CommitMessage field's value.

func (*CreateUnreferencedMergeCommitInput) SetConflictDetailLevel added in v1.99.0

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*CreateUnreferencedMergeCommitInput) SetConflictResolution added in v1.99.0

SetConflictResolution sets the ConflictResolution field's value.

func (*CreateUnreferencedMergeCommitInput) SetConflictResolutionStrategy added in v1.99.0

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*CreateUnreferencedMergeCommitInput) SetDestinationCommitSpecifier added in v1.99.0

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*CreateUnreferencedMergeCommitInput) SetEmail added in v1.99.0

SetEmail sets the Email field's value.

func (*CreateUnreferencedMergeCommitInput) SetKeepEmptyFolders added in v1.99.0

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*CreateUnreferencedMergeCommitInput) SetMergeOption added in v1.99.0

SetMergeOption sets the MergeOption field's value.

func (*CreateUnreferencedMergeCommitInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*CreateUnreferencedMergeCommitInput) SetSourceCommitSpecifier added in v1.99.0

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (CreateUnreferencedMergeCommitInput) String added in v1.99.0

String returns the string representation

func (*CreateUnreferencedMergeCommitInput) Validate added in v1.99.0

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

type CreateUnreferencedMergeCommitOutput added in v1.99.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
}

func (CreateUnreferencedMergeCommitOutput) GoString added in v1.99.0

GoString returns the string representation

func (*CreateUnreferencedMergeCommitOutput) SetCommitId added in v1.99.0

SetCommitId sets the CommitId field's value.

func (*CreateUnreferencedMergeCommitOutput) SetTreeId added in v1.99.0

SetTreeId sets the TreeId field's value.

func (CreateUnreferencedMergeCommitOutput) String added in v1.99.0

String returns the string representation

type DeleteBranchInput added in v1.12.10

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.

func (DeleteBranchInput) GoString added in v1.12.10

func (s DeleteBranchInput) GoString() string

GoString returns the string representation

func (*DeleteBranchInput) SetBranchName added in v1.12.10

func (s *DeleteBranchInput) SetBranchName(v string) *DeleteBranchInput

SetBranchName sets the BranchName field's value.

func (*DeleteBranchInput) SetRepositoryName added in v1.12.10

func (s *DeleteBranchInput) SetRepositoryName(v string) *DeleteBranchInput

SetRepositoryName sets the RepositoryName field's value.

func (DeleteBranchInput) String added in v1.12.10

func (s DeleteBranchInput) String() string

String returns the string representation

func (*DeleteBranchInput) Validate added in v1.12.10

func (s *DeleteBranchInput) Validate() error

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

type DeleteBranchOutput added in v1.12.10

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.

func (DeleteBranchOutput) GoString added in v1.12.10

func (s DeleteBranchOutput) GoString() string

GoString returns the string representation

func (*DeleteBranchOutput) SetDeletedBranch added in v1.12.10

func (s *DeleteBranchOutput) SetDeletedBranch(v *BranchInfo) *DeleteBranchOutput

SetDeletedBranch sets the DeletedBranch field's value.

func (DeleteBranchOutput) String added in v1.12.10

func (s DeleteBranchOutput) String() string

String returns the string representation

type DeleteCommentContentInput added in v1.12.31

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
}

func (DeleteCommentContentInput) GoString added in v1.12.31

func (s DeleteCommentContentInput) GoString() string

GoString returns the string representation

func (*DeleteCommentContentInput) SetCommentId added in v1.12.31

SetCommentId sets the CommentId field's value.

func (DeleteCommentContentInput) String added in v1.12.31

func (s DeleteCommentContentInput) String() string

String returns the string representation

func (*DeleteCommentContentInput) Validate added in v1.12.31

func (s *DeleteCommentContentInput) Validate() error

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

type DeleteCommentContentOutput added in v1.12.31

type DeleteCommentContentOutput struct {

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

func (DeleteCommentContentOutput) GoString added in v1.12.31

func (s DeleteCommentContentOutput) GoString() string

GoString returns the string representation

func (*DeleteCommentContentOutput) SetComment added in v1.12.31

SetComment sets the Comment field's value.

func (DeleteCommentContentOutput) String added in v1.12.31

String returns the string representation

type DeleteFileEntry added in v1.99.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.

func (DeleteFileEntry) GoString added in v1.99.0

func (s DeleteFileEntry) GoString() string

GoString returns the string representation

func (*DeleteFileEntry) SetFilePath added in v1.99.0

func (s *DeleteFileEntry) SetFilePath(v string) *DeleteFileEntry

SetFilePath sets the FilePath field's value.

func (DeleteFileEntry) String added in v1.99.0

func (s DeleteFileEntry) String() string

String returns the string representation

func (*DeleteFileEntry) Validate added in v1.99.0

func (s *DeleteFileEntry) Validate() error

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

type DeleteFileInput added in v1.99.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
}

func (DeleteFileInput) GoString added in v1.99.0

func (s DeleteFileInput) GoString() string

GoString returns the string representation

func (*DeleteFileInput) SetBranchName added in v1.99.0

func (s *DeleteFileInput) SetBranchName(v string) *DeleteFileInput

SetBranchName sets the BranchName field's value.

func (*DeleteFileInput) SetCommitMessage added in v1.99.0

func (s *DeleteFileInput) SetCommitMessage(v string) *DeleteFileInput

SetCommitMessage sets the CommitMessage field's value.

func (*DeleteFileInput) SetEmail added in v1.99.0

func (s *DeleteFileInput) SetEmail(v string) *DeleteFileInput

SetEmail sets the Email field's value.

func (*DeleteFileInput) SetFilePath added in v1.99.0

func (s *DeleteFileInput) SetFilePath(v string) *DeleteFileInput

SetFilePath sets the FilePath field's value.

func (*DeleteFileInput) SetKeepEmptyFolders added in v1.99.0

func (s *DeleteFileInput) SetKeepEmptyFolders(v bool) *DeleteFileInput

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*DeleteFileInput) SetName added in v1.99.0

func (s *DeleteFileInput) SetName(v string) *DeleteFileInput

SetName sets the Name field's value.

func (*DeleteFileInput) SetParentCommitId added in v1.99.0

func (s *DeleteFileInput) SetParentCommitId(v string) *DeleteFileInput

SetParentCommitId sets the ParentCommitId field's value.

func (*DeleteFileInput) SetRepositoryName added in v1.99.0

func (s *DeleteFileInput) SetRepositoryName(v string) *DeleteFileInput

SetRepositoryName sets the RepositoryName field's value.

func (DeleteFileInput) String added in v1.99.0

func (s DeleteFileInput) String() string

String returns the string representation

func (*DeleteFileInput) Validate added in v1.99.0

func (s *DeleteFileInput) Validate() error

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

type DeleteFileOutput added in v1.99.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
}

func (DeleteFileOutput) GoString added in v1.99.0

func (s DeleteFileOutput) GoString() string

GoString returns the string representation

func (*DeleteFileOutput) SetBlobId added in v1.99.0

func (s *DeleteFileOutput) SetBlobId(v string) *DeleteFileOutput

SetBlobId sets the BlobId field's value.

func (*DeleteFileOutput) SetCommitId added in v1.99.0

func (s *DeleteFileOutput) SetCommitId(v string) *DeleteFileOutput

SetCommitId sets the CommitId field's value.

func (*DeleteFileOutput) SetFilePath added in v1.99.0

func (s *DeleteFileOutput) SetFilePath(v string) *DeleteFileOutput

SetFilePath sets the FilePath field's value.

func (*DeleteFileOutput) SetTreeId added in v1.99.0

func (s *DeleteFileOutput) SetTreeId(v string) *DeleteFileOutput

SetTreeId sets the TreeId field's value.

func (DeleteFileOutput) String added in v1.99.0

func (s DeleteFileOutput) String() string

String returns the string representation

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.

func (DeleteRepositoryInput) GoString

func (s DeleteRepositoryInput) GoString() string

GoString returns the string representation

func (*DeleteRepositoryInput) SetRepositoryName added in v1.5.0

func (s *DeleteRepositoryInput) SetRepositoryName(v string) *DeleteRepositoryInput

SetRepositoryName sets the RepositoryName field's value.

func (DeleteRepositoryInput) String

func (s DeleteRepositoryInput) String() string

String returns the string representation

func (*DeleteRepositoryInput) Validate added in v1.1.21

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.

func (DeleteRepositoryOutput) GoString

func (s DeleteRepositoryOutput) GoString() string

GoString returns the string representation

func (*DeleteRepositoryOutput) SetRepositoryId added in v1.5.0

func (s *DeleteRepositoryOutput) SetRepositoryId(v string) *DeleteRepositoryOutput

SetRepositoryId sets the RepositoryId field's value.

func (DeleteRepositoryOutput) String

func (s DeleteRepositoryOutput) String() string

String returns the string representation

type DescribeMergeConflictsInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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 *string `locationName:"mergeOption" type:"string" required:"true" enum:"MergeOptionTypeEnum"`

	// 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
}

func (DescribeMergeConflictsInput) GoString added in v1.99.0

func (s DescribeMergeConflictsInput) GoString() string

GoString returns the string representation

func (*DescribeMergeConflictsInput) SetConflictDetailLevel added in v1.99.0

func (s *DescribeMergeConflictsInput) SetConflictDetailLevel(v string) *DescribeMergeConflictsInput

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*DescribeMergeConflictsInput) SetConflictResolutionStrategy added in v1.99.0

func (s *DescribeMergeConflictsInput) SetConflictResolutionStrategy(v string) *DescribeMergeConflictsInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*DescribeMergeConflictsInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *DescribeMergeConflictsInput) SetDestinationCommitSpecifier(v string) *DescribeMergeConflictsInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*DescribeMergeConflictsInput) SetFilePath added in v1.99.0

SetFilePath sets the FilePath field's value.

func (*DescribeMergeConflictsInput) SetMaxMergeHunks added in v1.99.0

SetMaxMergeHunks sets the MaxMergeHunks field's value.

func (*DescribeMergeConflictsInput) SetMergeOption added in v1.99.0

SetMergeOption sets the MergeOption field's value.

func (*DescribeMergeConflictsInput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*DescribeMergeConflictsInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*DescribeMergeConflictsInput) SetSourceCommitSpecifier added in v1.99.0

func (s *DescribeMergeConflictsInput) SetSourceCommitSpecifier(v string) *DescribeMergeConflictsInput

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (DescribeMergeConflictsInput) String added in v1.99.0

String returns the string representation

func (*DescribeMergeConflictsInput) Validate added in v1.99.0

func (s *DescribeMergeConflictsInput) Validate() error

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

type DescribeMergeConflictsOutput added in v1.99.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
}

func (DescribeMergeConflictsOutput) GoString added in v1.99.0

func (s DescribeMergeConflictsOutput) GoString() string

GoString returns the string representation

func (*DescribeMergeConflictsOutput) SetBaseCommitId added in v1.99.0

SetBaseCommitId sets the BaseCommitId field's value.

func (*DescribeMergeConflictsOutput) SetConflictMetadata added in v1.99.0

SetConflictMetadata sets the ConflictMetadata field's value.

func (*DescribeMergeConflictsOutput) SetDestinationCommitId added in v1.99.0

SetDestinationCommitId sets the DestinationCommitId field's value.

func (*DescribeMergeConflictsOutput) SetMergeHunks added in v1.99.0

SetMergeHunks sets the MergeHunks field's value.

func (*DescribeMergeConflictsOutput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*DescribeMergeConflictsOutput) SetSourceCommitId added in v1.99.0

SetSourceCommitId sets the SourceCommitId field's value.

func (DescribeMergeConflictsOutput) String added in v1.99.0

String returns the string representation

type DescribePullRequestEventsInput added in v1.12.31

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 *string `locationName:"pullRequestEventType" type:"string" enum:"PullRequestEventType"`

	// 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
}

func (DescribePullRequestEventsInput) GoString added in v1.12.31

GoString returns the string representation

func (*DescribePullRequestEventsInput) SetActorArn added in v1.12.31

SetActorArn sets the ActorArn field's value.

func (*DescribePullRequestEventsInput) SetMaxResults added in v1.12.31

SetMaxResults sets the MaxResults field's value.

func (*DescribePullRequestEventsInput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (*DescribePullRequestEventsInput) SetPullRequestEventType added in v1.12.31

SetPullRequestEventType sets the PullRequestEventType field's value.

func (*DescribePullRequestEventsInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (DescribePullRequestEventsInput) String added in v1.12.31

String returns the string representation

func (*DescribePullRequestEventsInput) Validate added in v1.12.31

func (s *DescribePullRequestEventsInput) Validate() error

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

type DescribePullRequestEventsOutput added in v1.12.31

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
}

func (DescribePullRequestEventsOutput) GoString added in v1.12.31

GoString returns the string representation

func (*DescribePullRequestEventsOutput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (*DescribePullRequestEventsOutput) SetPullRequestEvents added in v1.12.31

SetPullRequestEvents sets the PullRequestEvents field's value.

func (DescribePullRequestEventsOutput) String added in v1.12.31

String returns the string representation

type Difference added in v1.6.16

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 *string `locationName:"changeType" type:"string" enum:"ChangeTypeEnum"`
	// contains filtered or unexported fields
}

Returns information about a set of differences for a commit specifier.

func (Difference) GoString added in v1.6.16

func (s Difference) GoString() string

GoString returns the string representation

func (*Difference) SetAfterBlob added in v1.6.16

func (s *Difference) SetAfterBlob(v *BlobMetadata) *Difference

SetAfterBlob sets the AfterBlob field's value.

func (*Difference) SetBeforeBlob added in v1.6.16

func (s *Difference) SetBeforeBlob(v *BlobMetadata) *Difference

SetBeforeBlob sets the BeforeBlob field's value.

func (*Difference) SetChangeType added in v1.6.16

func (s *Difference) SetChangeType(v string) *Difference

SetChangeType sets the ChangeType field's value.

func (Difference) String added in v1.6.16

func (s Difference) String() string

String returns the string representation

type File added in v1.99.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 *string `locationName:"fileMode" type:"string" enum:"FileModeTypeEnum"`

	// 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.

func (File) GoString added in v1.99.0

func (s File) GoString() string

GoString returns the string representation

func (*File) SetAbsolutePath added in v1.99.0

func (s *File) SetAbsolutePath(v string) *File

SetAbsolutePath sets the AbsolutePath field's value.

func (*File) SetBlobId added in v1.99.0

func (s *File) SetBlobId(v string) *File

SetBlobId sets the BlobId field's value.

func (*File) SetFileMode added in v1.99.0

func (s *File) SetFileMode(v string) *File

SetFileMode sets the FileMode field's value.

func (*File) SetRelativePath added in v1.99.0

func (s *File) SetRelativePath(v string) *File

SetRelativePath sets the RelativePath field's value.

func (File) String added in v1.99.0

func (s File) String() string

String returns the string representation

type FileMetadata added in v1.99.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 *string `locationName:"fileMode" type:"string" enum:"FileModeTypeEnum"`
	// contains filtered or unexported fields
}

A file that will be added, updated, or deleted as part of a commit.

func (FileMetadata) GoString added in v1.99.0

func (s FileMetadata) GoString() string

GoString returns the string representation

func (*FileMetadata) SetAbsolutePath added in v1.99.0

func (s *FileMetadata) SetAbsolutePath(v string) *FileMetadata

SetAbsolutePath sets the AbsolutePath field's value.

func (*FileMetadata) SetBlobId added in v1.99.0

func (s *FileMetadata) SetBlobId(v string) *FileMetadata

SetBlobId sets the BlobId field's value.

func (*FileMetadata) SetFileMode added in v1.99.0

func (s *FileMetadata) SetFileMode(v string) *FileMetadata

SetFileMode sets the FileMode field's value.

func (FileMetadata) String added in v1.99.0

func (s FileMetadata) String() string

String returns the string representation

type FileModes added in v1.99.0

type FileModes struct {

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

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

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

Information about file modes in a merge or pull request.

func (FileModes) GoString added in v1.99.0

func (s FileModes) GoString() string

GoString returns the string representation

func (*FileModes) SetBase added in v1.99.0

func (s *FileModes) SetBase(v string) *FileModes

SetBase sets the Base field's value.

func (*FileModes) SetDestination added in v1.99.0

func (s *FileModes) SetDestination(v string) *FileModes

SetDestination sets the Destination field's value.

func (*FileModes) SetSource added in v1.99.0

func (s *FileModes) SetSource(v string) *FileModes

SetSource sets the Source field's value.

func (FileModes) String added in v1.99.0

func (s FileModes) String() string

String returns the string representation

type FileSizes added in v1.99.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.

func (FileSizes) GoString added in v1.99.0

func (s FileSizes) GoString() string

GoString returns the string representation

func (*FileSizes) SetBase added in v1.99.0

func (s *FileSizes) SetBase(v int64) *FileSizes

SetBase sets the Base field's value.

func (*FileSizes) SetDestination added in v1.99.0

func (s *FileSizes) SetDestination(v int64) *FileSizes

SetDestination sets the Destination field's value.

func (*FileSizes) SetSource added in v1.99.0

func (s *FileSizes) SetSource(v int64) *FileSizes

SetSource sets the Source field's value.

func (FileSizes) String added in v1.99.0

func (s FileSizes) String() string

String returns the string representation

type Folder added in v1.99.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.

func (Folder) GoString added in v1.99.0

func (s Folder) GoString() string

GoString returns the string representation

func (*Folder) SetAbsolutePath added in v1.99.0

func (s *Folder) SetAbsolutePath(v string) *Folder

SetAbsolutePath sets the AbsolutePath field's value.

func (*Folder) SetRelativePath added in v1.99.0

func (s *Folder) SetRelativePath(v string) *Folder

SetRelativePath sets the RelativePath field's value.

func (*Folder) SetTreeId added in v1.99.0

func (s *Folder) SetTreeId(v string) *Folder

SetTreeId sets the TreeId field's value.

func (Folder) String added in v1.99.0

func (s Folder) String() string

String returns the string representation

type GetBlobInput added in v1.6.16

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.

func (GetBlobInput) GoString added in v1.6.16

func (s GetBlobInput) GoString() string

GoString returns the string representation

func (*GetBlobInput) SetBlobId added in v1.6.16

func (s *GetBlobInput) SetBlobId(v string) *GetBlobInput

SetBlobId sets the BlobId field's value.

func (*GetBlobInput) SetRepositoryName added in v1.6.16

func (s *GetBlobInput) SetRepositoryName(v string) *GetBlobInput

SetRepositoryName sets the RepositoryName field's value.

func (GetBlobInput) String added in v1.6.16

func (s GetBlobInput) String() string

String returns the string representation

func (*GetBlobInput) Validate added in v1.6.16

func (s *GetBlobInput) Validate() error

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

type GetBlobOutput added in v1.6.16

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.

func (GetBlobOutput) GoString added in v1.6.16

func (s GetBlobOutput) GoString() string

GoString returns the string representation

func (*GetBlobOutput) SetContent added in v1.6.16

func (s *GetBlobOutput) SetContent(v []byte) *GetBlobOutput

SetContent sets the Content field's value.

func (GetBlobOutput) String added in v1.6.16

func (s GetBlobOutput) String() string

String returns the string representation

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.

func (GetBranchInput) GoString

func (s GetBranchInput) GoString() string

GoString returns the string representation

func (*GetBranchInput) SetBranchName added in v1.5.0

func (s *GetBranchInput) SetBranchName(v string) *GetBranchInput

SetBranchName sets the BranchName field's value.

func (*GetBranchInput) SetRepositoryName added in v1.5.0

func (s *GetBranchInput) SetRepositoryName(v string) *GetBranchInput

SetRepositoryName sets the RepositoryName field's value.

func (GetBranchInput) String

func (s GetBranchInput) String() string

String returns the string representation

func (*GetBranchInput) Validate added in v1.1.21

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.

func (GetBranchOutput) GoString

func (s GetBranchOutput) GoString() string

GoString returns the string representation

func (*GetBranchOutput) SetBranch added in v1.5.0

func (s *GetBranchOutput) SetBranch(v *BranchInfo) *GetBranchOutput

SetBranch sets the Branch field's value.

func (GetBranchOutput) String

func (s GetBranchOutput) String() string

String returns the string representation

type GetCommentInput added in v1.12.31

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
}

func (GetCommentInput) GoString added in v1.12.31

func (s GetCommentInput) GoString() string

GoString returns the string representation

func (*GetCommentInput) SetCommentId added in v1.12.31

func (s *GetCommentInput) SetCommentId(v string) *GetCommentInput

SetCommentId sets the CommentId field's value.

func (GetCommentInput) String added in v1.12.31

func (s GetCommentInput) String() string

String returns the string representation

func (*GetCommentInput) Validate added in v1.12.31

func (s *GetCommentInput) Validate() error

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

type GetCommentOutput added in v1.12.31

type GetCommentOutput struct {

	// The contents of the comment.
	Comment *Comment `locationName:"comment" type:"structure"`
	// contains filtered or unexported fields
}

func (GetCommentOutput) GoString added in v1.12.31

func (s GetCommentOutput) GoString() string

GoString returns the string representation

func (*GetCommentOutput) SetComment added in v1.12.31

func (s *GetCommentOutput) SetComment(v *Comment) *GetCommentOutput

SetComment sets the Comment field's value.

func (GetCommentOutput) String added in v1.12.31

func (s GetCommentOutput) String() string

String returns the string representation

type GetCommentsForComparedCommitInput added in v1.12.31

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
}

func (GetCommentsForComparedCommitInput) GoString added in v1.12.31

GoString returns the string representation

func (*GetCommentsForComparedCommitInput) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*GetCommentsForComparedCommitInput) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*GetCommentsForComparedCommitInput) SetMaxResults added in v1.12.31

SetMaxResults sets the MaxResults field's value.

func (*GetCommentsForComparedCommitInput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (*GetCommentsForComparedCommitInput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (GetCommentsForComparedCommitInput) String added in v1.12.31

String returns the string representation

func (*GetCommentsForComparedCommitInput) Validate added in v1.12.31

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

type GetCommentsForComparedCommitOutput added in v1.12.31

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
}

func (GetCommentsForComparedCommitOutput) GoString added in v1.12.31

GoString returns the string representation

func (*GetCommentsForComparedCommitOutput) SetCommentsForComparedCommitData added in v1.12.31

SetCommentsForComparedCommitData sets the CommentsForComparedCommitData field's value.

func (*GetCommentsForComparedCommitOutput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (GetCommentsForComparedCommitOutput) String added in v1.12.31

String returns the string representation

type GetCommentsForPullRequestInput added in v1.12.31

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
}

func (GetCommentsForPullRequestInput) GoString added in v1.12.31

GoString returns the string representation

func (*GetCommentsForPullRequestInput) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*GetCommentsForPullRequestInput) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*GetCommentsForPullRequestInput) SetMaxResults added in v1.12.31

SetMaxResults sets the MaxResults field's value.

func (*GetCommentsForPullRequestInput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (*GetCommentsForPullRequestInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (*GetCommentsForPullRequestInput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (GetCommentsForPullRequestInput) String added in v1.12.31

String returns the string representation

func (*GetCommentsForPullRequestInput) Validate added in v1.12.31

func (s *GetCommentsForPullRequestInput) Validate() error

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

type GetCommentsForPullRequestOutput added in v1.12.31

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
}

func (GetCommentsForPullRequestOutput) GoString added in v1.12.31

GoString returns the string representation

func (*GetCommentsForPullRequestOutput) SetCommentsForPullRequestData added in v1.12.31

SetCommentsForPullRequestData sets the CommentsForPullRequestData field's value.

func (*GetCommentsForPullRequestOutput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (GetCommentsForPullRequestOutput) String added in v1.12.31

String returns the string representation

type GetCommitInput added in v1.1.9

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.

func (GetCommitInput) GoString added in v1.1.9

func (s GetCommitInput) GoString() string

GoString returns the string representation

func (*GetCommitInput) SetCommitId added in v1.5.0

func (s *GetCommitInput) SetCommitId(v string) *GetCommitInput

SetCommitId sets the CommitId field's value.

func (*GetCommitInput) SetRepositoryName added in v1.5.0

func (s *GetCommitInput) SetRepositoryName(v string) *GetCommitInput

SetRepositoryName sets the RepositoryName field's value.

func (GetCommitInput) String added in v1.1.9

func (s GetCommitInput) String() string

String returns the string representation

func (*GetCommitInput) Validate added in v1.1.21

func (s *GetCommitInput) Validate() error

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

type GetCommitOutput added in v1.1.9

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.

func (GetCommitOutput) GoString added in v1.1.9

func (s GetCommitOutput) GoString() string

GoString returns the string representation

func (*GetCommitOutput) SetCommit added in v1.5.0

func (s *GetCommitOutput) SetCommit(v *Commit) *GetCommitOutput

SetCommit sets the Commit field's value.

func (GetCommitOutput) String added in v1.1.9

func (s GetCommitOutput) String() string

String returns the string representation

type GetDifferencesInput added in v1.6.16

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
}

func (GetDifferencesInput) GoString added in v1.6.16

func (s GetDifferencesInput) GoString() string

GoString returns the string representation

func (*GetDifferencesInput) SetAfterCommitSpecifier added in v1.6.16

func (s *GetDifferencesInput) SetAfterCommitSpecifier(v string) *GetDifferencesInput

SetAfterCommitSpecifier sets the AfterCommitSpecifier field's value.

func (*GetDifferencesInput) SetAfterPath added in v1.6.16

func (s *GetDifferencesInput) SetAfterPath(v string) *GetDifferencesInput

SetAfterPath sets the AfterPath field's value.

func (*GetDifferencesInput) SetBeforeCommitSpecifier added in v1.6.16

func (s *GetDifferencesInput) SetBeforeCommitSpecifier(v string) *GetDifferencesInput

SetBeforeCommitSpecifier sets the BeforeCommitSpecifier field's value.

func (*GetDifferencesInput) SetBeforePath added in v1.6.16

func (s *GetDifferencesInput) SetBeforePath(v string) *GetDifferencesInput

SetBeforePath sets the BeforePath field's value.

func (*GetDifferencesInput) SetMaxResults added in v1.6.16

func (s *GetDifferencesInput) SetMaxResults(v int64) *GetDifferencesInput

SetMaxResults sets the MaxResults field's value.

func (*GetDifferencesInput) SetNextToken added in v1.6.16

func (s *GetDifferencesInput) SetNextToken(v string) *GetDifferencesInput

SetNextToken sets the NextToken field's value.

func (*GetDifferencesInput) SetRepositoryName added in v1.6.16

func (s *GetDifferencesInput) SetRepositoryName(v string) *GetDifferencesInput

SetRepositoryName sets the RepositoryName field's value.

func (GetDifferencesInput) String added in v1.6.16

func (s GetDifferencesInput) String() string

String returns the string representation

func (*GetDifferencesInput) Validate added in v1.6.16

func (s *GetDifferencesInput) Validate() error

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

type GetDifferencesOutput added in v1.6.16

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
}

func (GetDifferencesOutput) GoString added in v1.6.16

func (s GetDifferencesOutput) GoString() string

GoString returns the string representation

func (*GetDifferencesOutput) SetDifferences added in v1.6.16

func (s *GetDifferencesOutput) SetDifferences(v []*Difference) *GetDifferencesOutput

SetDifferences sets the Differences field's value.

func (*GetDifferencesOutput) SetNextToken added in v1.6.16

func (s *GetDifferencesOutput) SetNextToken(v string) *GetDifferencesOutput

SetNextToken sets the NextToken field's value.

func (GetDifferencesOutput) String added in v1.6.16

func (s GetDifferencesOutput) String() string

String returns the string representation

type GetFileInput added in v1.99.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
}

func (GetFileInput) GoString added in v1.99.0

func (s GetFileInput) GoString() string

GoString returns the string representation

func (*GetFileInput) SetCommitSpecifier added in v1.99.0

func (s *GetFileInput) SetCommitSpecifier(v string) *GetFileInput

SetCommitSpecifier sets the CommitSpecifier field's value.

func (*GetFileInput) SetFilePath added in v1.99.0

func (s *GetFileInput) SetFilePath(v string) *GetFileInput

SetFilePath sets the FilePath field's value.

func (*GetFileInput) SetRepositoryName added in v1.99.0

func (s *GetFileInput) SetRepositoryName(v string) *GetFileInput

SetRepositoryName sets the RepositoryName field's value.

func (GetFileInput) String added in v1.99.0

func (s GetFileInput) String() string

String returns the string representation

func (*GetFileInput) Validate added in v1.99.0

func (s *GetFileInput) Validate() error

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

type GetFileOutput added in v1.99.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 *string `locationName:"fileMode" type:"string" required:"true" enum:"FileModeTypeEnum"`

	// 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
}

func (GetFileOutput) GoString added in v1.99.0

func (s GetFileOutput) GoString() string

GoString returns the string representation

func (*GetFileOutput) SetBlobId added in v1.99.0

func (s *GetFileOutput) SetBlobId(v string) *GetFileOutput

SetBlobId sets the BlobId field's value.

func (*GetFileOutput) SetCommitId added in v1.99.0

func (s *GetFileOutput) SetCommitId(v string) *GetFileOutput

SetCommitId sets the CommitId field's value.

func (*GetFileOutput) SetFileContent added in v1.99.0

func (s *GetFileOutput) SetFileContent(v []byte) *GetFileOutput

SetFileContent sets the FileContent field's value.

func (*GetFileOutput) SetFileMode added in v1.99.0

func (s *GetFileOutput) SetFileMode(v string) *GetFileOutput

SetFileMode sets the FileMode field's value.

func (*GetFileOutput) SetFilePath added in v1.99.0

func (s *GetFileOutput) SetFilePath(v string) *GetFileOutput

SetFilePath sets the FilePath field's value.

func (*GetFileOutput) SetFileSize added in v1.99.0

func (s *GetFileOutput) SetFileSize(v int64) *GetFileOutput

SetFileSize sets the FileSize field's value.

func (GetFileOutput) String added in v1.99.0

func (s GetFileOutput) String() string

String returns the string representation

type GetFolderInput added in v1.99.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
}

func (GetFolderInput) GoString added in v1.99.0

func (s GetFolderInput) GoString() string

GoString returns the string representation

func (*GetFolderInput) SetCommitSpecifier added in v1.99.0

func (s *GetFolderInput) SetCommitSpecifier(v string) *GetFolderInput

SetCommitSpecifier sets the CommitSpecifier field's value.

func (*GetFolderInput) SetFolderPath added in v1.99.0

func (s *GetFolderInput) SetFolderPath(v string) *GetFolderInput

SetFolderPath sets the FolderPath field's value.

func (*GetFolderInput) SetRepositoryName added in v1.99.0

func (s *GetFolderInput) SetRepositoryName(v string) *GetFolderInput

SetRepositoryName sets the RepositoryName field's value.

func (GetFolderInput) String added in v1.99.0

func (s GetFolderInput) String() string

String returns the string representation

func (*GetFolderInput) Validate added in v1.99.0

func (s *GetFolderInput) Validate() error

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

type GetFolderOutput added in v1.99.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
}

func (GetFolderOutput) GoString added in v1.99.0

func (s GetFolderOutput) GoString() string

GoString returns the string representation

func (*GetFolderOutput) SetCommitId added in v1.99.0

func (s *GetFolderOutput) SetCommitId(v string) *GetFolderOutput

SetCommitId sets the CommitId field's value.

func (*GetFolderOutput) SetFiles added in v1.99.0

func (s *GetFolderOutput) SetFiles(v []*File) *GetFolderOutput

SetFiles sets the Files field's value.

func (*GetFolderOutput) SetFolderPath added in v1.99.0

func (s *GetFolderOutput) SetFolderPath(v string) *GetFolderOutput

SetFolderPath sets the FolderPath field's value.

func (*GetFolderOutput) SetSubFolders added in v1.99.0

func (s *GetFolderOutput) SetSubFolders(v []*Folder) *GetFolderOutput

SetSubFolders sets the SubFolders field's value.

func (*GetFolderOutput) SetSubModules added in v1.99.0

func (s *GetFolderOutput) SetSubModules(v []*SubModule) *GetFolderOutput

SetSubModules sets the SubModules field's value.

func (s *GetFolderOutput) SetSymbolicLinks(v []*SymbolicLink) *GetFolderOutput

SetSymbolicLinks sets the SymbolicLinks field's value.

func (*GetFolderOutput) SetTreeId added in v1.99.0

func (s *GetFolderOutput) SetTreeId(v string) *GetFolderOutput

SetTreeId sets the TreeId field's value.

func (GetFolderOutput) String added in v1.99.0

func (s GetFolderOutput) String() string

String returns the string representation

type GetMergeCommitInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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
}

func (GetMergeCommitInput) GoString added in v1.99.0

func (s GetMergeCommitInput) GoString() string

GoString returns the string representation

func (*GetMergeCommitInput) SetConflictDetailLevel added in v1.99.0

func (s *GetMergeCommitInput) SetConflictDetailLevel(v string) *GetMergeCommitInput

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*GetMergeCommitInput) SetConflictResolutionStrategy added in v1.99.0

func (s *GetMergeCommitInput) SetConflictResolutionStrategy(v string) *GetMergeCommitInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*GetMergeCommitInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *GetMergeCommitInput) SetDestinationCommitSpecifier(v string) *GetMergeCommitInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*GetMergeCommitInput) SetRepositoryName added in v1.99.0

func (s *GetMergeCommitInput) SetRepositoryName(v string) *GetMergeCommitInput

SetRepositoryName sets the RepositoryName field's value.

func (*GetMergeCommitInput) SetSourceCommitSpecifier added in v1.99.0

func (s *GetMergeCommitInput) SetSourceCommitSpecifier(v string) *GetMergeCommitInput

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (GetMergeCommitInput) String added in v1.99.0

func (s GetMergeCommitInput) String() string

String returns the string representation

func (*GetMergeCommitInput) Validate added in v1.99.0

func (s *GetMergeCommitInput) Validate() error

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

type GetMergeCommitOutput added in v1.99.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
}

func (GetMergeCommitOutput) GoString added in v1.99.0

func (s GetMergeCommitOutput) GoString() string

GoString returns the string representation

func (*GetMergeCommitOutput) SetBaseCommitId added in v1.99.0

func (s *GetMergeCommitOutput) SetBaseCommitId(v string) *GetMergeCommitOutput

SetBaseCommitId sets the BaseCommitId field's value.

func (*GetMergeCommitOutput) SetDestinationCommitId added in v1.99.0

func (s *GetMergeCommitOutput) SetDestinationCommitId(v string) *GetMergeCommitOutput

SetDestinationCommitId sets the DestinationCommitId field's value.

func (*GetMergeCommitOutput) SetMergedCommitId added in v1.99.0

func (s *GetMergeCommitOutput) SetMergedCommitId(v string) *GetMergeCommitOutput

SetMergedCommitId sets the MergedCommitId field's value.

func (*GetMergeCommitOutput) SetSourceCommitId added in v1.99.0

func (s *GetMergeCommitOutput) SetSourceCommitId(v string) *GetMergeCommitOutput

SetSourceCommitId sets the SourceCommitId field's value.

func (GetMergeCommitOutput) String added in v1.99.0

func (s GetMergeCommitOutput) String() string

String returns the string representation

type GetMergeConflictsInput added in v1.12.31

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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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 *string `locationName:"mergeOption" type:"string" required:"true" enum:"MergeOptionTypeEnum"`

	// 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
}

func (GetMergeConflictsInput) GoString added in v1.12.31

func (s GetMergeConflictsInput) GoString() string

GoString returns the string representation

func (*GetMergeConflictsInput) SetConflictDetailLevel added in v1.99.0

func (s *GetMergeConflictsInput) SetConflictDetailLevel(v string) *GetMergeConflictsInput

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*GetMergeConflictsInput) SetConflictResolutionStrategy added in v1.99.0

func (s *GetMergeConflictsInput) SetConflictResolutionStrategy(v string) *GetMergeConflictsInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*GetMergeConflictsInput) SetDestinationCommitSpecifier added in v1.12.31

func (s *GetMergeConflictsInput) SetDestinationCommitSpecifier(v string) *GetMergeConflictsInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*GetMergeConflictsInput) SetMaxConflictFiles added in v1.99.0

func (s *GetMergeConflictsInput) SetMaxConflictFiles(v int64) *GetMergeConflictsInput

SetMaxConflictFiles sets the MaxConflictFiles field's value.

func (*GetMergeConflictsInput) SetMergeOption added in v1.12.31

SetMergeOption sets the MergeOption field's value.

func (*GetMergeConflictsInput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*GetMergeConflictsInput) SetRepositoryName added in v1.12.31

func (s *GetMergeConflictsInput) SetRepositoryName(v string) *GetMergeConflictsInput

SetRepositoryName sets the RepositoryName field's value.

func (*GetMergeConflictsInput) SetSourceCommitSpecifier added in v1.12.31

func (s *GetMergeConflictsInput) SetSourceCommitSpecifier(v string) *GetMergeConflictsInput

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (GetMergeConflictsInput) String added in v1.12.31

func (s GetMergeConflictsInput) String() string

String returns the string representation

func (*GetMergeConflictsInput) Validate added in v1.12.31

func (s *GetMergeConflictsInput) Validate() error

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

type GetMergeConflictsOutput added in v1.12.31

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
}

func (GetMergeConflictsOutput) GoString added in v1.12.31

func (s GetMergeConflictsOutput) GoString() string

GoString returns the string representation

func (*GetMergeConflictsOutput) SetBaseCommitId added in v1.99.0

SetBaseCommitId sets the BaseCommitId field's value.

func (*GetMergeConflictsOutput) SetConflictMetadataList added in v1.99.0

func (s *GetMergeConflictsOutput) SetConflictMetadataList(v []*ConflictMetadata) *GetMergeConflictsOutput

SetConflictMetadataList sets the ConflictMetadataList field's value.

func (*GetMergeConflictsOutput) SetDestinationCommitId added in v1.12.31

func (s *GetMergeConflictsOutput) SetDestinationCommitId(v string) *GetMergeConflictsOutput

SetDestinationCommitId sets the DestinationCommitId field's value.

func (*GetMergeConflictsOutput) SetMergeable added in v1.12.31

SetMergeable sets the Mergeable field's value.

func (*GetMergeConflictsOutput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*GetMergeConflictsOutput) SetSourceCommitId added in v1.12.31

func (s *GetMergeConflictsOutput) SetSourceCommitId(v string) *GetMergeConflictsOutput

SetSourceCommitId sets the SourceCommitId field's value.

func (GetMergeConflictsOutput) String added in v1.12.31

func (s GetMergeConflictsOutput) String() string

String returns the string representation

type GetMergeOptionsInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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
}

func (GetMergeOptionsInput) GoString added in v1.99.0

func (s GetMergeOptionsInput) GoString() string

GoString returns the string representation

func (*GetMergeOptionsInput) SetConflictDetailLevel added in v1.99.0

func (s *GetMergeOptionsInput) SetConflictDetailLevel(v string) *GetMergeOptionsInput

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*GetMergeOptionsInput) SetConflictResolutionStrategy added in v1.99.0

func (s *GetMergeOptionsInput) SetConflictResolutionStrategy(v string) *GetMergeOptionsInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*GetMergeOptionsInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *GetMergeOptionsInput) SetDestinationCommitSpecifier(v string) *GetMergeOptionsInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*GetMergeOptionsInput) SetRepositoryName added in v1.99.0

func (s *GetMergeOptionsInput) SetRepositoryName(v string) *GetMergeOptionsInput

SetRepositoryName sets the RepositoryName field's value.

func (*GetMergeOptionsInput) SetSourceCommitSpecifier added in v1.99.0

func (s *GetMergeOptionsInput) SetSourceCommitSpecifier(v string) *GetMergeOptionsInput

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (GetMergeOptionsInput) String added in v1.99.0

func (s GetMergeOptionsInput) String() string

String returns the string representation

func (*GetMergeOptionsInput) Validate added in v1.99.0

func (s *GetMergeOptionsInput) Validate() error

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

type GetMergeOptionsOutput added in v1.99.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 []*string `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
}

func (GetMergeOptionsOutput) GoString added in v1.99.0

func (s GetMergeOptionsOutput) GoString() string

GoString returns the string representation

func (*GetMergeOptionsOutput) SetBaseCommitId added in v1.99.0

func (s *GetMergeOptionsOutput) SetBaseCommitId(v string) *GetMergeOptionsOutput

SetBaseCommitId sets the BaseCommitId field's value.

func (*GetMergeOptionsOutput) SetDestinationCommitId added in v1.99.0

func (s *GetMergeOptionsOutput) SetDestinationCommitId(v string) *GetMergeOptionsOutput

SetDestinationCommitId sets the DestinationCommitId field's value.

func (*GetMergeOptionsOutput) SetMergeOptions added in v1.99.0

func (s *GetMergeOptionsOutput) SetMergeOptions(v []*string) *GetMergeOptionsOutput

SetMergeOptions sets the MergeOptions field's value.

func (*GetMergeOptionsOutput) SetSourceCommitId added in v1.99.0

func (s *GetMergeOptionsOutput) SetSourceCommitId(v string) *GetMergeOptionsOutput

SetSourceCommitId sets the SourceCommitId field's value.

func (GetMergeOptionsOutput) String added in v1.99.0

func (s GetMergeOptionsOutput) String() string

String returns the string representation

type GetPullRequestInput added in v1.12.31

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
}

func (GetPullRequestInput) GoString added in v1.12.31

func (s GetPullRequestInput) GoString() string

GoString returns the string representation

func (*GetPullRequestInput) SetPullRequestId added in v1.12.31

func (s *GetPullRequestInput) SetPullRequestId(v string) *GetPullRequestInput

SetPullRequestId sets the PullRequestId field's value.

func (GetPullRequestInput) String added in v1.12.31

func (s GetPullRequestInput) String() string

String returns the string representation

func (*GetPullRequestInput) Validate added in v1.12.31

func (s *GetPullRequestInput) Validate() error

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

type GetPullRequestOutput added in v1.12.31

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
}

func (GetPullRequestOutput) GoString added in v1.12.31

func (s GetPullRequestOutput) GoString() string

GoString returns the string representation

func (*GetPullRequestOutput) SetPullRequest added in v1.12.31

func (s *GetPullRequestOutput) SetPullRequest(v *PullRequest) *GetPullRequestOutput

SetPullRequest sets the PullRequest field's value.

func (GetPullRequestOutput) String added in v1.12.31

func (s GetPullRequestOutput) String() string

String returns the string representation

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.

func (GetRepositoryInput) GoString

func (s GetRepositoryInput) GoString() string

GoString returns the string representation

func (*GetRepositoryInput) SetRepositoryName added in v1.5.0

func (s *GetRepositoryInput) SetRepositoryName(v string) *GetRepositoryInput

SetRepositoryName sets the RepositoryName field's value.

func (GetRepositoryInput) String

func (s GetRepositoryInput) String() string

String returns the string representation

func (*GetRepositoryInput) Validate added in v1.1.21

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.

func (GetRepositoryOutput) GoString

func (s GetRepositoryOutput) GoString() string

GoString returns the string representation

func (*GetRepositoryOutput) SetRepositoryMetadata added in v1.5.0

func (s *GetRepositoryOutput) SetRepositoryMetadata(v *RepositoryMetadata) *GetRepositoryOutput

SetRepositoryMetadata sets the RepositoryMetadata field's value.

func (GetRepositoryOutput) String

func (s GetRepositoryOutput) String() string

String returns the string representation

type GetRepositoryTriggersInput added in v1.1.9

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.

func (GetRepositoryTriggersInput) GoString added in v1.1.9

func (s GetRepositoryTriggersInput) GoString() string

GoString returns the string representation

func (*GetRepositoryTriggersInput) SetRepositoryName added in v1.5.0

SetRepositoryName sets the RepositoryName field's value.

func (GetRepositoryTriggersInput) String added in v1.1.9

String returns the string representation

func (*GetRepositoryTriggersInput) Validate added in v1.1.21

func (s *GetRepositoryTriggersInput) Validate() error

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

type GetRepositoryTriggersOutput added in v1.1.9

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.

func (GetRepositoryTriggersOutput) GoString added in v1.1.9

func (s GetRepositoryTriggersOutput) GoString() string

GoString returns the string representation

func (*GetRepositoryTriggersOutput) SetConfigurationId added in v1.5.0

SetConfigurationId sets the ConfigurationId field's value.

func (*GetRepositoryTriggersOutput) SetTriggers added in v1.5.0

SetTriggers sets the Triggers field's value.

func (GetRepositoryTriggersOutput) String added in v1.1.9

String returns the string representation

type IsBinaryFile added in v1.99.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.

func (IsBinaryFile) GoString added in v1.99.0

func (s IsBinaryFile) GoString() string

GoString returns the string representation

func (*IsBinaryFile) SetBase added in v1.99.0

func (s *IsBinaryFile) SetBase(v bool) *IsBinaryFile

SetBase sets the Base field's value.

func (*IsBinaryFile) SetDestination added in v1.99.0

func (s *IsBinaryFile) SetDestination(v bool) *IsBinaryFile

SetDestination sets the Destination field's value.

func (*IsBinaryFile) SetSource added in v1.99.0

func (s *IsBinaryFile) SetSource(v bool) *IsBinaryFile

SetSource sets the Source field's value.

func (IsBinaryFile) String added in v1.99.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.

func (ListBranchesInput) GoString

func (s ListBranchesInput) GoString() string

GoString returns the string representation

func (*ListBranchesInput) SetNextToken added in v1.5.0

func (s *ListBranchesInput) SetNextToken(v string) *ListBranchesInput

SetNextToken sets the NextToken field's value.

func (*ListBranchesInput) SetRepositoryName added in v1.5.0

func (s *ListBranchesInput) SetRepositoryName(v string) *ListBranchesInput

SetRepositoryName sets the RepositoryName field's value.

func (ListBranchesInput) String

func (s ListBranchesInput) String() string

String returns the string representation

func (*ListBranchesInput) Validate added in v1.1.21

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.

func (ListBranchesOutput) GoString

func (s ListBranchesOutput) GoString() string

GoString returns the string representation

func (*ListBranchesOutput) SetBranches added in v1.5.0

func (s *ListBranchesOutput) SetBranches(v []*string) *ListBranchesOutput

SetBranches sets the Branches field's value.

func (*ListBranchesOutput) SetNextToken added in v1.5.0

func (s *ListBranchesOutput) SetNextToken(v string) *ListBranchesOutput

SetNextToken sets the NextToken field's value.

func (ListBranchesOutput) String

func (s ListBranchesOutput) String() string

String returns the string representation

type ListPullRequestsInput added in v1.12.31

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 *string `locationName:"pullRequestStatus" type:"string" enum:"PullRequestStatusEnum"`

	// 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
}

func (ListPullRequestsInput) GoString added in v1.12.31

func (s ListPullRequestsInput) GoString() string

GoString returns the string representation

func (*ListPullRequestsInput) SetAuthorArn added in v1.12.31

SetAuthorArn sets the AuthorArn field's value.

func (*ListPullRequestsInput) SetMaxResults added in v1.12.31

func (s *ListPullRequestsInput) SetMaxResults(v int64) *ListPullRequestsInput

SetMaxResults sets the MaxResults field's value.

func (*ListPullRequestsInput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (*ListPullRequestsInput) SetPullRequestStatus added in v1.12.31

func (s *ListPullRequestsInput) SetPullRequestStatus(v string) *ListPullRequestsInput

SetPullRequestStatus sets the PullRequestStatus field's value.

func (*ListPullRequestsInput) SetRepositoryName added in v1.12.31

func (s *ListPullRequestsInput) SetRepositoryName(v string) *ListPullRequestsInput

SetRepositoryName sets the RepositoryName field's value.

func (ListPullRequestsInput) String added in v1.12.31

func (s ListPullRequestsInput) String() string

String returns the string representation

func (*ListPullRequestsInput) Validate added in v1.12.31

func (s *ListPullRequestsInput) Validate() error

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

type ListPullRequestsOutput added in v1.12.31

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
}

func (ListPullRequestsOutput) GoString added in v1.12.31

func (s ListPullRequestsOutput) GoString() string

GoString returns the string representation

func (*ListPullRequestsOutput) SetNextToken added in v1.12.31

SetNextToken sets the NextToken field's value.

func (*ListPullRequestsOutput) SetPullRequestIds added in v1.12.31

func (s *ListPullRequestsOutput) SetPullRequestIds(v []*string) *ListPullRequestsOutput

SetPullRequestIds sets the PullRequestIds field's value.

func (ListPullRequestsOutput) String added in v1.12.31

func (s ListPullRequestsOutput) String() string

String returns the string representation

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 *string `locationName:"order" type:"string" enum:"OrderEnum"`

	// The criteria used to sort the results of a list repositories operation.
	SortBy *string `locationName:"sortBy" type:"string" enum:"SortByEnum"`
	// contains filtered or unexported fields
}

Represents the input of a list repositories operation.

func (ListRepositoriesInput) GoString

func (s ListRepositoriesInput) GoString() string

GoString returns the string representation

func (*ListRepositoriesInput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*ListRepositoriesInput) SetOrder added in v1.5.0

SetOrder sets the Order field's value.

func (*ListRepositoriesInput) SetSortBy added in v1.5.0

SetSortBy sets the SortBy field's value.

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.

func (ListRepositoriesOutput) GoString

func (s ListRepositoriesOutput) GoString() string

GoString returns the string representation

func (*ListRepositoriesOutput) SetNextToken added in v1.5.0

SetNextToken sets the NextToken field's value.

func (*ListRepositoriesOutput) SetRepositories added in v1.5.0

SetRepositories sets the Repositories field's value.

func (ListRepositoriesOutput) String

func (s ListRepositoriesOutput) String() string

String returns the string representation

type ListTagsForResourceInput added in v1.99.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
}

func (ListTagsForResourceInput) GoString added in v1.99.0

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceInput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceInput) SetResourceArn added in v1.99.0

SetResourceArn sets the ResourceArn field's value.

func (ListTagsForResourceInput) String added in v1.99.0

func (s ListTagsForResourceInput) String() string

String returns the string representation

func (*ListTagsForResourceInput) Validate added in v1.99.0

func (s *ListTagsForResourceInput) Validate() error

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

type ListTagsForResourceOutput added in v1.99.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
}

func (ListTagsForResourceOutput) GoString added in v1.99.0

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation

func (*ListTagsForResourceOutput) SetNextToken added in v1.99.0

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceOutput) SetTags added in v1.99.0

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String added in v1.99.0

func (s ListTagsForResourceOutput) String() string

String returns the string representation

type Location added in v1.12.31

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 *string `locationName:"relativeFileVersion" type:"string" enum:"RelativeFileVersionEnum"`
	// 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.

func (Location) GoString added in v1.12.31

func (s Location) GoString() string

GoString returns the string representation

func (*Location) SetFilePath added in v1.12.31

func (s *Location) SetFilePath(v string) *Location

SetFilePath sets the FilePath field's value.

func (*Location) SetFilePosition added in v1.12.31

func (s *Location) SetFilePosition(v int64) *Location

SetFilePosition sets the FilePosition field's value.

func (*Location) SetRelativeFileVersion added in v1.12.31

func (s *Location) SetRelativeFileVersion(v string) *Location

SetRelativeFileVersion sets the RelativeFileVersion field's value.

func (Location) String added in v1.12.31

func (s Location) String() string

String returns the string representation

type MergeBranchesByFastForwardInput added in v1.99.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
}

func (MergeBranchesByFastForwardInput) GoString added in v1.99.0

GoString returns the string representation

func (*MergeBranchesByFastForwardInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *MergeBranchesByFastForwardInput) SetDestinationCommitSpecifier(v string) *MergeBranchesByFastForwardInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*MergeBranchesByFastForwardInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*MergeBranchesByFastForwardInput) SetSourceCommitSpecifier added in v1.99.0

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (*MergeBranchesByFastForwardInput) SetTargetBranch added in v1.99.0

SetTargetBranch sets the TargetBranch field's value.

func (MergeBranchesByFastForwardInput) String added in v1.99.0

String returns the string representation

func (*MergeBranchesByFastForwardInput) Validate added in v1.99.0

func (s *MergeBranchesByFastForwardInput) Validate() error

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

type MergeBranchesByFastForwardOutput added in v1.99.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
}

func (MergeBranchesByFastForwardOutput) GoString added in v1.99.0

GoString returns the string representation

func (*MergeBranchesByFastForwardOutput) SetCommitId added in v1.99.0

SetCommitId sets the CommitId field's value.

func (*MergeBranchesByFastForwardOutput) SetTreeId added in v1.99.0

SetTreeId sets the TreeId field's value.

func (MergeBranchesByFastForwardOutput) String added in v1.99.0

String returns the string representation

type MergeBranchesBySquashInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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
}

func (MergeBranchesBySquashInput) GoString added in v1.99.0

func (s MergeBranchesBySquashInput) GoString() string

GoString returns the string representation

func (*MergeBranchesBySquashInput) SetAuthorName added in v1.99.0

SetAuthorName sets the AuthorName field's value.

func (*MergeBranchesBySquashInput) SetCommitMessage added in v1.99.0

SetCommitMessage sets the CommitMessage field's value.

func (*MergeBranchesBySquashInput) SetConflictDetailLevel added in v1.99.0

func (s *MergeBranchesBySquashInput) SetConflictDetailLevel(v string) *MergeBranchesBySquashInput

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*MergeBranchesBySquashInput) SetConflictResolution added in v1.99.0

SetConflictResolution sets the ConflictResolution field's value.

func (*MergeBranchesBySquashInput) SetConflictResolutionStrategy added in v1.99.0

func (s *MergeBranchesBySquashInput) SetConflictResolutionStrategy(v string) *MergeBranchesBySquashInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*MergeBranchesBySquashInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *MergeBranchesBySquashInput) SetDestinationCommitSpecifier(v string) *MergeBranchesBySquashInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*MergeBranchesBySquashInput) SetEmail added in v1.99.0

SetEmail sets the Email field's value.

func (*MergeBranchesBySquashInput) SetKeepEmptyFolders added in v1.99.0

func (s *MergeBranchesBySquashInput) SetKeepEmptyFolders(v bool) *MergeBranchesBySquashInput

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*MergeBranchesBySquashInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*MergeBranchesBySquashInput) SetSourceCommitSpecifier added in v1.99.0

func (s *MergeBranchesBySquashInput) SetSourceCommitSpecifier(v string) *MergeBranchesBySquashInput

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (*MergeBranchesBySquashInput) SetTargetBranch added in v1.99.0

SetTargetBranch sets the TargetBranch field's value.

func (MergeBranchesBySquashInput) String added in v1.99.0

String returns the string representation

func (*MergeBranchesBySquashInput) Validate added in v1.99.0

func (s *MergeBranchesBySquashInput) Validate() error

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

type MergeBranchesBySquashOutput added in v1.99.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
}

func (MergeBranchesBySquashOutput) GoString added in v1.99.0

func (s MergeBranchesBySquashOutput) GoString() string

GoString returns the string representation

func (*MergeBranchesBySquashOutput) SetCommitId added in v1.99.0

SetCommitId sets the CommitId field's value.

func (*MergeBranchesBySquashOutput) SetTreeId added in v1.99.0

SetTreeId sets the TreeId field's value.

func (MergeBranchesBySquashOutput) String added in v1.99.0

String returns the string representation

type MergeBranchesByThreeWayInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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
}

func (MergeBranchesByThreeWayInput) GoString added in v1.99.0

func (s MergeBranchesByThreeWayInput) GoString() string

GoString returns the string representation

func (*MergeBranchesByThreeWayInput) SetAuthorName added in v1.99.0

SetAuthorName sets the AuthorName field's value.

func (*MergeBranchesByThreeWayInput) SetCommitMessage added in v1.99.0

SetCommitMessage sets the CommitMessage field's value.

func (*MergeBranchesByThreeWayInput) SetConflictDetailLevel added in v1.99.0

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*MergeBranchesByThreeWayInput) SetConflictResolution added in v1.99.0

SetConflictResolution sets the ConflictResolution field's value.

func (*MergeBranchesByThreeWayInput) SetConflictResolutionStrategy added in v1.99.0

func (s *MergeBranchesByThreeWayInput) SetConflictResolutionStrategy(v string) *MergeBranchesByThreeWayInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*MergeBranchesByThreeWayInput) SetDestinationCommitSpecifier added in v1.99.0

func (s *MergeBranchesByThreeWayInput) SetDestinationCommitSpecifier(v string) *MergeBranchesByThreeWayInput

SetDestinationCommitSpecifier sets the DestinationCommitSpecifier field's value.

func (*MergeBranchesByThreeWayInput) SetEmail added in v1.99.0

SetEmail sets the Email field's value.

func (*MergeBranchesByThreeWayInput) SetKeepEmptyFolders added in v1.99.0

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*MergeBranchesByThreeWayInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*MergeBranchesByThreeWayInput) SetSourceCommitSpecifier added in v1.99.0

func (s *MergeBranchesByThreeWayInput) SetSourceCommitSpecifier(v string) *MergeBranchesByThreeWayInput

SetSourceCommitSpecifier sets the SourceCommitSpecifier field's value.

func (*MergeBranchesByThreeWayInput) SetTargetBranch added in v1.99.0

SetTargetBranch sets the TargetBranch field's value.

func (MergeBranchesByThreeWayInput) String added in v1.99.0

String returns the string representation

func (*MergeBranchesByThreeWayInput) Validate added in v1.99.0

func (s *MergeBranchesByThreeWayInput) Validate() error

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

type MergeBranchesByThreeWayOutput added in v1.99.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
}

func (MergeBranchesByThreeWayOutput) GoString added in v1.99.0

GoString returns the string representation

func (*MergeBranchesByThreeWayOutput) SetCommitId added in v1.99.0

SetCommitId sets the CommitId field's value.

func (*MergeBranchesByThreeWayOutput) SetTreeId added in v1.99.0

SetTreeId sets the TreeId field's value.

func (MergeBranchesByThreeWayOutput) String added in v1.99.0

String returns the string representation

type MergeHunk added in v1.99.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.

func (MergeHunk) GoString added in v1.99.0

func (s MergeHunk) GoString() string

GoString returns the string representation

func (*MergeHunk) SetBase added in v1.99.0

func (s *MergeHunk) SetBase(v *MergeHunkDetail) *MergeHunk

SetBase sets the Base field's value.

func (*MergeHunk) SetDestination added in v1.99.0

func (s *MergeHunk) SetDestination(v *MergeHunkDetail) *MergeHunk

SetDestination sets the Destination field's value.

func (*MergeHunk) SetIsConflict added in v1.99.0

func (s *MergeHunk) SetIsConflict(v bool) *MergeHunk

SetIsConflict sets the IsConflict field's value.

func (*MergeHunk) SetSource added in v1.99.0

func (s *MergeHunk) SetSource(v *MergeHunkDetail) *MergeHunk

SetSource sets the Source field's value.

func (MergeHunk) String added in v1.99.0

func (s MergeHunk) String() string

String returns the string representation

type MergeHunkDetail added in v1.99.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.

func (MergeHunkDetail) GoString added in v1.99.0

func (s MergeHunkDetail) GoString() string

GoString returns the string representation

func (*MergeHunkDetail) SetEndLine added in v1.99.0

func (s *MergeHunkDetail) SetEndLine(v int64) *MergeHunkDetail

SetEndLine sets the EndLine field's value.

func (*MergeHunkDetail) SetHunkContent added in v1.99.0

func (s *MergeHunkDetail) SetHunkContent(v string) *MergeHunkDetail

SetHunkContent sets the HunkContent field's value.

func (*MergeHunkDetail) SetStartLine added in v1.99.0

func (s *MergeHunkDetail) SetStartLine(v int64) *MergeHunkDetail

SetStartLine sets the StartLine field's value.

func (MergeHunkDetail) String added in v1.99.0

func (s MergeHunkDetail) String() string

String returns the string representation

type MergeMetadata added in v1.12.31

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 *string `locationName:"mergeOption" type:"string" enum:"MergeOptionTypeEnum"`

	// 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.

func (MergeMetadata) GoString added in v1.12.31

func (s MergeMetadata) GoString() string

GoString returns the string representation

func (*MergeMetadata) SetIsMerged added in v1.12.31

func (s *MergeMetadata) SetIsMerged(v bool) *MergeMetadata

SetIsMerged sets the IsMerged field's value.

func (*MergeMetadata) SetMergeCommitId added in v1.99.0

func (s *MergeMetadata) SetMergeCommitId(v string) *MergeMetadata

SetMergeCommitId sets the MergeCommitId field's value.

func (*MergeMetadata) SetMergeOption added in v1.99.0

func (s *MergeMetadata) SetMergeOption(v string) *MergeMetadata

SetMergeOption sets the MergeOption field's value.

func (*MergeMetadata) SetMergedBy added in v1.12.31

func (s *MergeMetadata) SetMergedBy(v string) *MergeMetadata

SetMergedBy sets the MergedBy field's value.

func (MergeMetadata) String added in v1.12.31

func (s MergeMetadata) String() string

String returns the string representation

type MergeOperations added in v1.99.0

type MergeOperations struct {

	// The operation on a file in the destination of a merge or pull request.
	Destination *string `locationName:"destination" type:"string" enum:"ChangeTypeEnum"`

	// The operation on a file (add, modify, or delete) of a file in the source
	// of a merge or pull request.
	Source *string `locationName:"source" type:"string" enum:"ChangeTypeEnum"`
	// contains filtered or unexported fields
}

Information about the file operation conflicts in a merge operation.

func (MergeOperations) GoString added in v1.99.0

func (s MergeOperations) GoString() string

GoString returns the string representation

func (*MergeOperations) SetDestination added in v1.99.0

func (s *MergeOperations) SetDestination(v string) *MergeOperations

SetDestination sets the Destination field's value.

func (*MergeOperations) SetSource added in v1.99.0

func (s *MergeOperations) SetSource(v string) *MergeOperations

SetSource sets the Source field's value.

func (MergeOperations) String added in v1.99.0

func (s MergeOperations) String() string

String returns the string representation

type MergePullRequestByFastForwardInput added in v1.12.31

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
}

func (MergePullRequestByFastForwardInput) GoString added in v1.12.31

GoString returns the string representation

func (*MergePullRequestByFastForwardInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (*MergePullRequestByFastForwardInput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (*MergePullRequestByFastForwardInput) SetSourceCommitId added in v1.12.31

SetSourceCommitId sets the SourceCommitId field's value.

func (MergePullRequestByFastForwardInput) String added in v1.12.31

String returns the string representation

func (*MergePullRequestByFastForwardInput) Validate added in v1.12.31

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

type MergePullRequestByFastForwardOutput added in v1.12.31

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
}

func (MergePullRequestByFastForwardOutput) GoString added in v1.12.31

GoString returns the string representation

func (*MergePullRequestByFastForwardOutput) SetPullRequest added in v1.12.31

SetPullRequest sets the PullRequest field's value.

func (MergePullRequestByFastForwardOutput) String added in v1.12.31

String returns the string representation

type MergePullRequestBySquashInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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
}

func (MergePullRequestBySquashInput) GoString added in v1.99.0

GoString returns the string representation

func (*MergePullRequestBySquashInput) SetAuthorName added in v1.99.0

SetAuthorName sets the AuthorName field's value.

func (*MergePullRequestBySquashInput) SetCommitMessage added in v1.99.0

SetCommitMessage sets the CommitMessage field's value.

func (*MergePullRequestBySquashInput) SetConflictDetailLevel added in v1.99.0

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*MergePullRequestBySquashInput) SetConflictResolution added in v1.99.0

SetConflictResolution sets the ConflictResolution field's value.

func (*MergePullRequestBySquashInput) SetConflictResolutionStrategy added in v1.99.0

func (s *MergePullRequestBySquashInput) SetConflictResolutionStrategy(v string) *MergePullRequestBySquashInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*MergePullRequestBySquashInput) SetEmail added in v1.99.0

SetEmail sets the Email field's value.

func (*MergePullRequestBySquashInput) SetKeepEmptyFolders added in v1.99.0

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*MergePullRequestBySquashInput) SetPullRequestId added in v1.99.0

SetPullRequestId sets the PullRequestId field's value.

func (*MergePullRequestBySquashInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*MergePullRequestBySquashInput) SetSourceCommitId added in v1.99.0

SetSourceCommitId sets the SourceCommitId field's value.

func (MergePullRequestBySquashInput) String added in v1.99.0

String returns the string representation

func (*MergePullRequestBySquashInput) Validate added in v1.99.0

func (s *MergePullRequestBySquashInput) Validate() error

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

type MergePullRequestBySquashOutput added in v1.99.0

type MergePullRequestBySquashOutput struct {

	// Returns information about a pull request.
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure"`
	// contains filtered or unexported fields
}

func (MergePullRequestBySquashOutput) GoString added in v1.99.0

GoString returns the string representation

func (*MergePullRequestBySquashOutput) SetPullRequest added in v1.99.0

SetPullRequest sets the PullRequest field's value.

func (MergePullRequestBySquashOutput) String added in v1.99.0

String returns the string representation

type MergePullRequestByThreeWayInput added in v1.99.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 *string `locationName:"conflictDetailLevel" type:"string" enum:"ConflictDetailLevelTypeEnum"`

	// 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 *string `locationName:"conflictResolutionStrategy" type:"string" enum:"ConflictResolutionStrategyTypeEnum"`

	// 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
}

func (MergePullRequestByThreeWayInput) GoString added in v1.99.0

GoString returns the string representation

func (*MergePullRequestByThreeWayInput) SetAuthorName added in v1.99.0

SetAuthorName sets the AuthorName field's value.

func (*MergePullRequestByThreeWayInput) SetCommitMessage added in v1.99.0

SetCommitMessage sets the CommitMessage field's value.

func (*MergePullRequestByThreeWayInput) SetConflictDetailLevel added in v1.99.0

SetConflictDetailLevel sets the ConflictDetailLevel field's value.

func (*MergePullRequestByThreeWayInput) SetConflictResolution added in v1.99.0

SetConflictResolution sets the ConflictResolution field's value.

func (*MergePullRequestByThreeWayInput) SetConflictResolutionStrategy added in v1.99.0

func (s *MergePullRequestByThreeWayInput) SetConflictResolutionStrategy(v string) *MergePullRequestByThreeWayInput

SetConflictResolutionStrategy sets the ConflictResolutionStrategy field's value.

func (*MergePullRequestByThreeWayInput) SetEmail added in v1.99.0

SetEmail sets the Email field's value.

func (*MergePullRequestByThreeWayInput) SetKeepEmptyFolders added in v1.99.0

SetKeepEmptyFolders sets the KeepEmptyFolders field's value.

func (*MergePullRequestByThreeWayInput) SetPullRequestId added in v1.99.0

SetPullRequestId sets the PullRequestId field's value.

func (*MergePullRequestByThreeWayInput) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*MergePullRequestByThreeWayInput) SetSourceCommitId added in v1.99.0

SetSourceCommitId sets the SourceCommitId field's value.

func (MergePullRequestByThreeWayInput) String added in v1.99.0

String returns the string representation

func (*MergePullRequestByThreeWayInput) Validate added in v1.99.0

func (s *MergePullRequestByThreeWayInput) Validate() error

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

type MergePullRequestByThreeWayOutput added in v1.99.0

type MergePullRequestByThreeWayOutput struct {

	// Returns information about a pull request.
	PullRequest *PullRequest `locationName:"pullRequest" type:"structure"`
	// contains filtered or unexported fields
}

func (MergePullRequestByThreeWayOutput) GoString added in v1.99.0

GoString returns the string representation

func (*MergePullRequestByThreeWayOutput) SetPullRequest added in v1.99.0

SetPullRequest sets the PullRequest field's value.

func (MergePullRequestByThreeWayOutput) String added in v1.99.0

String returns the string representation

type ObjectTypes added in v1.99.0

type ObjectTypes struct {

	// The type of the object in the base commit of the merge.
	Base *string `locationName:"base" type:"string" enum:"ObjectTypeEnum"`

	// The type of the object in the destination branch.
	Destination *string `locationName:"destination" type:"string" enum:"ObjectTypeEnum"`

	// The type of the object in the source branch.
	Source *string `locationName:"source" type:"string" enum:"ObjectTypeEnum"`
	// contains filtered or unexported fields
}

Information about the type of an object in a merge operation.

func (ObjectTypes) GoString added in v1.99.0

func (s ObjectTypes) GoString() string

GoString returns the string representation

func (*ObjectTypes) SetBase added in v1.99.0

func (s *ObjectTypes) SetBase(v string) *ObjectTypes

SetBase sets the Base field's value.

func (*ObjectTypes) SetDestination added in v1.99.0

func (s *ObjectTypes) SetDestination(v string) *ObjectTypes

SetDestination sets the Destination field's value.

func (*ObjectTypes) SetSource added in v1.99.0

func (s *ObjectTypes) SetSource(v string) *ObjectTypes

SetSource sets the Source field's value.

func (ObjectTypes) String added in v1.99.0

func (s ObjectTypes) String() string

String returns the string representation

type PostCommentForComparedCommitInput added in v1.12.31

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
}

func (PostCommentForComparedCommitInput) GoString added in v1.12.31

GoString returns the string representation

func (*PostCommentForComparedCommitInput) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*PostCommentForComparedCommitInput) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*PostCommentForComparedCommitInput) SetClientRequestToken added in v1.12.31

SetClientRequestToken sets the ClientRequestToken field's value.

func (*PostCommentForComparedCommitInput) SetContent added in v1.12.31

SetContent sets the Content field's value.

func (*PostCommentForComparedCommitInput) SetLocation added in v1.12.31

SetLocation sets the Location field's value.

func (*PostCommentForComparedCommitInput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (PostCommentForComparedCommitInput) String added in v1.12.31

String returns the string representation

func (*PostCommentForComparedCommitInput) Validate added in v1.12.31

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

type PostCommentForComparedCommitOutput added in v1.12.31

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
}

func (PostCommentForComparedCommitOutput) GoString added in v1.12.31

GoString returns the string representation

func (*PostCommentForComparedCommitOutput) SetAfterBlobId added in v1.12.31

SetAfterBlobId sets the AfterBlobId field's value.

func (*PostCommentForComparedCommitOutput) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*PostCommentForComparedCommitOutput) SetBeforeBlobId added in v1.12.31

SetBeforeBlobId sets the BeforeBlobId field's value.

func (*PostCommentForComparedCommitOutput) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*PostCommentForComparedCommitOutput) SetComment added in v1.12.31

SetComment sets the Comment field's value.

func (*PostCommentForComparedCommitOutput) SetLocation added in v1.12.31

SetLocation sets the Location field's value.

func (*PostCommentForComparedCommitOutput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (PostCommentForComparedCommitOutput) String added in v1.12.31

String returns the string representation

type PostCommentForPullRequestInput added in v1.12.31

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
}

func (PostCommentForPullRequestInput) GoString added in v1.12.31

GoString returns the string representation

func (*PostCommentForPullRequestInput) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*PostCommentForPullRequestInput) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*PostCommentForPullRequestInput) SetClientRequestToken added in v1.12.31

SetClientRequestToken sets the ClientRequestToken field's value.

func (*PostCommentForPullRequestInput) SetContent added in v1.12.31

SetContent sets the Content field's value.

func (*PostCommentForPullRequestInput) SetLocation added in v1.12.31

SetLocation sets the Location field's value.

func (*PostCommentForPullRequestInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (*PostCommentForPullRequestInput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (PostCommentForPullRequestInput) String added in v1.12.31

String returns the string representation

func (*PostCommentForPullRequestInput) Validate added in v1.12.31

func (s *PostCommentForPullRequestInput) Validate() error

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

type PostCommentForPullRequestOutput added in v1.12.31

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
}

func (PostCommentForPullRequestOutput) GoString added in v1.12.31

GoString returns the string representation

func (*PostCommentForPullRequestOutput) SetAfterBlobId added in v1.12.31

SetAfterBlobId sets the AfterBlobId field's value.

func (*PostCommentForPullRequestOutput) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*PostCommentForPullRequestOutput) SetBeforeBlobId added in v1.12.31

SetBeforeBlobId sets the BeforeBlobId field's value.

func (*PostCommentForPullRequestOutput) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*PostCommentForPullRequestOutput) SetComment added in v1.12.31

SetComment sets the Comment field's value.

func (*PostCommentForPullRequestOutput) SetLocation added in v1.12.31

SetLocation sets the Location field's value.

func (*PostCommentForPullRequestOutput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (*PostCommentForPullRequestOutput) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (PostCommentForPullRequestOutput) String added in v1.12.31

String returns the string representation

type PostCommentReplyInput added in v1.12.31

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
}

func (PostCommentReplyInput) GoString added in v1.12.31

func (s PostCommentReplyInput) GoString() string

GoString returns the string representation

func (*PostCommentReplyInput) SetClientRequestToken added in v1.12.31

func (s *PostCommentReplyInput) SetClientRequestToken(v string) *PostCommentReplyInput

SetClientRequestToken sets the ClientRequestToken field's value.

func (*PostCommentReplyInput) SetContent added in v1.12.31

SetContent sets the Content field's value.

func (*PostCommentReplyInput) SetInReplyTo added in v1.12.31

SetInReplyTo sets the InReplyTo field's value.

func (PostCommentReplyInput) String added in v1.12.31

func (s PostCommentReplyInput) String() string

String returns the string representation

func (*PostCommentReplyInput) Validate added in v1.12.31

func (s *PostCommentReplyInput) Validate() error

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

type PostCommentReplyOutput added in v1.12.31

type PostCommentReplyOutput struct {

	// Information about the reply to a comment.
	Comment *Comment `locationName:"comment" type:"structure"`
	// contains filtered or unexported fields
}

func (PostCommentReplyOutput) GoString added in v1.12.31

func (s PostCommentReplyOutput) GoString() string

GoString returns the string representation

func (*PostCommentReplyOutput) SetComment added in v1.12.31

SetComment sets the Comment field's value.

func (PostCommentReplyOutput) String added in v1.12.31

func (s PostCommentReplyOutput) String() string

String returns the string representation

type PullRequest added in v1.12.31

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 *string `locationName:"pullRequestStatus" type:"string" enum:"PullRequestStatusEnum"`

	// 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.

func (PullRequest) GoString added in v1.12.31

func (s PullRequest) GoString() string

GoString returns the string representation

func (*PullRequest) SetAuthorArn added in v1.12.31

func (s *PullRequest) SetAuthorArn(v string) *PullRequest

SetAuthorArn sets the AuthorArn field's value.

func (*PullRequest) SetClientRequestToken added in v1.12.31

func (s *PullRequest) SetClientRequestToken(v string) *PullRequest

SetClientRequestToken sets the ClientRequestToken field's value.

func (*PullRequest) SetCreationDate added in v1.12.31

func (s *PullRequest) SetCreationDate(v time.Time) *PullRequest

SetCreationDate sets the CreationDate field's value.

func (*PullRequest) SetDescription added in v1.12.31

func (s *PullRequest) SetDescription(v string) *PullRequest

SetDescription sets the Description field's value.

func (*PullRequest) SetLastActivityDate added in v1.12.31

func (s *PullRequest) SetLastActivityDate(v time.Time) *PullRequest

SetLastActivityDate sets the LastActivityDate field's value.

func (*PullRequest) SetPullRequestId added in v1.12.31

func (s *PullRequest) SetPullRequestId(v string) *PullRequest

SetPullRequestId sets the PullRequestId field's value.

func (*PullRequest) SetPullRequestStatus added in v1.12.31

func (s *PullRequest) SetPullRequestStatus(v string) *PullRequest

SetPullRequestStatus sets the PullRequestStatus field's value.

func (*PullRequest) SetPullRequestTargets added in v1.12.31

func (s *PullRequest) SetPullRequestTargets(v []*PullRequestTarget) *PullRequest

SetPullRequestTargets sets the PullRequestTargets field's value.

func (*PullRequest) SetTitle added in v1.12.31

func (s *PullRequest) SetTitle(v string) *PullRequest

SetTitle sets the Title field's value.

func (PullRequest) String added in v1.12.31

func (s PullRequest) String() string

String returns the string representation

type PullRequestCreatedEventMetadata added in v1.99.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.

func (PullRequestCreatedEventMetadata) GoString added in v1.99.0

GoString returns the string representation

func (*PullRequestCreatedEventMetadata) SetDestinationCommitId added in v1.99.0

SetDestinationCommitId sets the DestinationCommitId field's value.

func (*PullRequestCreatedEventMetadata) SetMergeBase added in v1.99.0

SetMergeBase sets the MergeBase field's value.

func (*PullRequestCreatedEventMetadata) SetRepositoryName added in v1.99.0

SetRepositoryName sets the RepositoryName field's value.

func (*PullRequestCreatedEventMetadata) SetSourceCommitId added in v1.99.0

SetSourceCommitId sets the SourceCommitId field's value.

func (PullRequestCreatedEventMetadata) String added in v1.99.0

String returns the string representation

type PullRequestEvent added in v1.12.31

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 *string `locationName:"pullRequestEventType" type:"string" enum:"PullRequestEventType"`

	// 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.

func (PullRequestEvent) GoString added in v1.12.31

func (s PullRequestEvent) GoString() string

GoString returns the string representation

func (*PullRequestEvent) SetActorArn added in v1.12.31

func (s *PullRequestEvent) SetActorArn(v string) *PullRequestEvent

SetActorArn sets the ActorArn field's value.

func (*PullRequestEvent) SetEventDate added in v1.12.31

func (s *PullRequestEvent) SetEventDate(v time.Time) *PullRequestEvent

SetEventDate sets the EventDate field's value.

func (*PullRequestEvent) SetPullRequestCreatedEventMetadata added in v1.99.0

func (s *PullRequestEvent) SetPullRequestCreatedEventMetadata(v *PullRequestCreatedEventMetadata) *PullRequestEvent

SetPullRequestCreatedEventMetadata sets the PullRequestCreatedEventMetadata field's value.

func (*PullRequestEvent) SetPullRequestEventType added in v1.12.31

func (s *PullRequestEvent) SetPullRequestEventType(v string) *PullRequestEvent

SetPullRequestEventType sets the PullRequestEventType field's value.

func (*PullRequestEvent) SetPullRequestId added in v1.12.31

func (s *PullRequestEvent) SetPullRequestId(v string) *PullRequestEvent

SetPullRequestId sets the PullRequestId field's value.

func (*PullRequestEvent) SetPullRequestMergedStateChangedEventMetadata added in v1.12.31

func (s *PullRequestEvent) SetPullRequestMergedStateChangedEventMetadata(v *PullRequestMergedStateChangedEventMetadata) *PullRequestEvent

SetPullRequestMergedStateChangedEventMetadata sets the PullRequestMergedStateChangedEventMetadata field's value.

func (*PullRequestEvent) SetPullRequestSourceReferenceUpdatedEventMetadata added in v1.12.31

func (s *PullRequestEvent) SetPullRequestSourceReferenceUpdatedEventMetadata(v *PullRequestSourceReferenceUpdatedEventMetadata) *PullRequestEvent

SetPullRequestSourceReferenceUpdatedEventMetadata sets the PullRequestSourceReferenceUpdatedEventMetadata field's value.

func (*PullRequestEvent) SetPullRequestStatusChangedEventMetadata added in v1.12.31

func (s *PullRequestEvent) SetPullRequestStatusChangedEventMetadata(v *PullRequestStatusChangedEventMetadata) *PullRequestEvent

SetPullRequestStatusChangedEventMetadata sets the PullRequestStatusChangedEventMetadata field's value.

func (PullRequestEvent) String added in v1.12.31

func (s PullRequestEvent) String() string

String returns the string representation

type PullRequestMergedStateChangedEventMetadata added in v1.12.31

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.

func (PullRequestMergedStateChangedEventMetadata) GoString added in v1.12.31

GoString returns the string representation

func (*PullRequestMergedStateChangedEventMetadata) SetDestinationReference added in v1.12.31

SetDestinationReference sets the DestinationReference field's value.

func (*PullRequestMergedStateChangedEventMetadata) SetMergeMetadata added in v1.12.31

SetMergeMetadata sets the MergeMetadata field's value.

func (*PullRequestMergedStateChangedEventMetadata) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (PullRequestMergedStateChangedEventMetadata) String added in v1.12.31

String returns the string representation

type PullRequestSourceReferenceUpdatedEventMetadata added in v1.12.31

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.

func (PullRequestSourceReferenceUpdatedEventMetadata) GoString added in v1.12.31

GoString returns the string representation

func (*PullRequestSourceReferenceUpdatedEventMetadata) SetAfterCommitId added in v1.12.31

SetAfterCommitId sets the AfterCommitId field's value.

func (*PullRequestSourceReferenceUpdatedEventMetadata) SetBeforeCommitId added in v1.12.31

SetBeforeCommitId sets the BeforeCommitId field's value.

func (*PullRequestSourceReferenceUpdatedEventMetadata) SetMergeBase added in v1.99.0

SetMergeBase sets the MergeBase field's value.

func (*PullRequestSourceReferenceUpdatedEventMetadata) SetRepositoryName added in v1.12.31

SetRepositoryName sets the RepositoryName field's value.

func (PullRequestSourceReferenceUpdatedEventMetadata) String added in v1.12.31

String returns the string representation

type PullRequestStatusChangedEventMetadata added in v1.12.31

type PullRequestStatusChangedEventMetadata struct {

	// The changed status of the pull request.
	PullRequestStatus *string `locationName:"pullRequestStatus" type:"string" enum:"PullRequestStatusEnum"`
	// contains filtered or unexported fields
}

Information about a change to the status of a pull request.

func (PullRequestStatusChangedEventMetadata) GoString added in v1.12.31

GoString returns the string representation

func (*PullRequestStatusChangedEventMetadata) SetPullRequestStatus added in v1.12.31

SetPullRequestStatus sets the PullRequestStatus field's value.

func (PullRequestStatusChangedEventMetadata) String added in v1.12.31

String returns the string representation

type PullRequestTarget added in v1.12.31

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.

func (PullRequestTarget) GoString added in v1.12.31

func (s PullRequestTarget) GoString() string

GoString returns the string representation

func (*PullRequestTarget) SetDestinationCommit added in v1.12.31

func (s *PullRequestTarget) SetDestinationCommit(v string) *PullRequestTarget

SetDestinationCommit sets the DestinationCommit field's value.

func (*PullRequestTarget) SetDestinationReference added in v1.12.31

func (s *PullRequestTarget) SetDestinationReference(v string) *PullRequestTarget

SetDestinationReference sets the DestinationReference field's value.

func (*PullRequestTarget) SetMergeBase added in v1.99.0

func (s *PullRequestTarget) SetMergeBase(v string) *PullRequestTarget

SetMergeBase sets the MergeBase field's value.

func (*PullRequestTarget) SetMergeMetadata added in v1.12.31

func (s *PullRequestTarget) SetMergeMetadata(v *MergeMetadata) *PullRequestTarget

SetMergeMetadata sets the MergeMetadata field's value.

func (*PullRequestTarget) SetRepositoryName added in v1.12.31

func (s *PullRequestTarget) SetRepositoryName(v string) *PullRequestTarget

SetRepositoryName sets the RepositoryName field's value.

func (*PullRequestTarget) SetSourceCommit added in v1.12.31

func (s *PullRequestTarget) SetSourceCommit(v string) *PullRequestTarget

SetSourceCommit sets the SourceCommit field's value.

func (*PullRequestTarget) SetSourceReference added in v1.12.31

func (s *PullRequestTarget) SetSourceReference(v string) *PullRequestTarget

SetSourceReference sets the SourceReference field's value.

func (PullRequestTarget) String added in v1.12.31

func (s PullRequestTarget) String() string

String returns the string representation

type PutFileEntry added in v1.99.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 *string `locationName:"fileMode" type:"string" enum:"FileModeTypeEnum"`

	// 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.

func (PutFileEntry) GoString added in v1.99.0

func (s PutFileEntry) GoString() string

GoString returns the string representation

func (*PutFileEntry) SetFileContent added in v1.99.0

func (s *PutFileEntry) SetFileContent(v []byte) *PutFileEntry

SetFileContent sets the FileContent field's value.

func (*PutFileEntry) SetFileMode added in v1.99.0

func (s *PutFileEntry) SetFileMode(v string) *PutFileEntry

SetFileMode sets the FileMode field's value.

func (*PutFileEntry) SetFilePath added in v1.99.0

func (s *PutFileEntry) SetFilePath(v string) *PutFileEntry

SetFilePath sets the FilePath field's value.

func (*PutFileEntry) SetSourceFile added in v1.99.0

func (s *PutFileEntry) SetSourceFile(v *SourceFileSpecifier) *PutFileEntry

SetSourceFile sets the SourceFile field's value.

func (PutFileEntry) String added in v1.99.0

func (s PutFileEntry) String() string

String returns the string representation

func (*PutFileEntry) Validate added in v1.99.0

func (s *PutFileEntry) Validate() error

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

type PutFileInput added in v1.13.2

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 *string `locationName:"fileMode" type:"string" enum:"FileModeTypeEnum"`

	// 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
}

func (PutFileInput) GoString added in v1.13.2

func (s PutFileInput) GoString() string

GoString returns the string representation

func (*PutFileInput) SetBranchName added in v1.13.2

func (s *PutFileInput) SetBranchName(v string) *PutFileInput

SetBranchName sets the BranchName field's value.

func (*PutFileInput) SetCommitMessage added in v1.13.2

func (s *PutFileInput) SetCommitMessage(v string) *PutFileInput

SetCommitMessage sets the CommitMessage field's value.

func (*PutFileInput) SetEmail added in v1.13.2

func (s *PutFileInput) SetEmail(v string) *PutFileInput

SetEmail sets the Email field's value.

func (*PutFileInput) SetFileContent added in v1.13.2

func (s *PutFileInput) SetFileContent(v []byte) *PutFileInput

SetFileContent sets the FileContent field's value.

func (*PutFileInput) SetFileMode added in v1.13.2

func (s *PutFileInput) SetFileMode(v string) *PutFileInput

SetFileMode sets the FileMode field's value.

func (*PutFileInput) SetFilePath added in v1.13.2

func (s *PutFileInput) SetFilePath(v string) *PutFileInput

SetFilePath sets the FilePath field's value.

func (*PutFileInput) SetName added in v1.13.2

func (s *PutFileInput) SetName(v string) *PutFileInput

SetName sets the Name field's value.

func (*PutFileInput) SetParentCommitId added in v1.13.2

func (s *PutFileInput) SetParentCommitId(v string) *PutFileInput

SetParentCommitId sets the ParentCommitId field's value.

func (*PutFileInput) SetRepositoryName added in v1.13.2

func (s *PutFileInput) SetRepositoryName(v string) *PutFileInput

SetRepositoryName sets the RepositoryName field's value.

func (PutFileInput) String added in v1.13.2

func (s PutFileInput) String() string

String returns the string representation

func (*PutFileInput) Validate added in v1.13.2

func (s *PutFileInput) Validate() error

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

type PutFileOutput added in v1.13.2

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
}

func (PutFileOutput) GoString added in v1.13.2

func (s PutFileOutput) GoString() string

GoString returns the string representation

func (*PutFileOutput) SetBlobId added in v1.13.2

func (s *PutFileOutput) SetBlobId(v string) *PutFileOutput

SetBlobId sets the BlobId field's value.

func (*PutFileOutput) SetCommitId added in v1.13.2

func (s *PutFileOutput) SetCommitId(v string) *PutFileOutput

SetCommitId sets the CommitId field's value.

func (*PutFileOutput) SetTreeId added in v1.13.2

func (s *PutFileOutput) SetTreeId(v string) *PutFileOutput

SetTreeId sets the TreeId field's value.

func (PutFileOutput) String added in v1.13.2

func (s PutFileOutput) String() string

String returns the string representation

type PutRepositoryTriggersInput added in v1.1.9

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.

func (PutRepositoryTriggersInput) GoString added in v1.1.9

func (s PutRepositoryTriggersInput) GoString() string

GoString returns the string representation

func (*PutRepositoryTriggersInput) SetRepositoryName added in v1.5.0

SetRepositoryName sets the RepositoryName field's value.

func (*PutRepositoryTriggersInput) SetTriggers added in v1.5.0

SetTriggers sets the Triggers field's value.

func (PutRepositoryTriggersInput) String added in v1.1.9

String returns the string representation

func (*PutRepositoryTriggersInput) Validate added in v1.1.21

func (s *PutRepositoryTriggersInput) Validate() error

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

type PutRepositoryTriggersOutput added in v1.1.9

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.

func (PutRepositoryTriggersOutput) GoString added in v1.1.9

func (s PutRepositoryTriggersOutput) GoString() string

GoString returns the string representation

func (*PutRepositoryTriggersOutput) SetConfigurationId added in v1.5.0

SetConfigurationId sets the ConfigurationId field's value.

func (PutRepositoryTriggersOutput) String added in v1.1.9

String returns the string representation

type ReplaceContentEntry added in v1.99.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 *string `locationName:"fileMode" type:"string" enum:"FileModeTypeEnum"`

	// 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 *string `locationName:"replacementType" type:"string" required:"true" enum:"ReplacementTypeEnum"`
	// contains filtered or unexported fields
}

Information about a replacement content entry in the conflict of a merge or pull request operation.

func (ReplaceContentEntry) GoString added in v1.99.0

func (s ReplaceContentEntry) GoString() string

GoString returns the string representation

func (*ReplaceContentEntry) SetContent added in v1.99.0

func (s *ReplaceContentEntry) SetContent(v []byte) *ReplaceContentEntry

SetContent sets the Content field's value.

func (*ReplaceContentEntry) SetFileMode added in v1.99.0

func (s *ReplaceContentEntry) SetFileMode(v string) *ReplaceContentEntry

SetFileMode sets the FileMode field's value.

func (*ReplaceContentEntry) SetFilePath added in v1.99.0

func (s *ReplaceContentEntry) SetFilePath(v string) *ReplaceContentEntry

SetFilePath sets the FilePath field's value.

func (*ReplaceContentEntry) SetReplacementType added in v1.99.0

func (s *ReplaceContentEntry) SetReplacementType(v string) *ReplaceContentEntry

SetReplacementType sets the ReplacementType field's value.

func (ReplaceContentEntry) String added in v1.99.0

func (s ReplaceContentEntry) String() string

String returns the string representation

func (*ReplaceContentEntry) Validate added in v1.99.0

func (s *ReplaceContentEntry) Validate() error

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

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.

func (RepositoryMetadata) GoString

func (s RepositoryMetadata) GoString() string

GoString returns the string representation

func (*RepositoryMetadata) SetAccountId added in v1.5.0

func (s *RepositoryMetadata) SetAccountId(v string) *RepositoryMetadata

SetAccountId sets the AccountId field's value.

func (*RepositoryMetadata) SetArn added in v1.5.0

SetArn sets the Arn field's value.

func (*RepositoryMetadata) SetCloneUrlHttp added in v1.5.0

func (s *RepositoryMetadata) SetCloneUrlHttp(v string) *RepositoryMetadata

SetCloneUrlHttp sets the CloneUrlHttp field's value.

func (*RepositoryMetadata) SetCloneUrlSsh added in v1.5.0

func (s *RepositoryMetadata) SetCloneUrlSsh(v string) *RepositoryMetadata

SetCloneUrlSsh sets the CloneUrlSsh field's value.

func (*RepositoryMetadata) SetCreationDate added in v1.5.0

func (s *RepositoryMetadata) SetCreationDate(v time.Time) *RepositoryMetadata

SetCreationDate sets the CreationDate field's value.

func (*RepositoryMetadata) SetDefaultBranch added in v1.5.0

func (s *RepositoryMetadata) SetDefaultBranch(v string) *RepositoryMetadata

SetDefaultBranch sets the DefaultBranch field's value.

func (*RepositoryMetadata) SetLastModifiedDate added in v1.5.0

func (s *RepositoryMetadata) SetLastModifiedDate(v time.Time) *RepositoryMetadata

SetLastModifiedDate sets the LastModifiedDate field's value.

func (*RepositoryMetadata) SetRepositoryDescription added in v1.5.0

func (s *RepositoryMetadata) SetRepositoryDescription(v string) *RepositoryMetadata

SetRepositoryDescription sets the RepositoryDescription field's value.

func (*RepositoryMetadata) SetRepositoryId added in v1.5.0

func (s *RepositoryMetadata) SetRepositoryId(v string) *RepositoryMetadata

SetRepositoryId sets the RepositoryId field's value.

func (*RepositoryMetadata) SetRepositoryName added in v1.5.0

func (s *RepositoryMetadata) SetRepositoryName(v string) *RepositoryMetadata

SetRepositoryName sets the RepositoryName field's value.

func (RepositoryMetadata) String

func (s RepositoryMetadata) String() string

String returns the string representation

type RepositoryNameIdPair added in v0.9.5

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.

func (RepositoryNameIdPair) GoString added in v0.9.5

func (s RepositoryNameIdPair) GoString() string

GoString returns the string representation

func (*RepositoryNameIdPair) SetRepositoryId added in v1.5.0

func (s *RepositoryNameIdPair) SetRepositoryId(v string) *RepositoryNameIdPair

SetRepositoryId sets the RepositoryId field's value.

func (*RepositoryNameIdPair) SetRepositoryName added in v1.5.0

func (s *RepositoryNameIdPair) SetRepositoryName(v string) *RepositoryNameIdPair

SetRepositoryName sets the RepositoryName field's value.

func (RepositoryNameIdPair) String added in v0.9.5

func (s RepositoryNameIdPair) String() string

String returns the string representation

type RepositoryTrigger added in v1.1.9

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.
	//
	// While 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 Simple Notification Service (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 Simple Notification
	// Service (SNS).
	//
	// The valid value "all" cannot be used with any other values.
	//
	// Events is a required field
	Events []*string `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.

func (RepositoryTrigger) GoString added in v1.1.9

func (s RepositoryTrigger) GoString() string

GoString returns the string representation

func (*RepositoryTrigger) SetBranches added in v1.5.0

func (s *RepositoryTrigger) SetBranches(v []*string) *RepositoryTrigger

SetBranches sets the Branches field's value.

func (*RepositoryTrigger) SetCustomData added in v1.5.0

func (s *RepositoryTrigger) SetCustomData(v string) *RepositoryTrigger

SetCustomData sets the CustomData field's value.

func (*RepositoryTrigger) SetDestinationArn added in v1.5.0

func (s *RepositoryTrigger) SetDestinationArn(v string) *RepositoryTrigger

SetDestinationArn sets the DestinationArn field's value.

func (*RepositoryTrigger) SetEvents added in v1.5.0

func (s *RepositoryTrigger) SetEvents(v []*string) *RepositoryTrigger

SetEvents sets the Events field's value.

func (*RepositoryTrigger) SetName added in v1.5.0

SetName sets the Name field's value.

func (RepositoryTrigger) String added in v1.1.9

func (s RepositoryTrigger) String() string

String returns the string representation

func (*RepositoryTrigger) Validate added in v1.6.16

func (s *RepositoryTrigger) Validate() error

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

type RepositoryTriggerExecutionFailure added in v1.1.9

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.

func (RepositoryTriggerExecutionFailure) GoString added in v1.1.9

GoString returns the string representation

func (*RepositoryTriggerExecutionFailure) SetFailureMessage added in v1.5.0

SetFailureMessage sets the FailureMessage field's value.

func (*RepositoryTriggerExecutionFailure) SetTrigger added in v1.5.0

SetTrigger sets the Trigger field's value.

func (RepositoryTriggerExecutionFailure) String added in v1.1.9

String returns the string representation

type SetFileModeEntry added in v1.99.0

type SetFileModeEntry struct {

	// The file mode for the file.
	//
	// FileMode is a required field
	FileMode *string `locationName:"fileMode" type:"string" required:"true" enum:"FileModeTypeEnum"`

	// 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.

func (SetFileModeEntry) GoString added in v1.99.0

func (s SetFileModeEntry) GoString() string

GoString returns the string representation

func (*SetFileModeEntry) SetFileMode added in v1.99.0

func (s *SetFileModeEntry) SetFileMode(v string) *SetFileModeEntry

SetFileMode sets the FileMode field's value.

func (*SetFileModeEntry) SetFilePath added in v1.99.0

func (s *SetFileModeEntry) SetFilePath(v string) *SetFileModeEntry

SetFilePath sets the FilePath field's value.

func (SetFileModeEntry) String added in v1.99.0

func (s SetFileModeEntry) String() string

String returns the string representation

func (*SetFileModeEntry) Validate added in v1.99.0

func (s *SetFileModeEntry) Validate() error

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

type SourceFileSpecifier added in v1.99.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.

func (SourceFileSpecifier) GoString added in v1.99.0

func (s SourceFileSpecifier) GoString() string

GoString returns the string representation

func (*SourceFileSpecifier) SetFilePath added in v1.99.0

func (s *SourceFileSpecifier) SetFilePath(v string) *SourceFileSpecifier

SetFilePath sets the FilePath field's value.

func (*SourceFileSpecifier) SetIsMove added in v1.99.0

func (s *SourceFileSpecifier) SetIsMove(v bool) *SourceFileSpecifier

SetIsMove sets the IsMove field's value.

func (SourceFileSpecifier) String added in v1.99.0

func (s SourceFileSpecifier) String() string

String returns the string representation

func (*SourceFileSpecifier) Validate added in v1.99.0

func (s *SourceFileSpecifier) Validate() error

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

type SubModule added in v1.99.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.

func (SubModule) GoString added in v1.99.0

func (s SubModule) GoString() string

GoString returns the string representation

func (*SubModule) SetAbsolutePath added in v1.99.0

func (s *SubModule) SetAbsolutePath(v string) *SubModule

SetAbsolutePath sets the AbsolutePath field's value.

func (*SubModule) SetCommitId added in v1.99.0

func (s *SubModule) SetCommitId(v string) *SubModule

SetCommitId sets the CommitId field's value.

func (*SubModule) SetRelativePath added in v1.99.0

func (s *SubModule) SetRelativePath(v string) *SubModule

SetRelativePath sets the RelativePath field's value.

func (SubModule) String added in v1.99.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 *string `locationName:"fileMode" type:"string" enum:"FileModeTypeEnum"`

	// 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.

func (SymbolicLink) GoString added in v1.99.0

func (s SymbolicLink) GoString() string

GoString returns the string representation

func (*SymbolicLink) SetAbsolutePath added in v1.99.0

func (s *SymbolicLink) SetAbsolutePath(v string) *SymbolicLink

SetAbsolutePath sets the AbsolutePath field's value.

func (*SymbolicLink) SetBlobId added in v1.99.0

func (s *SymbolicLink) SetBlobId(v string) *SymbolicLink

SetBlobId sets the BlobId field's value.

func (*SymbolicLink) SetFileMode added in v1.99.0

func (s *SymbolicLink) SetFileMode(v string) *SymbolicLink

SetFileMode sets the FileMode field's value.

func (*SymbolicLink) SetRelativePath added in v1.99.0

func (s *SymbolicLink) SetRelativePath(v string) *SymbolicLink

SetRelativePath sets the RelativePath field's value.

func (SymbolicLink) String added in v1.99.0

func (s SymbolicLink) String() string

String returns the string representation

type TagResourceInput added in v1.99.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
}

func (TagResourceInput) GoString added in v1.99.0

func (s TagResourceInput) GoString() string

GoString returns the string representation

func (*TagResourceInput) SetResourceArn added in v1.99.0

func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*TagResourceInput) SetTags added in v1.99.0

func (s *TagResourceInput) SetTags(v map[string]*string) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String added in v1.99.0

func (s TagResourceInput) String() string

String returns the string representation

func (*TagResourceInput) Validate added in v1.99.0

func (s *TagResourceInput) Validate() error

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

type TagResourceOutput added in v1.99.0

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

func (TagResourceOutput) GoString added in v1.99.0

func (s TagResourceOutput) GoString() string

GoString returns the string representation

func (TagResourceOutput) String added in v1.99.0

func (s TagResourceOutput) String() string

String returns the string representation

type Target added in v1.12.31

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.

func (Target) GoString added in v1.12.31

func (s Target) GoString() string

GoString returns the string representation

func (*Target) SetDestinationReference added in v1.12.31

func (s *Target) SetDestinationReference(v string) *Target

SetDestinationReference sets the DestinationReference field's value.

func (*Target) SetRepositoryName added in v1.12.31

func (s *Target) SetRepositoryName(v string) *Target

SetRepositoryName sets the RepositoryName field's value.

func (*Target) SetSourceReference added in v1.12.31

func (s *Target) SetSourceReference(v string) *Target

SetSourceReference sets the SourceReference field's value.

func (Target) String added in v1.12.31

func (s Target) String() string

String returns the string representation

func (*Target) Validate added in v1.12.31

func (s *Target) Validate() error

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

type TestRepositoryTriggersInput added in v1.1.9

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.

func (TestRepositoryTriggersInput) GoString added in v1.1.9

func (s TestRepositoryTriggersInput) GoString() string

GoString returns the string representation

func (*TestRepositoryTriggersInput) SetRepositoryName added in v1.5.0

SetRepositoryName sets the RepositoryName field's value.

func (*TestRepositoryTriggersInput) SetTriggers added in v1.5.0

SetTriggers sets the Triggers field's value.

func (TestRepositoryTriggersInput) String added in v1.1.9

String returns the string representation

func (*TestRepositoryTriggersInput) Validate added in v1.1.21

func (s *TestRepositoryTriggersInput) Validate() error

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

type TestRepositoryTriggersOutput added in v1.1.9

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.

func (TestRepositoryTriggersOutput) GoString added in v1.1.9

func (s TestRepositoryTriggersOutput) GoString() string

GoString returns the string representation

func (*TestRepositoryTriggersOutput) SetFailedExecutions added in v1.5.0

SetFailedExecutions sets the FailedExecutions field's value.

func (*TestRepositoryTriggersOutput) SetSuccessfulExecutions added in v1.5.0

func (s *TestRepositoryTriggersOutput) SetSuccessfulExecutions(v []*string) *TestRepositoryTriggersOutput

SetSuccessfulExecutions sets the SuccessfulExecutions field's value.

func (TestRepositoryTriggersOutput) String added in v1.1.9

String returns the string representation

type UntagResourceInput added in v1.99.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
}

func (UntagResourceInput) GoString added in v1.99.0

func (s UntagResourceInput) GoString() string

GoString returns the string representation

func (*UntagResourceInput) SetResourceArn added in v1.99.0

func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*UntagResourceInput) SetTagKeys added in v1.99.0

func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String added in v1.99.0

func (s UntagResourceInput) String() string

String returns the string representation

func (*UntagResourceInput) Validate added in v1.99.0

func (s *UntagResourceInput) Validate() error

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

type UntagResourceOutput added in v1.99.0

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

func (UntagResourceOutput) GoString added in v1.99.0

func (s UntagResourceOutput) GoString() string

GoString returns the string representation

func (UntagResourceOutput) String added in v1.99.0

func (s UntagResourceOutput) String() string

String returns the string representation

type UpdateCommentInput added in v1.12.31

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
}

func (UpdateCommentInput) GoString added in v1.12.31

func (s UpdateCommentInput) GoString() string

GoString returns the string representation

func (*UpdateCommentInput) SetCommentId added in v1.12.31

func (s *UpdateCommentInput) SetCommentId(v string) *UpdateCommentInput

SetCommentId sets the CommentId field's value.

func (*UpdateCommentInput) SetContent added in v1.12.31

func (s *UpdateCommentInput) SetContent(v string) *UpdateCommentInput

SetContent sets the Content field's value.

func (UpdateCommentInput) String added in v1.12.31

func (s UpdateCommentInput) String() string

String returns the string representation

func (*UpdateCommentInput) Validate added in v1.12.31

func (s *UpdateCommentInput) Validate() error

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

type UpdateCommentOutput added in v1.12.31

type UpdateCommentOutput struct {

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

func (UpdateCommentOutput) GoString added in v1.12.31

func (s UpdateCommentOutput) GoString() string

GoString returns the string representation

func (*UpdateCommentOutput) SetComment added in v1.12.31

func (s *UpdateCommentOutput) SetComment(v *Comment) *UpdateCommentOutput

SetComment sets the Comment field's value.

func (UpdateCommentOutput) String added in v1.12.31

func (s UpdateCommentOutput) String() string

String returns the string representation

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.

func (UpdateDefaultBranchInput) GoString

func (s UpdateDefaultBranchInput) GoString() string

GoString returns the string representation

func (*UpdateDefaultBranchInput) SetDefaultBranchName added in v1.5.0

func (s *UpdateDefaultBranchInput) SetDefaultBranchName(v string) *UpdateDefaultBranchInput

SetDefaultBranchName sets the DefaultBranchName field's value.

func (*UpdateDefaultBranchInput) SetRepositoryName added in v1.5.0

func (s *UpdateDefaultBranchInput) SetRepositoryName(v string) *UpdateDefaultBranchInput

SetRepositoryName sets the RepositoryName field's value.

func (UpdateDefaultBranchInput) String

func (s UpdateDefaultBranchInput) String() string

String returns the string representation

func (*UpdateDefaultBranchInput) Validate added in v1.1.21

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
}

func (UpdateDefaultBranchOutput) GoString

func (s UpdateDefaultBranchOutput) GoString() string

GoString returns the string representation

func (UpdateDefaultBranchOutput) String

func (s UpdateDefaultBranchOutput) String() string

String returns the string representation

type UpdatePullRequestDescriptionInput added in v1.12.31

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
}

func (UpdatePullRequestDescriptionInput) GoString added in v1.12.31

GoString returns the string representation

func (*UpdatePullRequestDescriptionInput) SetDescription added in v1.12.31

SetDescription sets the Description field's value.

func (*UpdatePullRequestDescriptionInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (UpdatePullRequestDescriptionInput) String added in v1.12.31

String returns the string representation

func (*UpdatePullRequestDescriptionInput) Validate added in v1.12.31

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

type UpdatePullRequestDescriptionOutput added in v1.12.31

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
}

func (UpdatePullRequestDescriptionOutput) GoString added in v1.12.31

GoString returns the string representation

func (*UpdatePullRequestDescriptionOutput) SetPullRequest added in v1.12.31

SetPullRequest sets the PullRequest field's value.

func (UpdatePullRequestDescriptionOutput) String added in v1.12.31

String returns the string representation

type UpdatePullRequestStatusInput added in v1.12.31

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 *string `locationName:"pullRequestStatus" type:"string" required:"true" enum:"PullRequestStatusEnum"`
	// contains filtered or unexported fields
}

func (UpdatePullRequestStatusInput) GoString added in v1.12.31

func (s UpdatePullRequestStatusInput) GoString() string

GoString returns the string representation

func (*UpdatePullRequestStatusInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (*UpdatePullRequestStatusInput) SetPullRequestStatus added in v1.12.31

SetPullRequestStatus sets the PullRequestStatus field's value.

func (UpdatePullRequestStatusInput) String added in v1.12.31

String returns the string representation

func (*UpdatePullRequestStatusInput) Validate added in v1.12.31

func (s *UpdatePullRequestStatusInput) Validate() error

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

type UpdatePullRequestStatusOutput added in v1.12.31

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
}

func (UpdatePullRequestStatusOutput) GoString added in v1.12.31

GoString returns the string representation

func (*UpdatePullRequestStatusOutput) SetPullRequest added in v1.12.31

SetPullRequest sets the PullRequest field's value.

func (UpdatePullRequestStatusOutput) String added in v1.12.31

String returns the string representation

type UpdatePullRequestTitleInput added in v1.12.31

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
}

func (UpdatePullRequestTitleInput) GoString added in v1.12.31

func (s UpdatePullRequestTitleInput) GoString() string

GoString returns the string representation

func (*UpdatePullRequestTitleInput) SetPullRequestId added in v1.12.31

SetPullRequestId sets the PullRequestId field's value.

func (*UpdatePullRequestTitleInput) SetTitle added in v1.12.31

SetTitle sets the Title field's value.

func (UpdatePullRequestTitleInput) String added in v1.12.31

String returns the string representation

func (*UpdatePullRequestTitleInput) Validate added in v1.12.31

func (s *UpdatePullRequestTitleInput) Validate() error

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

type UpdatePullRequestTitleOutput added in v1.12.31

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
}

func (UpdatePullRequestTitleOutput) GoString added in v1.12.31

func (s UpdatePullRequestTitleOutput) GoString() string

GoString returns the string representation

func (*UpdatePullRequestTitleOutput) SetPullRequest added in v1.12.31

SetPullRequest sets the PullRequest field's value.

func (UpdatePullRequestTitleOutput) String added in v1.12.31

String returns the string representation

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.

func (UpdateRepositoryDescriptionInput) GoString

GoString returns the string representation

func (*UpdateRepositoryDescriptionInput) SetRepositoryDescription added in v1.5.0

SetRepositoryDescription sets the RepositoryDescription field's value.

func (*UpdateRepositoryDescriptionInput) SetRepositoryName added in v1.5.0

SetRepositoryName sets the RepositoryName field's value.

func (UpdateRepositoryDescriptionInput) String

String returns the string representation

func (*UpdateRepositoryDescriptionInput) Validate added in v1.1.21

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

type UpdateRepositoryDescriptionOutput

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

func (UpdateRepositoryDescriptionOutput) GoString

GoString returns the string representation

func (UpdateRepositoryDescriptionOutput) String

String returns the string representation

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.

func (UpdateRepositoryNameInput) GoString

func (s UpdateRepositoryNameInput) GoString() string

GoString returns the string representation

func (*UpdateRepositoryNameInput) SetNewName added in v1.5.0

SetNewName sets the NewName field's value.

func (*UpdateRepositoryNameInput) SetOldName added in v1.5.0

SetOldName sets the OldName field's value.

func (UpdateRepositoryNameInput) String

func (s UpdateRepositoryNameInput) String() string

String returns the string representation

func (*UpdateRepositoryNameInput) Validate added in v1.1.21

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
}

func (UpdateRepositoryNameOutput) GoString

func (s UpdateRepositoryNameOutput) GoString() string

GoString returns the string representation

func (UpdateRepositoryNameOutput) String

String returns the string representation

type UserInfo added in v1.1.9

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.

func (UserInfo) GoString added in v1.1.9

func (s UserInfo) GoString() string

GoString returns the string representation

func (*UserInfo) SetDate added in v1.5.0

func (s *UserInfo) SetDate(v string) *UserInfo

SetDate sets the Date field's value.

func (*UserInfo) SetEmail added in v1.5.0

func (s *UserInfo) SetEmail(v string) *UserInfo

SetEmail sets the Email field's value.

func (*UserInfo) SetName added in v1.5.0

func (s *UserInfo) SetName(v string) *UserInfo

SetName sets the Name field's value.

func (UserInfo) String added in v1.1.9

func (s UserInfo) String() string

String returns the string representation

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