amazonka-codecommit-1.6.0: Amazon CodeCommit SDK.

Copyright(c) 2013-2018 Brendan Hay
LicenseMozilla Public License, v. 2.0.
MaintainerBrendan Hay <brendan.g.hay+amazonka@gmail.com>
Stabilityauto-generated
Portabilitynon-portable (GHC extensions)
Safe HaskellNone
LanguageHaskell2010

Network.AWS.CodeCommit

Contents

Description

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:

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

Information about committed code in a repository, by calling the following:

  • GetBlob , which returns the base-64 encoded content of an individual Git blob object within 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).

Pull requests, by calling the following:

Information about comments in a repository, by calling the following:

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 .

Synopsis

Service Configuration

codeCommit :: Service Source #

API version 2015-04-13 of the Amazon CodeCommit SDK configuration.

Errors

Error matchers are designed for use with the functions provided by Control.Exception.Lens. This allows catching (and rethrowing) service specific errors returned by CodeCommit.

InvalidRepositoryTriggerRegionException

_InvalidRepositoryTriggerRegionException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidContinuationTokenException

_InvalidContinuationTokenException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified continuation token is not valid.

ManualMergeRequiredException

_ManualMergeRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

TargetsRequiredException

_TargetsRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

An array of target objects is required. It cannot be empty or null.

EncryptionKeyNotFoundException

TipsDivergenceExceededException

_TipsDivergenceExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidRepositoryTriggerBranchNameException

_InvalidRepositoryTriggerBranchNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

One or more branch names specified for the trigger is not valid.

PullRequestAlreadyClosedException

_PullRequestAlreadyClosedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The pull request status cannot be updated because it is already closed.

InvalidRepositoryTriggerCustomDataException

_InvalidRepositoryTriggerCustomDataException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The custom data provided for the trigger is not valid.

DirectoryNameConflictsWithFileNameException

_DirectoryNameConflictsWithFileNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

ReferenceDoesNotExistException

_ReferenceDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified reference does not exist. You must provide a full commit ID.

ActorDoesNotExistException

_ActorDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

PullRequestIdRequiredException

_PullRequestIdRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A pull request ID is required, but none was provided.

InvalidEmailException

_InvalidEmailException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

CommitMessageLengthExceededException

_CommitMessageLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The commit message is too long. Provide a shorter string.

BlobIdDoesNotExistException

_BlobIdDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified blob does not exist.

MaximumRepositoryNamesExceededException

_MaximumRepositoryNamesExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The maximum number of allowed repository names was exceeded. Currently, this number is 25.

InvalidRepositoryDescriptionException

_InvalidRepositoryDescriptionException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified repository description is not valid.

RepositoryNameExistsException

_RepositoryNameExistsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified repository name already exists.

ReferenceNameRequiredException

_ReferenceNameRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A reference name is required, but none was provided.

MaximumRepositoryTriggersExceededException

_MaximumRepositoryTriggersExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The number of triggers allowed for the repository was exceeded.

InvalidBranchNameException

_InvalidBranchNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified reference name is not valid.

BranchNameRequiredException

_BranchNameRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A branch name is required but was not specified.

MergeOptionRequiredException

_MergeOptionRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A merge option or stategy is required, and none was provided.

InvalidFileLocationException

_InvalidFileLocationException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The location of the file is not valid. Make sure that you include the extension of the file as well as the file name.

BeforeCommitIdAndAfterCommitIdAreSameException

_BeforeCommitIdAndAfterCommitIdAreSameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

RepositoryTriggersListRequiredException

_RepositoryTriggersListRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The list of triggers for the repository is required but was not specified.

IdempotencyParameterMismatchException

_IdempotencyParameterMismatchException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

EncryptionKeyUnavailableException

InvalidRelativeFileVersionEnumException

_InvalidRelativeFileVersionEnumException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidRepositoryTriggerDestinationARNException

_InvalidRepositoryTriggerDestinationARNException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

BlobIdRequiredException

_BlobIdRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A blob ID is required but was not specified.

RepositoryNamesRequiredException

_RepositoryNamesRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A repository names object is required but was not specified.

InvalidActorARNException

_InvalidActorARNException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidCommentIdException

_InvalidCommentIdException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

InvalidDescriptionException

_InvalidDescriptionException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

InvalidBlobIdException

_InvalidBlobIdException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified blob is not valid.

PullRequestDoesNotExistException

_PullRequestDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidOrderException

_InvalidOrderException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified sort order is not valid.

BranchDoesNotExistException

_BranchDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified branch does not exist.

DefaultBranchCannotBeDeletedException

_DefaultBranchCannotBeDeletedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidPathException

_InvalidPathException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified path is not valid.

PathRequiredException

_PathRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The filePath for a location cannot be empty or null.

RepositoryTriggerNameRequiredException

_RepositoryTriggerNameRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A name for the trigger is required but was not specified.

InvalidFileModeException

_InvalidFileModeException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

InvalidPullRequestStatusException

_InvalidPullRequestStatusException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The pull request status is not valid. The only valid values are OPEN and CLOSED .

ParentCommitIdRequiredException

_ParentCommitIdRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

InvalidSourceCommitSpecifierException

_InvalidSourceCommitSpecifierException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

RepositoryDoesNotExistException

_RepositoryDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified repository does not exist.

MaximumBranchesExceededException

_MaximumBranchesExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The number of branches for the trigger was exceeded.

InvalidTitleException

_InvalidTitleException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

CommentContentSizeLimitExceededException

_CommentContentSizeLimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The comment is too large. Comments are limited to 1,000 characters.

InvalidParentCommitIdException

_InvalidParentCommitIdException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidPullRequestEventTypeException

_InvalidPullRequestEventTypeException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The pull request event type is not valid.

FileContentRequiredException

_FileContentRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The file cannot be added because it is empty. Empty files cannot be added to the repository with this API.

SourceAndDestinationAreSameException

_SourceAndDestinationAreSameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The source branch and the destination branch for the pull request are the same. You must specify different branches for the source and destination.

PathDoesNotExistException

_PathDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified path does not exist.

EncryptionIntegrityChecksFailedException

ParentCommitIdOutdatedException

_ParentCommitIdOutdatedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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 .

RepositoryTriggerEventsListRequiredException

_RepositoryTriggerEventsListRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

At least one event for the trigger is required but was not specified.

CommentContentRequiredException

_CommentContentRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The comment is empty. You must provide some content for a comment. The content cannot be null.

InvalidTargetsException

_InvalidTargetsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

EncryptionKeyAccessDeniedException

_EncryptionKeyAccessDeniedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

An encryption key could not be accessed.

BranchNameExistsException

_BranchNameExistsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified branch name already exists.

InvalidCommitException

_InvalidCommitException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified commit is not valid.

TargetRequiredException

_TargetRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidDestinationCommitSpecifierException

_InvalidDestinationCommitSpecifierException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

CommentDoesNotExistException

_CommentDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

ReferenceTypeNotSupportedException

_ReferenceTypeNotSupportedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified reference is not a supported type.

FileNameConflictsWithDirectoryNameException

_FileNameConflictsWithDirectoryNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

NameLengthExceededException

_NameLengthExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The file name is not valid because it has exceeded the character limit for file names. File names, including the path to the file, cannot exceed the character limit.

InvalidSortByException

_InvalidSortByException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified sort by value is not valid.

EncryptionKeyDisabledException

CommitRequiredException

MaximumOpenPullRequestsExceededException

_MaximumOpenPullRequestsExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidTargetException

_InvalidTargetException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidPullRequestIdException

_InvalidPullRequestIdException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

CommentNotCreatedByCallerException

_CommentNotCreatedByCallerException :: AsError a => Getting (First ServiceError) a ServiceError Source #

You cannot modify or delete this comment. Only comment authors can modify or delete their comments.

InvalidPullRequestStatusUpdateException

_InvalidPullRequestStatusUpdateException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The pull request status update is not valid. The only valid update is from OPEN to CLOSED .

InvalidReferenceNameException

_InvalidReferenceNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified reference name format is not valid. Reference names must conform to the Git references format, for example refsheadsmaster. For more information, see Git Internals - Git References or consult your Git documentation.

SameFileContentException

_SameFileContentException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

CommitIdRequiredException

InvalidCommitIdException

_InvalidCommitIdException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified commit ID is not valid.

TipOfSourceReferenceIsDifferentException

_TipOfSourceReferenceIsDifferentException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

RepositoryTriggerDestinationARNRequiredException

_RepositoryTriggerDestinationARNRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A destination ARN for the target service for the trigger is required but was not specified.

InvalidClientRequestTokenException

_InvalidClientRequestTokenException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The client request token is not valid.

CommitDoesNotExistException

_CommitDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

RepositoryTriggerBranchNameListRequiredException

_RepositoryTriggerBranchNameListRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

At least one branch name is required but was not specified in the trigger configuration.

ClientRequestTokenRequiredException

_ClientRequestTokenRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

InvalidMergeOptionException

_InvalidMergeOptionException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified merge option is not valid. The only valid value is FAST_FORWARD_MERGE.

CommentIdRequiredException

_CommentIdRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The comment ID is missing or null. A comment ID is required.

InvalidMaxResultsException

_InvalidMaxResultsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified number of maximum results is not valid.

FileTooLargeException

_FileTooLargeException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified file exceeds the file size limit for AWS CodeCommit. For more information about limits in AWS CodeCommit, see AWS CodeCommit User Guide .

CommitIdDoesNotExistException

_CommitIdDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The specified commit ID does not exist.

MultipleRepositoriesInPullRequestException

_MultipleRepositoriesInPullRequestException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

FileContentSizeLimitExceededException

_FileContentSizeLimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The file cannot be added because it is too large. The maximum file size that can be added using PutFile is 6 MB. For files larger than 6 MB but smaller than 2 GB, add them using a Git client.

InvalidRepositoryTriggerNameException

RepositoryNameRequiredException

_RepositoryNameRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A repository name is required but was not specified.

RepositoryLimitExceededException

_RepositoryLimitExceededException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A repository resource limit was exceeded.

InvalidRepositoryTriggerEventsException

_InvalidRepositoryTriggerEventsException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

BranchNameIsTagNameException

_BranchNameIsTagNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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 .

InvalidRepositoryNameException

_InvalidRepositoryNameException :: AsError a => Getting (First ServiceError) a ServiceError Source #

At least one specified repository name is not valid.

InvalidAuthorARNException

_InvalidAuthorARNException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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.

PullRequestStatusRequiredException

_PullRequestStatusRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A pull request status is required, but none was provided.

RepositoryNotAssociatedWithPullRequestException

_RepositoryNotAssociatedWithPullRequestException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The repository does not contain any pull requests with that pull request ID. Check to make sure you have provided the correct repository name for the pull request.

TitleRequiredException

_TitleRequiredException :: AsError a => Getting (First ServiceError) a ServiceError Source #

A pull request title is required. It cannot be empty or null.

InvalidFilePositionException

_InvalidFilePositionException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The position is not valid. Make sure that the line number exists in the version of the file you want to comment on.

CommentDeletedException

_CommentDeletedException :: AsError a => Getting (First ServiceError) a ServiceError Source #

This comment has already been deleted. You cannot edit or delete a deleted comment.

ParentCommitDoesNotExistException

_ParentCommitDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

The parent commit ID is not valid. The specified parent commit ID does not exist in the specified branch of the repository.

AuthorDoesNotExistException

_AuthorDoesNotExistException :: AsError a => Getting (First ServiceError) a ServiceError Source #

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

Waiters

Waiters poll by repeatedly sending a request until some remote success condition configured by the Wait specification is fulfilled. The Wait specification determines how many attempts should be made, in addition to delay and retry strategies.

Operations

Some AWS operations return results that are incomplete and require subsequent requests in order to obtain the entire result set. The process of sending subsequent requests to continue where a previous request left off is called pagination. For example, the ListObjects operation of Amazon S3 returns up to 1000 objects at a time, and you must send subsequent requests with the appropriate Marker in order to retrieve the next page of results.

Operations that have an AWSPager instance can transparently perform subsequent requests, correctly setting Markers and other request facets to iterate through the entire result set of a truncated API operation. Operations which support this have an additional note in the documentation.

Many operations have the ability to filter results on the server side. See the individual operation parameters for details.

MergePullRequestByFastForward

UpdateRepositoryName

PostCommentForPullRequest

GetCommit

GetBranch

GetDifferences (Paginated)

GetPullRequest

ListPullRequests (Paginated)

GetComment

DeleteBranch

UpdateRepositoryDescription

CreateBranch

CreatePullRequest

ListBranches (Paginated)

UpdatePullRequestDescription

ListRepositories (Paginated)

CreateRepository

UpdateDefaultBranch

PostCommentReply

GetRepository

GetRepositoryTriggers

PutFile

GetCommentsForComparedCommit (Paginated)

TestRepositoryTriggers

UpdateComment

PostCommentForComparedCommit

UpdatePullRequestTitle

GetBlob

PutRepositoryTriggers

GetMergeConflicts

DeleteRepository

DeleteCommentContent

DescribePullRequestEvents (Paginated)

BatchGetRepositories

GetCommentsForPullRequest (Paginated)

UpdatePullRequestStatus

Types

ChangeTypeEnum

data ChangeTypeEnum Source #

Constructors

A 
D 
M 

Instances

Bounded ChangeTypeEnum Source # 
Enum ChangeTypeEnum Source # 
Eq ChangeTypeEnum Source # 
Data ChangeTypeEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> ChangeTypeEnum -> c ChangeTypeEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c ChangeTypeEnum #

toConstr :: ChangeTypeEnum -> Constr #

dataTypeOf :: ChangeTypeEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c ChangeTypeEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c ChangeTypeEnum) #

gmapT :: (forall b. Data b => b -> b) -> ChangeTypeEnum -> ChangeTypeEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> ChangeTypeEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> ChangeTypeEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> ChangeTypeEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> ChangeTypeEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> ChangeTypeEnum -> m ChangeTypeEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> ChangeTypeEnum -> m ChangeTypeEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> ChangeTypeEnum -> m ChangeTypeEnum #

Ord ChangeTypeEnum Source # 
Read ChangeTypeEnum Source # 
Show ChangeTypeEnum Source # 
Generic ChangeTypeEnum Source # 

Associated Types

type Rep ChangeTypeEnum :: * -> * #

Hashable ChangeTypeEnum Source # 
FromJSON ChangeTypeEnum Source # 
NFData ChangeTypeEnum Source # 

Methods

rnf :: ChangeTypeEnum -> () #

ToHeader ChangeTypeEnum Source # 
ToQuery ChangeTypeEnum Source # 
ToByteString ChangeTypeEnum Source # 
FromText ChangeTypeEnum Source # 
ToText ChangeTypeEnum Source # 
type Rep ChangeTypeEnum Source # 
type Rep ChangeTypeEnum = D1 * (MetaData "ChangeTypeEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * (C1 * (MetaCons "A" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "D" PrefixI False) (U1 *)) (C1 * (MetaCons "M" PrefixI False) (U1 *))))

FileModeTypeEnum

data FileModeTypeEnum Source #

Constructors

Executable 
Normal 
Symlink 

Instances

Bounded FileModeTypeEnum Source # 
Enum FileModeTypeEnum Source # 
Eq FileModeTypeEnum Source # 
Data FileModeTypeEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> FileModeTypeEnum -> c FileModeTypeEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c FileModeTypeEnum #

toConstr :: FileModeTypeEnum -> Constr #

dataTypeOf :: FileModeTypeEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c FileModeTypeEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c FileModeTypeEnum) #

gmapT :: (forall b. Data b => b -> b) -> FileModeTypeEnum -> FileModeTypeEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> FileModeTypeEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> FileModeTypeEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> FileModeTypeEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> FileModeTypeEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> FileModeTypeEnum -> m FileModeTypeEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> FileModeTypeEnum -> m FileModeTypeEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> FileModeTypeEnum -> m FileModeTypeEnum #

Ord FileModeTypeEnum Source # 
Read FileModeTypeEnum Source # 
Show FileModeTypeEnum Source # 
Generic FileModeTypeEnum Source # 
Hashable FileModeTypeEnum Source # 
ToJSON FileModeTypeEnum Source # 
NFData FileModeTypeEnum Source # 

Methods

rnf :: FileModeTypeEnum -> () #

ToHeader FileModeTypeEnum Source # 
ToQuery FileModeTypeEnum Source # 
ToByteString FileModeTypeEnum Source # 
FromText FileModeTypeEnum Source # 
ToText FileModeTypeEnum Source # 
type Rep FileModeTypeEnum Source # 
type Rep FileModeTypeEnum = D1 * (MetaData "FileModeTypeEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * (C1 * (MetaCons "Executable" PrefixI False) (U1 *)) ((:+:) * (C1 * (MetaCons "Normal" PrefixI False) (U1 *)) (C1 * (MetaCons "Symlink" PrefixI False) (U1 *))))

MergeOptionTypeEnum

data MergeOptionTypeEnum Source #

Constructors

FastForwardMerge 

Instances

Bounded MergeOptionTypeEnum Source # 
Enum MergeOptionTypeEnum Source # 
Eq MergeOptionTypeEnum Source # 
Data MergeOptionTypeEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MergeOptionTypeEnum -> c MergeOptionTypeEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MergeOptionTypeEnum #

toConstr :: MergeOptionTypeEnum -> Constr #

dataTypeOf :: MergeOptionTypeEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MergeOptionTypeEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MergeOptionTypeEnum) #

gmapT :: (forall b. Data b => b -> b) -> MergeOptionTypeEnum -> MergeOptionTypeEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MergeOptionTypeEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MergeOptionTypeEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> MergeOptionTypeEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MergeOptionTypeEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MergeOptionTypeEnum -> m MergeOptionTypeEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MergeOptionTypeEnum -> m MergeOptionTypeEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MergeOptionTypeEnum -> m MergeOptionTypeEnum #

Ord MergeOptionTypeEnum Source # 
Read MergeOptionTypeEnum Source # 
Show MergeOptionTypeEnum Source # 
Generic MergeOptionTypeEnum Source # 
Hashable MergeOptionTypeEnum Source # 
ToJSON MergeOptionTypeEnum Source # 
NFData MergeOptionTypeEnum Source # 

Methods

rnf :: MergeOptionTypeEnum -> () #

ToHeader MergeOptionTypeEnum Source # 
ToQuery MergeOptionTypeEnum Source # 
ToByteString MergeOptionTypeEnum Source # 
FromText MergeOptionTypeEnum Source # 
ToText MergeOptionTypeEnum Source # 
type Rep MergeOptionTypeEnum Source # 
type Rep MergeOptionTypeEnum = D1 * (MetaData "MergeOptionTypeEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "FastForwardMerge" PrefixI False) (U1 *))

OrderEnum

data OrderEnum Source #

Constructors

Ascending 
Descending 

Instances

Bounded OrderEnum Source # 
Enum OrderEnum Source # 
Eq OrderEnum Source # 
Data OrderEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> OrderEnum -> c OrderEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c OrderEnum #

toConstr :: OrderEnum -> Constr #

dataTypeOf :: OrderEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c OrderEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c OrderEnum) #

gmapT :: (forall b. Data b => b -> b) -> OrderEnum -> OrderEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> OrderEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> OrderEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> OrderEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> OrderEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> OrderEnum -> m OrderEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> OrderEnum -> m OrderEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> OrderEnum -> m OrderEnum #

Ord OrderEnum Source # 
Read OrderEnum Source # 
Show OrderEnum Source # 
Generic OrderEnum Source # 

Associated Types

type Rep OrderEnum :: * -> * #

Hashable OrderEnum Source # 
ToJSON OrderEnum Source # 
NFData OrderEnum Source # 

Methods

rnf :: OrderEnum -> () #

ToHeader OrderEnum Source # 
ToQuery OrderEnum Source # 
ToByteString OrderEnum Source # 

Methods

toBS :: OrderEnum -> ByteString #

FromText OrderEnum Source # 
ToText OrderEnum Source # 

Methods

toText :: OrderEnum -> Text #

type Rep OrderEnum Source # 
type Rep OrderEnum = D1 * (MetaData "OrderEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * (C1 * (MetaCons "Ascending" PrefixI False) (U1 *)) (C1 * (MetaCons "Descending" PrefixI False) (U1 *)))

PullRequestEventType

data PullRequestEventType Source #

Instances

Bounded PullRequestEventType Source # 
Enum PullRequestEventType Source # 
Eq PullRequestEventType Source # 
Data PullRequestEventType Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestEventType -> c PullRequestEventType #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestEventType #

toConstr :: PullRequestEventType -> Constr #

dataTypeOf :: PullRequestEventType -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestEventType) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestEventType) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestEventType -> PullRequestEventType #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestEventType -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestEventType -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestEventType -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestEventType -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestEventType -> m PullRequestEventType #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestEventType -> m PullRequestEventType #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestEventType -> m PullRequestEventType #

Ord PullRequestEventType Source # 
Read PullRequestEventType Source # 
Show PullRequestEventType Source # 
Generic PullRequestEventType Source # 
Hashable PullRequestEventType Source # 
ToJSON PullRequestEventType Source # 
FromJSON PullRequestEventType Source # 
NFData PullRequestEventType Source # 

Methods

rnf :: PullRequestEventType -> () #

ToHeader PullRequestEventType Source # 
ToQuery PullRequestEventType Source # 
ToByteString PullRequestEventType Source # 
FromText PullRequestEventType Source # 
ToText PullRequestEventType Source # 
type Rep PullRequestEventType Source # 
type Rep PullRequestEventType = D1 * (MetaData "PullRequestEventType" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * ((:+:) * (C1 * (MetaCons "PullRequestCreated" PrefixI False) (U1 *)) (C1 * (MetaCons "PullRequestMergeStateChanged" PrefixI False) (U1 *))) ((:+:) * (C1 * (MetaCons "PullRequestSourceReferenceUpdated" PrefixI False) (U1 *)) (C1 * (MetaCons "PullRequestStatusChanged" PrefixI False) (U1 *))))

PullRequestStatusEnum

data PullRequestStatusEnum Source #

Constructors

Closed 
Open 

Instances

Bounded PullRequestStatusEnum Source # 
Enum PullRequestStatusEnum Source # 
Eq PullRequestStatusEnum Source # 
Data PullRequestStatusEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestStatusEnum -> c PullRequestStatusEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestStatusEnum #

toConstr :: PullRequestStatusEnum -> Constr #

dataTypeOf :: PullRequestStatusEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestStatusEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestStatusEnum) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestStatusEnum -> PullRequestStatusEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestStatusEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestStatusEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestStatusEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestStatusEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestStatusEnum -> m PullRequestStatusEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestStatusEnum -> m PullRequestStatusEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestStatusEnum -> m PullRequestStatusEnum #

Ord PullRequestStatusEnum Source # 
Read PullRequestStatusEnum Source # 
Show PullRequestStatusEnum Source # 
Generic PullRequestStatusEnum Source # 
Hashable PullRequestStatusEnum Source # 
ToJSON PullRequestStatusEnum Source # 
FromJSON PullRequestStatusEnum Source # 
NFData PullRequestStatusEnum Source # 

Methods

rnf :: PullRequestStatusEnum -> () #

ToHeader PullRequestStatusEnum Source # 
ToQuery PullRequestStatusEnum Source # 
ToByteString PullRequestStatusEnum Source # 
FromText PullRequestStatusEnum Source # 
ToText PullRequestStatusEnum Source # 
type Rep PullRequestStatusEnum Source # 
type Rep PullRequestStatusEnum = D1 * (MetaData "PullRequestStatusEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * (C1 * (MetaCons "Closed" PrefixI False) (U1 *)) (C1 * (MetaCons "Open" PrefixI False) (U1 *)))

RelativeFileVersionEnum

data RelativeFileVersionEnum Source #

Constructors

After 
Before 

Instances

Bounded RelativeFileVersionEnum Source # 
Enum RelativeFileVersionEnum Source # 
Eq RelativeFileVersionEnum Source # 
Data RelativeFileVersionEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RelativeFileVersionEnum -> c RelativeFileVersionEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RelativeFileVersionEnum #

toConstr :: RelativeFileVersionEnum -> Constr #

dataTypeOf :: RelativeFileVersionEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c RelativeFileVersionEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RelativeFileVersionEnum) #

gmapT :: (forall b. Data b => b -> b) -> RelativeFileVersionEnum -> RelativeFileVersionEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RelativeFileVersionEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RelativeFileVersionEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> RelativeFileVersionEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RelativeFileVersionEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RelativeFileVersionEnum -> m RelativeFileVersionEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RelativeFileVersionEnum -> m RelativeFileVersionEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RelativeFileVersionEnum -> m RelativeFileVersionEnum #

Ord RelativeFileVersionEnum Source # 
Read RelativeFileVersionEnum Source # 
Show RelativeFileVersionEnum Source # 
Generic RelativeFileVersionEnum Source # 
Hashable RelativeFileVersionEnum Source # 
ToJSON RelativeFileVersionEnum Source # 
FromJSON RelativeFileVersionEnum Source # 
NFData RelativeFileVersionEnum Source # 

Methods

rnf :: RelativeFileVersionEnum -> () #

ToHeader RelativeFileVersionEnum Source # 
ToQuery RelativeFileVersionEnum Source # 
ToByteString RelativeFileVersionEnum Source # 
FromText RelativeFileVersionEnum Source # 
ToText RelativeFileVersionEnum Source # 
type Rep RelativeFileVersionEnum Source # 
type Rep RelativeFileVersionEnum = D1 * (MetaData "RelativeFileVersionEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * (C1 * (MetaCons "After" PrefixI False) (U1 *)) (C1 * (MetaCons "Before" PrefixI False) (U1 *)))

RepositoryTriggerEventEnum

data RepositoryTriggerEventEnum Source #

Instances

Bounded RepositoryTriggerEventEnum Source # 
Enum RepositoryTriggerEventEnum Source # 
Eq RepositoryTriggerEventEnum Source # 
Data RepositoryTriggerEventEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RepositoryTriggerEventEnum -> c RepositoryTriggerEventEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RepositoryTriggerEventEnum #

toConstr :: RepositoryTriggerEventEnum -> Constr #

dataTypeOf :: RepositoryTriggerEventEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c RepositoryTriggerEventEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RepositoryTriggerEventEnum) #

gmapT :: (forall b. Data b => b -> b) -> RepositoryTriggerEventEnum -> RepositoryTriggerEventEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryTriggerEventEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryTriggerEventEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> RepositoryTriggerEventEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RepositoryTriggerEventEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RepositoryTriggerEventEnum -> m RepositoryTriggerEventEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryTriggerEventEnum -> m RepositoryTriggerEventEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryTriggerEventEnum -> m RepositoryTriggerEventEnum #

Ord RepositoryTriggerEventEnum Source # 
Read RepositoryTriggerEventEnum Source # 
Show RepositoryTriggerEventEnum Source # 
Generic RepositoryTriggerEventEnum Source # 
Hashable RepositoryTriggerEventEnum Source # 
ToJSON RepositoryTriggerEventEnum Source # 
FromJSON RepositoryTriggerEventEnum Source # 
NFData RepositoryTriggerEventEnum Source # 
ToHeader RepositoryTriggerEventEnum Source # 
ToQuery RepositoryTriggerEventEnum Source # 
ToByteString RepositoryTriggerEventEnum Source # 
FromText RepositoryTriggerEventEnum Source # 
ToText RepositoryTriggerEventEnum Source # 
type Rep RepositoryTriggerEventEnum Source # 
type Rep RepositoryTriggerEventEnum = D1 * (MetaData "RepositoryTriggerEventEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * ((:+:) * (C1 * (MetaCons "All" PrefixI False) (U1 *)) (C1 * (MetaCons "CreateReference" PrefixI False) (U1 *))) ((:+:) * (C1 * (MetaCons "DeleteReference" PrefixI False) (U1 *)) (C1 * (MetaCons "UpdateReference" PrefixI False) (U1 *))))

SortByEnum

data SortByEnum Source #

Instances

Bounded SortByEnum Source # 
Enum SortByEnum Source # 
Eq SortByEnum Source # 
Data SortByEnum Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> SortByEnum -> c SortByEnum #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c SortByEnum #

toConstr :: SortByEnum -> Constr #

dataTypeOf :: SortByEnum -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c SortByEnum) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c SortByEnum) #

gmapT :: (forall b. Data b => b -> b) -> SortByEnum -> SortByEnum #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> SortByEnum -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> SortByEnum -> r #

gmapQ :: (forall d. Data d => d -> u) -> SortByEnum -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> SortByEnum -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> SortByEnum -> m SortByEnum #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> SortByEnum -> m SortByEnum #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> SortByEnum -> m SortByEnum #

Ord SortByEnum Source # 
Read SortByEnum Source # 
Show SortByEnum Source # 
Generic SortByEnum Source # 

Associated Types

type Rep SortByEnum :: * -> * #

Hashable SortByEnum Source # 
ToJSON SortByEnum Source # 
NFData SortByEnum Source # 

Methods

rnf :: SortByEnum -> () #

ToHeader SortByEnum Source # 
ToQuery SortByEnum Source # 
ToByteString SortByEnum Source # 
FromText SortByEnum Source # 
ToText SortByEnum Source # 

Methods

toText :: SortByEnum -> Text #

type Rep SortByEnum Source # 
type Rep SortByEnum = D1 * (MetaData "SortByEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) ((:+:) * (C1 * (MetaCons "LastModifiedDate" PrefixI False) (U1 *)) (C1 * (MetaCons "RepositoryName" PrefixI False) (U1 *)))

BlobMetadata

data BlobMetadata Source #

Returns information about a specific Git blob object.

See: blobMetadata smart constructor.

Instances

Eq BlobMetadata Source # 
Data BlobMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BlobMetadata -> c BlobMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BlobMetadata #

toConstr :: BlobMetadata -> Constr #

dataTypeOf :: BlobMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c BlobMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BlobMetadata) #

gmapT :: (forall b. Data b => b -> b) -> BlobMetadata -> BlobMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BlobMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BlobMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> BlobMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BlobMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BlobMetadata -> m BlobMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BlobMetadata -> m BlobMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BlobMetadata -> m BlobMetadata #

Read BlobMetadata Source # 
Show BlobMetadata Source # 
Generic BlobMetadata Source # 

Associated Types

type Rep BlobMetadata :: * -> * #

Hashable BlobMetadata Source # 
FromJSON BlobMetadata Source # 
NFData BlobMetadata Source # 

Methods

rnf :: BlobMetadata -> () #

type Rep BlobMetadata Source # 
type Rep BlobMetadata = D1 * (MetaData "BlobMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "BlobMetadata'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_bmPath") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_bmMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_bmBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))))

blobMetadata :: BlobMetadata Source #

Creates a value of BlobMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • bmPath - The path to the blob and any associated file name, if any.
  • bmMode - The file mode permissions of the blob. File mode permission codes include: * 100644 indicates readwrite * 100755 indicates readwrite/execute * 160000 indicates a submodule * 120000 indicates a symlink
  • bmBlobId - The full ID of the blob.

bmPath :: Lens' BlobMetadata (Maybe Text) Source #

The path to the blob and any associated file name, if any.

bmMode :: Lens' BlobMetadata (Maybe Text) Source #

The file mode permissions of the blob. File mode permission codes include: * 100644 indicates readwrite * 100755 indicates readwrite/execute * 160000 indicates a submodule * 120000 indicates a symlink

bmBlobId :: Lens' BlobMetadata (Maybe Text) Source #

The full ID of the blob.

BranchInfo

data BranchInfo Source #

Returns information about a branch.

See: branchInfo smart constructor.

Instances

Eq BranchInfo Source # 
Data BranchInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> BranchInfo -> c BranchInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c BranchInfo #

toConstr :: BranchInfo -> Constr #

dataTypeOf :: BranchInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c BranchInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c BranchInfo) #

gmapT :: (forall b. Data b => b -> b) -> BranchInfo -> BranchInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> BranchInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> BranchInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> BranchInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> BranchInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> BranchInfo -> m BranchInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> BranchInfo -> m BranchInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> BranchInfo -> m BranchInfo #

Read BranchInfo Source # 
Show BranchInfo Source # 
Generic BranchInfo Source # 

Associated Types

type Rep BranchInfo :: * -> * #

Hashable BranchInfo Source # 
FromJSON BranchInfo Source # 
NFData BranchInfo Source # 

Methods

rnf :: BranchInfo -> () #

type Rep BranchInfo Source # 
type Rep BranchInfo = D1 * (MetaData "BranchInfo" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "BranchInfo'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_biCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_biBranchName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))))

branchInfo :: BranchInfo Source #

Creates a value of BranchInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

biCommitId :: Lens' BranchInfo (Maybe Text) Source #

The ID of the last commit made to the branch.

biBranchName :: Lens' BranchInfo (Maybe Text) Source #

The name of the branch.

Comment

data Comment Source #

Returns information about a specific comment.

See: comment smart constructor.

Instances

Eq Comment Source # 

Methods

(==) :: Comment -> Comment -> Bool #

(/=) :: Comment -> Comment -> Bool #

Data Comment Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Comment -> c Comment #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Comment #

toConstr :: Comment -> Constr #

dataTypeOf :: Comment -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Comment) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Comment) #

gmapT :: (forall b. Data b => b -> b) -> Comment -> Comment #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Comment -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Comment -> r #

gmapQ :: (forall d. Data d => d -> u) -> Comment -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Comment -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Comment -> m Comment #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Comment -> m Comment #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Comment -> m Comment #

Read Comment Source # 
Show Comment Source # 
Generic Comment Source # 

Associated Types

type Rep Comment :: * -> * #

Methods

from :: Comment -> Rep Comment x #

to :: Rep Comment x -> Comment #

Hashable Comment Source # 

Methods

hashWithSalt :: Int -> Comment -> Int #

hash :: Comment -> Int #

FromJSON Comment Source # 
NFData Comment Source # 

Methods

rnf :: Comment -> () #

type Rep Comment Source # 

comment :: Comment Source #

Creates a value of Comment with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cLastModifiedDate - The date and time the comment was most recently modified, in timestamp format.
  • cAuthorARN - The Amazon Resource Name (ARN) of the person who posted the comment.
  • cContent - The content of the comment.
  • cCreationDate - The date and time the comment was created, in timestamp format.
  • cDeleted - A Boolean value indicating whether the comment has been deleted.
  • cClientRequestToken - 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.
  • cCommentId - The system-generated comment ID.
  • cInReplyTo - The ID of the comment for which this comment is a reply, if any.

cLastModifiedDate :: Lens' Comment (Maybe UTCTime) Source #

The date and time the comment was most recently modified, in timestamp format.

cAuthorARN :: Lens' Comment (Maybe Text) Source #

The Amazon Resource Name (ARN) of the person who posted the comment.

cContent :: Lens' Comment (Maybe Text) Source #

The content of the comment.

cCreationDate :: Lens' Comment (Maybe UTCTime) Source #

The date and time the comment was created, in timestamp format.

cDeleted :: Lens' Comment (Maybe Bool) Source #

A Boolean value indicating whether the comment has been deleted.

cClientRequestToken :: Lens' Comment (Maybe Text) Source #

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.

cCommentId :: Lens' Comment (Maybe Text) Source #

The system-generated comment ID.

cInReplyTo :: Lens' Comment (Maybe Text) Source #

The ID of the comment for which this comment is a reply, if any.

CommentsForComparedCommit

data CommentsForComparedCommit Source #

Returns information about comments on the comparison between two commits.

See: commentsForComparedCommit smart constructor.

Instances

Eq CommentsForComparedCommit Source # 
Data CommentsForComparedCommit Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CommentsForComparedCommit -> c CommentsForComparedCommit #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CommentsForComparedCommit #

toConstr :: CommentsForComparedCommit -> Constr #

dataTypeOf :: CommentsForComparedCommit -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c CommentsForComparedCommit) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CommentsForComparedCommit) #

gmapT :: (forall b. Data b => b -> b) -> CommentsForComparedCommit -> CommentsForComparedCommit #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CommentsForComparedCommit -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CommentsForComparedCommit -> r #

gmapQ :: (forall d. Data d => d -> u) -> CommentsForComparedCommit -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CommentsForComparedCommit -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CommentsForComparedCommit -> m CommentsForComparedCommit #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CommentsForComparedCommit -> m CommentsForComparedCommit #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CommentsForComparedCommit -> m CommentsForComparedCommit #

Read CommentsForComparedCommit Source # 
Show CommentsForComparedCommit Source # 
Generic CommentsForComparedCommit Source # 
Hashable CommentsForComparedCommit Source # 
FromJSON CommentsForComparedCommit Source # 
NFData CommentsForComparedCommit Source # 
type Rep CommentsForComparedCommit Source # 
type Rep CommentsForComparedCommit = D1 * (MetaData "CommentsForComparedCommit" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "CommentsForComparedCommit'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_cfccBeforeBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_cfccLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Location))) (S1 * (MetaSel (Just Symbol "_cfccAfterCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_cfccAfterBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_cfccBeforeCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_cfccRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_cfccComments") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe [Comment])))))))

commentsForComparedCommit :: CommentsForComparedCommit Source #

Creates a value of CommentsForComparedCommit with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cfccBeforeBlobId - The full blob ID of the commit used to establish the before of the comparison.
  • cfccLocation - 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.
  • cfccAfterCommitId - The full commit ID of the commit used to establish the after of the comparison.
  • cfccAfterBlobId - The full blob ID of the commit used to establish the after of the comparison.
  • cfccBeforeCommitId - The full commit ID of the commit used to establish the before of the comparison.
  • cfccRepositoryName - The name of the repository that contains the compared commits.
  • cfccComments - An array of comment objects. Each comment object contains information about a comment on the comparison between commits.

cfccBeforeBlobId :: Lens' CommentsForComparedCommit (Maybe Text) Source #

The full blob ID of the commit used to establish the before of the comparison.

cfccLocation :: Lens' CommentsForComparedCommit (Maybe Location) Source #

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.

cfccAfterCommitId :: Lens' CommentsForComparedCommit (Maybe Text) Source #

The full commit ID of the commit used to establish the after of the comparison.

cfccAfterBlobId :: Lens' CommentsForComparedCommit (Maybe Text) Source #

The full blob ID of the commit used to establish the after of the comparison.

cfccBeforeCommitId :: Lens' CommentsForComparedCommit (Maybe Text) Source #

The full commit ID of the commit used to establish the before of the comparison.

cfccRepositoryName :: Lens' CommentsForComparedCommit (Maybe Text) Source #

The name of the repository that contains the compared commits.

cfccComments :: Lens' CommentsForComparedCommit [Comment] Source #

An array of comment objects. Each comment object contains information about a comment on the comparison between commits.

CommentsForPullRequest

data CommentsForPullRequest Source #

Returns information about comments on a pull request.

See: commentsForPullRequest smart constructor.

Instances

Eq CommentsForPullRequest Source # 
Data CommentsForPullRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> CommentsForPullRequest -> c CommentsForPullRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c CommentsForPullRequest #

toConstr :: CommentsForPullRequest -> Constr #

dataTypeOf :: CommentsForPullRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c CommentsForPullRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c CommentsForPullRequest) #

gmapT :: (forall b. Data b => b -> b) -> CommentsForPullRequest -> CommentsForPullRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> CommentsForPullRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> CommentsForPullRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> CommentsForPullRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> CommentsForPullRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> CommentsForPullRequest -> m CommentsForPullRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> CommentsForPullRequest -> m CommentsForPullRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> CommentsForPullRequest -> m CommentsForPullRequest #

Read CommentsForPullRequest Source # 
Show CommentsForPullRequest Source # 
Generic CommentsForPullRequest Source # 
Hashable CommentsForPullRequest Source # 
FromJSON CommentsForPullRequest Source # 
NFData CommentsForPullRequest Source # 

Methods

rnf :: CommentsForPullRequest -> () #

type Rep CommentsForPullRequest Source # 
type Rep CommentsForPullRequest = D1 * (MetaData "CommentsForPullRequest" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "CommentsForPullRequest'" PrefixI True) ((:*:) * ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_cfprBeforeBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_cfprLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Location)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_cfprAfterCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_cfprPullRequestId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_cfprAfterBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_cfprBeforeCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_cfprRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_cfprComments") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe [Comment])))))))

commentsForPullRequest :: CommentsForPullRequest Source #

Creates a value of CommentsForPullRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cfprBeforeBlobId - The full blob ID of the file on which you want to comment on the destination commit.
  • cfprLocation - 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).
  • cfprAfterCommitId - he full commit ID of the commit that was the tip of the source branch at the time the comment was made.
  • cfprPullRequestId - The system-generated ID of the pull request.
  • cfprAfterBlobId - The full blob ID of the file on which you want to comment on the source commit.
  • cfprBeforeCommitId - 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.
  • cfprRepositoryName - The name of the repository that contains the pull request.
  • cfprComments - An array of comment objects. Each comment object contains information about a comment on the pull request.

cfprBeforeBlobId :: Lens' CommentsForPullRequest (Maybe Text) Source #

The full blob ID of the file on which you want to comment on the destination commit.

cfprLocation :: Lens' CommentsForPullRequest (Maybe Location) Source #

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

cfprAfterCommitId :: Lens' CommentsForPullRequest (Maybe Text) Source #

he full commit ID of the commit that was the tip of the source branch at the time the comment was made.

cfprPullRequestId :: Lens' CommentsForPullRequest (Maybe Text) Source #

The system-generated ID of the pull request.

cfprAfterBlobId :: Lens' CommentsForPullRequest (Maybe Text) Source #

The full blob ID of the file on which you want to comment on the source commit.

cfprBeforeCommitId :: Lens' CommentsForPullRequest (Maybe Text) Source #

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.

cfprRepositoryName :: Lens' CommentsForPullRequest (Maybe Text) Source #

The name of the repository that contains the pull request.

cfprComments :: Lens' CommentsForPullRequest [Comment] Source #

An array of comment objects. Each comment object contains information about a comment on the pull request.

Commit

data Commit Source #

Returns information about a specific commit.

See: commit smart constructor.

Instances

Eq Commit Source # 

Methods

(==) :: Commit -> Commit -> Bool #

(/=) :: Commit -> Commit -> Bool #

Data Commit Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Commit -> c Commit #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Commit #

toConstr :: Commit -> Constr #

dataTypeOf :: Commit -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Commit) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Commit) #

gmapT :: (forall b. Data b => b -> b) -> Commit -> Commit #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Commit -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Commit -> r #

gmapQ :: (forall d. Data d => d -> u) -> Commit -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Commit -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Commit -> m Commit #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Commit -> m Commit #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Commit -> m Commit #

Read Commit Source # 
Show Commit Source # 
Generic Commit Source # 

Associated Types

type Rep Commit :: * -> * #

Methods

from :: Commit -> Rep Commit x #

to :: Rep Commit x -> Commit #

Hashable Commit Source # 

Methods

hashWithSalt :: Int -> Commit -> Int #

hash :: Commit -> Int #

FromJSON Commit Source # 
NFData Commit Source # 

Methods

rnf :: Commit -> () #

type Rep Commit Source # 

commit :: Commit Source #

Creates a value of Commit with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • cCommitId - The full SHA of the specified commit.
  • cCommitter - 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 in Pro Git by Scott Chacon and Ben Straub.
  • cTreeId - Tree information for the specified commit.
  • cAdditionalData - Any additional data associated with the specified commit.
  • cParents - A list of parent commits for the specified commit. Each parent commit ID is the full commit ID.
  • cAuthor - 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.
  • cMessage - The commit message associated with the specified commit.

cCommitId :: Lens' Commit (Maybe Text) Source #

The full SHA of the specified commit.

cCommitter :: Lens' Commit (Maybe UserInfo) Source #

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 in Pro Git by Scott Chacon and Ben Straub.

cTreeId :: Lens' Commit (Maybe Text) Source #

Tree information for the specified commit.

cAdditionalData :: Lens' Commit (Maybe Text) Source #

Any additional data associated with the specified commit.

cParents :: Lens' Commit [Text] Source #

A list of parent commits for the specified commit. Each parent commit ID is the full commit ID.

cAuthor :: Lens' Commit (Maybe UserInfo) Source #

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.

cMessage :: Lens' Commit (Maybe Text) Source #

The commit message associated with the specified commit.

Difference

data Difference Source #

Returns information about a set of differences for a commit specifier.

See: difference smart constructor.

Instances

Eq Difference Source # 
Data Difference Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Difference -> c Difference #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Difference #

toConstr :: Difference -> Constr #

dataTypeOf :: Difference -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Difference) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Difference) #

gmapT :: (forall b. Data b => b -> b) -> Difference -> Difference #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Difference -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Difference -> r #

gmapQ :: (forall d. Data d => d -> u) -> Difference -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Difference -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Difference -> m Difference #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Difference -> m Difference #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Difference -> m Difference #

Read Difference Source # 
Show Difference Source # 
Generic Difference Source # 

Associated Types

type Rep Difference :: * -> * #

Hashable Difference Source # 
FromJSON Difference Source # 
NFData Difference Source # 

Methods

rnf :: Difference -> () #

type Rep Difference Source # 
type Rep Difference = D1 * (MetaData "Difference" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "Difference'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_dAfterBlob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe BlobMetadata))) ((:*:) * (S1 * (MetaSel (Just Symbol "_dBeforeBlob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe BlobMetadata))) (S1 * (MetaSel (Just Symbol "_dChangeType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe ChangeTypeEnum))))))

difference :: Difference Source #

Creates a value of Difference with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • dAfterBlob - Information about an afterBlob data type object, including the ID, the file mode permission code, and the path.
  • dBeforeBlob - Information about a beforeBlob data type object, including the ID, the file mode permission code, and the path.
  • dChangeType - Whether the change type of the difference is an addition (A), deletion (D), or modification (M).

dAfterBlob :: Lens' Difference (Maybe BlobMetadata) Source #

Information about an afterBlob data type object, including the ID, the file mode permission code, and the path.

dBeforeBlob :: Lens' Difference (Maybe BlobMetadata) Source #

Information about a beforeBlob data type object, including the ID, the file mode permission code, and the path.

dChangeType :: Lens' Difference (Maybe ChangeTypeEnum) Source #

Whether the change type of the difference is an addition (A), deletion (D), or modification (M).

Location

data Location Source #

Returns information about the location of a change or comment in the comparison between two commits or a pull request.

See: location smart constructor.

Instances

Eq Location Source # 
Data Location Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Location -> c Location #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Location #

toConstr :: Location -> Constr #

dataTypeOf :: Location -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Location) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Location) #

gmapT :: (forall b. Data b => b -> b) -> Location -> Location #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Location -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Location -> r #

gmapQ :: (forall d. Data d => d -> u) -> Location -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Location -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Location -> m Location #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Location -> m Location #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Location -> m Location #

Read Location Source # 
Show Location Source # 
Generic Location Source # 

Associated Types

type Rep Location :: * -> * #

Methods

from :: Location -> Rep Location x #

to :: Rep Location x -> Location #

Hashable Location Source # 

Methods

hashWithSalt :: Int -> Location -> Int #

hash :: Location -> Int #

ToJSON Location Source # 
FromJSON Location Source # 
NFData Location Source # 

Methods

rnf :: Location -> () #

type Rep Location Source # 
type Rep Location = D1 * (MetaData "Location" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "Location'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_lRelativeFileVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe RelativeFileVersionEnum))) ((:*:) * (S1 * (MetaSel (Just Symbol "_lFilePath") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_lFilePosition") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Integer))))))

location :: Location Source #

Creates a value of Location with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • lRelativeFileVersion - In a comparison of commits or a pull request, whether the change is in the before or after of that comparison.
  • lFilePath - The name of the file being compared, including its extension and subdirectory, if any.
  • lFilePosition - The position of a change within a compared file, in line number format.

lRelativeFileVersion :: Lens' Location (Maybe RelativeFileVersionEnum) Source #

In a comparison of commits or a pull request, whether the change is in the before or after of that comparison.

lFilePath :: Lens' Location (Maybe Text) Source #

The name of the file being compared, including its extension and subdirectory, if any.

lFilePosition :: Lens' Location (Maybe Integer) Source #

The position of a change within a compared file, in line number format.

MergeMetadata

data MergeMetadata Source #

Returns information about a merge or potential merge between a source reference and a destination reference in a pull request.

See: mergeMetadata smart constructor.

Instances

Eq MergeMetadata Source # 
Data MergeMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> MergeMetadata -> c MergeMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c MergeMetadata #

toConstr :: MergeMetadata -> Constr #

dataTypeOf :: MergeMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c MergeMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c MergeMetadata) #

gmapT :: (forall b. Data b => b -> b) -> MergeMetadata -> MergeMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> MergeMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> MergeMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> MergeMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> MergeMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> MergeMetadata -> m MergeMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> MergeMetadata -> m MergeMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> MergeMetadata -> m MergeMetadata #

Read MergeMetadata Source # 
Show MergeMetadata Source # 
Generic MergeMetadata Source # 

Associated Types

type Rep MergeMetadata :: * -> * #

Hashable MergeMetadata Source # 
FromJSON MergeMetadata Source # 
NFData MergeMetadata Source # 

Methods

rnf :: MergeMetadata -> () #

type Rep MergeMetadata Source # 
type Rep MergeMetadata = D1 * (MetaData "MergeMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "MergeMetadata'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_mmMergedBy") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_mmIsMerged") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Bool)))))

mergeMetadata :: MergeMetadata Source #

Creates a value of MergeMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • mmMergedBy - The Amazon Resource Name (ARN) of the user who merged the branches.
  • mmIsMerged - A Boolean value indicating whether the merge has been made.

mmMergedBy :: Lens' MergeMetadata (Maybe Text) Source #

The Amazon Resource Name (ARN) of the user who merged the branches.

mmIsMerged :: Lens' MergeMetadata (Maybe Bool) Source #

A Boolean value indicating whether the merge has been made.

PullRequest

data PullRequest Source #

Returns information about a pull request.

See: pullRequest smart constructor.

Instances

Eq PullRequest Source # 
Data PullRequest Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequest -> c PullRequest #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequest #

toConstr :: PullRequest -> Constr #

dataTypeOf :: PullRequest -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequest) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequest) #

gmapT :: (forall b. Data b => b -> b) -> PullRequest -> PullRequest #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequest -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequest -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequest -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequest -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequest -> m PullRequest #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequest -> m PullRequest #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequest -> m PullRequest #

Read PullRequest Source # 
Show PullRequest Source # 
Generic PullRequest Source # 

Associated Types

type Rep PullRequest :: * -> * #

Hashable PullRequest Source # 
FromJSON PullRequest Source # 
NFData PullRequest Source # 

Methods

rnf :: PullRequest -> () #

type Rep PullRequest Source # 

pullRequest :: PullRequest Source #

Creates a value of PullRequest with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • prAuthorARN - The Amazon Resource Name (ARN) of the user who created the pull request.
  • prPullRequestId - The system-generated ID of the pull request.
  • prCreationDate - The date and time the pull request was originally created, in timestamp format.
  • prPullRequestStatus - The status of the pull request. Pull request status can only change from OPEN to CLOSED .
  • prTitle - The user-defined title of the pull request. This title is displayed in the list of pull requests to other users of the repository.
  • prClientRequestToken - 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.
  • prLastActivityDate - The day and time of the last user or system activity on the pull request, in timestamp format.
  • prPullRequestTargets - The targets of the pull request, including the source branch and destination branch for the pull request.
  • prDescription - 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.

prAuthorARN :: Lens' PullRequest (Maybe Text) Source #

The Amazon Resource Name (ARN) of the user who created the pull request.

prPullRequestId :: Lens' PullRequest (Maybe Text) Source #

The system-generated ID of the pull request.

prCreationDate :: Lens' PullRequest (Maybe UTCTime) Source #

The date and time the pull request was originally created, in timestamp format.

prPullRequestStatus :: Lens' PullRequest (Maybe PullRequestStatusEnum) Source #

The status of the pull request. Pull request status can only change from OPEN to CLOSED .

prTitle :: Lens' PullRequest (Maybe Text) Source #

The user-defined title of the pull request. This title is displayed in the list of pull requests to other users of the repository.

prClientRequestToken :: Lens' PullRequest (Maybe Text) Source #

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.

prLastActivityDate :: Lens' PullRequest (Maybe UTCTime) Source #

The day and time of the last user or system activity on the pull request, in timestamp format.

prPullRequestTargets :: Lens' PullRequest [PullRequestTarget] Source #

The targets of the pull request, including the source branch and destination branch for the pull request.

prDescription :: Lens' PullRequest (Maybe Text) Source #

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.

PullRequestEvent

data PullRequestEvent Source #

Returns information about a pull request event.

See: pullRequestEvent smart constructor.

Instances

Eq PullRequestEvent Source # 
Data PullRequestEvent Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestEvent -> c PullRequestEvent #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestEvent #

toConstr :: PullRequestEvent -> Constr #

dataTypeOf :: PullRequestEvent -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestEvent) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestEvent) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestEvent -> PullRequestEvent #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestEvent -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestEvent -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestEvent -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestEvent -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestEvent -> m PullRequestEvent #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestEvent -> m PullRequestEvent #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestEvent -> m PullRequestEvent #

Read PullRequestEvent Source # 
Show PullRequestEvent Source # 
Generic PullRequestEvent Source # 
Hashable PullRequestEvent Source # 
FromJSON PullRequestEvent Source # 
NFData PullRequestEvent Source # 

Methods

rnf :: PullRequestEvent -> () #

type Rep PullRequestEvent Source # 
type Rep PullRequestEvent = D1 * (MetaData "PullRequestEvent" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "PullRequestEvent'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_prePullRequestMergedStateChangedEventMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe PullRequestMergedStateChangedEventMetadata))) ((:*:) * (S1 * (MetaSel (Just Symbol "_prePullRequestEventType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe PullRequestEventType))) (S1 * (MetaSel (Just Symbol "_prePullRequestStatusChangedEventMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe PullRequestStatusChangedEventMetadata))))) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_preActorARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_prePullRequestId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_preEventDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe POSIX))) (S1 * (MetaSel (Just Symbol "_prePullRequestSourceReferenceUpdatedEventMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe PullRequestSourceReferenceUpdatedEventMetadata)))))))

pullRequestEvent :: PullRequestEvent Source #

Creates a value of PullRequestEvent with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

prePullRequestMergedStateChangedEventMetadata :: Lens' PullRequestEvent (Maybe PullRequestMergedStateChangedEventMetadata) Source #

Information about the change in mergability state for the pull request event.

prePullRequestEventType :: Lens' PullRequestEvent (Maybe PullRequestEventType) Source #

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

prePullRequestStatusChangedEventMetadata :: Lens' PullRequestEvent (Maybe PullRequestStatusChangedEventMetadata) Source #

Information about the change in status for the pull request event.

preActorARN :: Lens' PullRequestEvent (Maybe Text) Source #

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.

prePullRequestId :: Lens' PullRequestEvent (Maybe Text) Source #

The system-generated ID of the pull request.

preEventDate :: Lens' PullRequestEvent (Maybe UTCTime) Source #

The day and time of the pull request event, in timestamp format.

PullRequestMergedStateChangedEventMetadata

data PullRequestMergedStateChangedEventMetadata Source #

Returns information about the change in the merge state for a pull request event.

See: pullRequestMergedStateChangedEventMetadata smart constructor.

Instances

Eq PullRequestMergedStateChangedEventMetadata Source # 
Data PullRequestMergedStateChangedEventMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestMergedStateChangedEventMetadata -> c PullRequestMergedStateChangedEventMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestMergedStateChangedEventMetadata #

toConstr :: PullRequestMergedStateChangedEventMetadata -> Constr #

dataTypeOf :: PullRequestMergedStateChangedEventMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestMergedStateChangedEventMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestMergedStateChangedEventMetadata) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestMergedStateChangedEventMetadata -> PullRequestMergedStateChangedEventMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestMergedStateChangedEventMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestMergedStateChangedEventMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestMergedStateChangedEventMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestMergedStateChangedEventMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestMergedStateChangedEventMetadata -> m PullRequestMergedStateChangedEventMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestMergedStateChangedEventMetadata -> m PullRequestMergedStateChangedEventMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestMergedStateChangedEventMetadata -> m PullRequestMergedStateChangedEventMetadata #

Read PullRequestMergedStateChangedEventMetadata Source # 
Show PullRequestMergedStateChangedEventMetadata Source # 
Generic PullRequestMergedStateChangedEventMetadata Source # 
Hashable PullRequestMergedStateChangedEventMetadata Source # 
FromJSON PullRequestMergedStateChangedEventMetadata Source # 
NFData PullRequestMergedStateChangedEventMetadata Source # 
type Rep PullRequestMergedStateChangedEventMetadata Source # 
type Rep PullRequestMergedStateChangedEventMetadata = D1 * (MetaData "PullRequestMergedStateChangedEventMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "PullRequestMergedStateChangedEventMetadata'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_prmscemDestinationReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_prmscemMergeMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe MergeMetadata))) (S1 * (MetaSel (Just Symbol "_prmscemRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))))

pullRequestMergedStateChangedEventMetadata :: PullRequestMergedStateChangedEventMetadata Source #

Creates a value of PullRequestMergedStateChangedEventMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

prmscemDestinationReference :: Lens' PullRequestMergedStateChangedEventMetadata (Maybe Text) Source #

The name of the branch that the pull request will be merged into.

prmscemRepositoryName :: Lens' PullRequestMergedStateChangedEventMetadata (Maybe Text) Source #

The name of the repository where the pull request was created.

PullRequestSourceReferenceUpdatedEventMetadata

data PullRequestSourceReferenceUpdatedEventMetadata Source #

Information about an update to the source branch of a pull request.

See: pullRequestSourceReferenceUpdatedEventMetadata smart constructor.

Instances

Eq PullRequestSourceReferenceUpdatedEventMetadata Source # 
Data PullRequestSourceReferenceUpdatedEventMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestSourceReferenceUpdatedEventMetadata -> c PullRequestSourceReferenceUpdatedEventMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestSourceReferenceUpdatedEventMetadata #

toConstr :: PullRequestSourceReferenceUpdatedEventMetadata -> Constr #

dataTypeOf :: PullRequestSourceReferenceUpdatedEventMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestSourceReferenceUpdatedEventMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestSourceReferenceUpdatedEventMetadata) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestSourceReferenceUpdatedEventMetadata -> PullRequestSourceReferenceUpdatedEventMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestSourceReferenceUpdatedEventMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestSourceReferenceUpdatedEventMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestSourceReferenceUpdatedEventMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestSourceReferenceUpdatedEventMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestSourceReferenceUpdatedEventMetadata -> m PullRequestSourceReferenceUpdatedEventMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestSourceReferenceUpdatedEventMetadata -> m PullRequestSourceReferenceUpdatedEventMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestSourceReferenceUpdatedEventMetadata -> m PullRequestSourceReferenceUpdatedEventMetadata #

Read PullRequestSourceReferenceUpdatedEventMetadata Source # 
Show PullRequestSourceReferenceUpdatedEventMetadata Source # 
Generic PullRequestSourceReferenceUpdatedEventMetadata Source # 
Hashable PullRequestSourceReferenceUpdatedEventMetadata Source # 
FromJSON PullRequestSourceReferenceUpdatedEventMetadata Source # 
NFData PullRequestSourceReferenceUpdatedEventMetadata Source # 
type Rep PullRequestSourceReferenceUpdatedEventMetadata Source # 
type Rep PullRequestSourceReferenceUpdatedEventMetadata = D1 * (MetaData "PullRequestSourceReferenceUpdatedEventMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "PullRequestSourceReferenceUpdatedEventMetadata'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_prsruemAfterCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_prsruemBeforeCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_prsruemRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))))

pullRequestSourceReferenceUpdatedEventMetadata :: PullRequestSourceReferenceUpdatedEventMetadata Source #

Creates a value of PullRequestSourceReferenceUpdatedEventMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • prsruemAfterCommitId - 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.
  • prsruemBeforeCommitId - 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.
  • prsruemRepositoryName - The name of the repository where the pull request was updated.

prsruemAfterCommitId :: Lens' PullRequestSourceReferenceUpdatedEventMetadata (Maybe Text) Source #

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.

prsruemBeforeCommitId :: Lens' PullRequestSourceReferenceUpdatedEventMetadata (Maybe Text) Source #

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.

prsruemRepositoryName :: Lens' PullRequestSourceReferenceUpdatedEventMetadata (Maybe Text) Source #

The name of the repository where the pull request was updated.

PullRequestStatusChangedEventMetadata

data PullRequestStatusChangedEventMetadata Source #

Information about a change to the status of a pull request.

See: pullRequestStatusChangedEventMetadata smart constructor.

Instances

Eq PullRequestStatusChangedEventMetadata Source # 
Data PullRequestStatusChangedEventMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestStatusChangedEventMetadata -> c PullRequestStatusChangedEventMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestStatusChangedEventMetadata #

toConstr :: PullRequestStatusChangedEventMetadata -> Constr #

dataTypeOf :: PullRequestStatusChangedEventMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestStatusChangedEventMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestStatusChangedEventMetadata) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestStatusChangedEventMetadata -> PullRequestStatusChangedEventMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestStatusChangedEventMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestStatusChangedEventMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestStatusChangedEventMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestStatusChangedEventMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestStatusChangedEventMetadata -> m PullRequestStatusChangedEventMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestStatusChangedEventMetadata -> m PullRequestStatusChangedEventMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestStatusChangedEventMetadata -> m PullRequestStatusChangedEventMetadata #

Read PullRequestStatusChangedEventMetadata Source # 
Show PullRequestStatusChangedEventMetadata Source # 
Generic PullRequestStatusChangedEventMetadata Source # 
Hashable PullRequestStatusChangedEventMetadata Source # 
FromJSON PullRequestStatusChangedEventMetadata Source # 
NFData PullRequestStatusChangedEventMetadata Source # 
type Rep PullRequestStatusChangedEventMetadata Source # 
type Rep PullRequestStatusChangedEventMetadata = D1 * (MetaData "PullRequestStatusChangedEventMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" True) (C1 * (MetaCons "PullRequestStatusChangedEventMetadata'" PrefixI True) (S1 * (MetaSel (Just Symbol "_prscemPullRequestStatus") NoSourceUnpackedness NoSourceStrictness DecidedLazy) (Rec0 * (Maybe PullRequestStatusEnum))))

pullRequestStatusChangedEventMetadata :: PullRequestStatusChangedEventMetadata Source #

Creates a value of PullRequestStatusChangedEventMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

PullRequestTarget

data PullRequestTarget Source #

Returns information about a pull request target.

See: pullRequestTarget smart constructor.

Instances

Eq PullRequestTarget Source # 
Data PullRequestTarget Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> PullRequestTarget -> c PullRequestTarget #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c PullRequestTarget #

toConstr :: PullRequestTarget -> Constr #

dataTypeOf :: PullRequestTarget -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c PullRequestTarget) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c PullRequestTarget) #

gmapT :: (forall b. Data b => b -> b) -> PullRequestTarget -> PullRequestTarget #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestTarget -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> PullRequestTarget -> r #

gmapQ :: (forall d. Data d => d -> u) -> PullRequestTarget -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> PullRequestTarget -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> PullRequestTarget -> m PullRequestTarget #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestTarget -> m PullRequestTarget #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> PullRequestTarget -> m PullRequestTarget #

Read PullRequestTarget Source # 
Show PullRequestTarget Source # 
Generic PullRequestTarget Source # 
Hashable PullRequestTarget Source # 
FromJSON PullRequestTarget Source # 
NFData PullRequestTarget Source # 

Methods

rnf :: PullRequestTarget -> () #

type Rep PullRequestTarget Source # 
type Rep PullRequestTarget = D1 * (MetaData "PullRequestTarget" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "PullRequestTarget'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_prtSourceCommit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_prtDestinationReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_prtMergeMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe MergeMetadata))))) ((:*:) * (S1 * (MetaSel (Just Symbol "_prtDestinationCommit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_prtRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_prtSourceReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))))))

pullRequestTarget :: PullRequestTarget Source #

Creates a value of PullRequestTarget with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • prtSourceCommit - 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.
  • prtDestinationReference - The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.
  • prtMergeMetadata - Returns metadata about the state of the merge, including whether the merge has been made.
  • prtDestinationCommit - 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.
  • prtRepositoryName - The name of the repository that contains the pull request source and destination branches.
  • prtSourceReference - The branch of the repository that contains the changes for the pull request. Also known as the source branch.

prtSourceCommit :: Lens' PullRequestTarget (Maybe Text) Source #

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.

prtDestinationReference :: Lens' PullRequestTarget (Maybe Text) Source #

The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.

prtMergeMetadata :: Lens' PullRequestTarget (Maybe MergeMetadata) Source #

Returns metadata about the state of the merge, including whether the merge has been made.

prtDestinationCommit :: Lens' PullRequestTarget (Maybe Text) Source #

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.

prtRepositoryName :: Lens' PullRequestTarget (Maybe Text) Source #

The name of the repository that contains the pull request source and destination branches.

prtSourceReference :: Lens' PullRequestTarget (Maybe Text) Source #

The branch of the repository that contains the changes for the pull request. Also known as the source branch.

RepositoryMetadata

data RepositoryMetadata Source #

Information about a repository.

See: repositoryMetadata smart constructor.

Instances

Eq RepositoryMetadata Source # 
Data RepositoryMetadata Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RepositoryMetadata -> c RepositoryMetadata #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RepositoryMetadata #

toConstr :: RepositoryMetadata -> Constr #

dataTypeOf :: RepositoryMetadata -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c RepositoryMetadata) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RepositoryMetadata) #

gmapT :: (forall b. Data b => b -> b) -> RepositoryMetadata -> RepositoryMetadata #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryMetadata -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryMetadata -> r #

gmapQ :: (forall d. Data d => d -> u) -> RepositoryMetadata -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RepositoryMetadata -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RepositoryMetadata -> m RepositoryMetadata #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryMetadata -> m RepositoryMetadata #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryMetadata -> m RepositoryMetadata #

Read RepositoryMetadata Source # 
Show RepositoryMetadata Source # 
Generic RepositoryMetadata Source # 
Hashable RepositoryMetadata Source # 
FromJSON RepositoryMetadata Source # 
NFData RepositoryMetadata Source # 

Methods

rnf :: RepositoryMetadata -> () #

type Rep RepositoryMetadata Source # 

repositoryMetadata :: RepositoryMetadata Source #

Creates a value of RepositoryMetadata with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rmRepositoryDescription :: Lens' RepositoryMetadata (Maybe Text) Source #

A comment or description about the repository.

rmLastModifiedDate :: Lens' RepositoryMetadata (Maybe UTCTime) Source #

The date and time the repository was last modified, in timestamp format.

rmARN :: Lens' RepositoryMetadata (Maybe Text) Source #

The Amazon Resource Name (ARN) of the repository.

rmCloneURLHTTP :: Lens' RepositoryMetadata (Maybe Text) Source #

The URL to use for cloning the repository over HTTPS.

rmAccountId :: Lens' RepositoryMetadata (Maybe Text) Source #

The ID of the AWS account associated with the repository.

rmDefaultBranch :: Lens' RepositoryMetadata (Maybe Text) Source #

The repository's default branch name.

rmRepositoryId :: Lens' RepositoryMetadata (Maybe Text) Source #

The ID of the repository.

rmCreationDate :: Lens' RepositoryMetadata (Maybe UTCTime) Source #

The date and time the repository was created, in timestamp format.

rmCloneURLSSH :: Lens' RepositoryMetadata (Maybe Text) Source #

The URL to use for cloning the repository over SSH.

RepositoryNameIdPair

data RepositoryNameIdPair Source #

Information about a repository name and ID.

See: repositoryNameIdPair smart constructor.

Instances

Eq RepositoryNameIdPair Source # 
Data RepositoryNameIdPair Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RepositoryNameIdPair -> c RepositoryNameIdPair #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RepositoryNameIdPair #

toConstr :: RepositoryNameIdPair -> Constr #

dataTypeOf :: RepositoryNameIdPair -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c RepositoryNameIdPair) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RepositoryNameIdPair) #

gmapT :: (forall b. Data b => b -> b) -> RepositoryNameIdPair -> RepositoryNameIdPair #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryNameIdPair -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryNameIdPair -> r #

gmapQ :: (forall d. Data d => d -> u) -> RepositoryNameIdPair -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RepositoryNameIdPair -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RepositoryNameIdPair -> m RepositoryNameIdPair #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryNameIdPair -> m RepositoryNameIdPair #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryNameIdPair -> m RepositoryNameIdPair #

Read RepositoryNameIdPair Source # 
Show RepositoryNameIdPair Source # 
Generic RepositoryNameIdPair Source # 
Hashable RepositoryNameIdPair Source # 
FromJSON RepositoryNameIdPair Source # 
NFData RepositoryNameIdPair Source # 

Methods

rnf :: RepositoryNameIdPair -> () #

type Rep RepositoryNameIdPair Source # 
type Rep RepositoryNameIdPair = D1 * (MetaData "RepositoryNameIdPair" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "RepositoryNameIdPair'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_rnipRepositoryId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_rnipRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))))

repositoryNameIdPair :: RepositoryNameIdPair Source #

Creates a value of RepositoryNameIdPair with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rnipRepositoryId :: Lens' RepositoryNameIdPair (Maybe Text) Source #

The ID associated with the repository.

rnipRepositoryName :: Lens' RepositoryNameIdPair (Maybe Text) Source #

The name associated with the repository.

RepositoryTrigger

data RepositoryTrigger Source #

Information about a trigger for a repository.

See: repositoryTrigger smart constructor.

Instances

Eq RepositoryTrigger Source # 
Data RepositoryTrigger Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RepositoryTrigger -> c RepositoryTrigger #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RepositoryTrigger #

toConstr :: RepositoryTrigger -> Constr #

dataTypeOf :: RepositoryTrigger -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c RepositoryTrigger) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RepositoryTrigger) #

gmapT :: (forall b. Data b => b -> b) -> RepositoryTrigger -> RepositoryTrigger #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryTrigger -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryTrigger -> r #

gmapQ :: (forall d. Data d => d -> u) -> RepositoryTrigger -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RepositoryTrigger -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RepositoryTrigger -> m RepositoryTrigger #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryTrigger -> m RepositoryTrigger #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryTrigger -> m RepositoryTrigger #

Read RepositoryTrigger Source # 
Show RepositoryTrigger Source # 
Generic RepositoryTrigger Source # 
Hashable RepositoryTrigger Source # 
ToJSON RepositoryTrigger Source # 
FromJSON RepositoryTrigger Source # 
NFData RepositoryTrigger Source # 

Methods

rnf :: RepositoryTrigger -> () #

type Rep RepositoryTrigger Source # 
type Rep RepositoryTrigger = D1 * (MetaData "RepositoryTrigger" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "RepositoryTrigger'" PrefixI True) ((:*:) * ((:*:) * (S1 * (MetaSel (Just Symbol "_rtBranches") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe [Text]))) (S1 * (MetaSel (Just Symbol "_rtCustomData") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))) ((:*:) * (S1 * (MetaSel (Just Symbol "_rtName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)) ((:*:) * (S1 * (MetaSel (Just Symbol "_rtDestinationARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)) (S1 * (MetaSel (Just Symbol "_rtEvents") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * [RepositoryTriggerEventEnum]))))))

repositoryTrigger Source #

Creates a value of RepositoryTrigger with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • rtBranches - The branches that will be included in the trigger configuration. If you specify an empty array, the trigger will apply to all branches.
  • rtCustomData - Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.
  • rtName - The name of the trigger.
  • rtDestinationARN - 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).
  • rtEvents - 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).

rtBranches :: Lens' RepositoryTrigger [Text] Source #

The branches that will be included in the trigger configuration. If you specify an empty array, the trigger will apply to all branches.

rtCustomData :: Lens' RepositoryTrigger (Maybe Text) Source #

Any custom data associated with the trigger that will be included in the information sent to the target of the trigger.

rtName :: Lens' RepositoryTrigger Text Source #

The name of the trigger.

rtDestinationARN :: Lens' RepositoryTrigger Text Source #

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

rtEvents :: Lens' RepositoryTrigger [RepositoryTriggerEventEnum] Source #

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

RepositoryTriggerExecutionFailure

data RepositoryTriggerExecutionFailure Source #

A trigger failed to run.

See: repositoryTriggerExecutionFailure smart constructor.

Instances

Eq RepositoryTriggerExecutionFailure Source # 
Data RepositoryTriggerExecutionFailure Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> RepositoryTriggerExecutionFailure -> c RepositoryTriggerExecutionFailure #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c RepositoryTriggerExecutionFailure #

toConstr :: RepositoryTriggerExecutionFailure -> Constr #

dataTypeOf :: RepositoryTriggerExecutionFailure -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c RepositoryTriggerExecutionFailure) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c RepositoryTriggerExecutionFailure) #

gmapT :: (forall b. Data b => b -> b) -> RepositoryTriggerExecutionFailure -> RepositoryTriggerExecutionFailure #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryTriggerExecutionFailure -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> RepositoryTriggerExecutionFailure -> r #

gmapQ :: (forall d. Data d => d -> u) -> RepositoryTriggerExecutionFailure -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> RepositoryTriggerExecutionFailure -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> RepositoryTriggerExecutionFailure -> m RepositoryTriggerExecutionFailure #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryTriggerExecutionFailure -> m RepositoryTriggerExecutionFailure #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> RepositoryTriggerExecutionFailure -> m RepositoryTriggerExecutionFailure #

Read RepositoryTriggerExecutionFailure Source # 
Show RepositoryTriggerExecutionFailure Source # 
Generic RepositoryTriggerExecutionFailure Source # 
Hashable RepositoryTriggerExecutionFailure Source # 
FromJSON RepositoryTriggerExecutionFailure Source # 
NFData RepositoryTriggerExecutionFailure Source # 
type Rep RepositoryTriggerExecutionFailure Source # 
type Rep RepositoryTriggerExecutionFailure = D1 * (MetaData "RepositoryTriggerExecutionFailure" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "RepositoryTriggerExecutionFailure'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_rtefFailureMessage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_rtefTrigger") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text)))))

repositoryTriggerExecutionFailure :: RepositoryTriggerExecutionFailure Source #

Creates a value of RepositoryTriggerExecutionFailure with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

rtefFailureMessage :: Lens' RepositoryTriggerExecutionFailure (Maybe Text) Source #

Additional message information about the trigger that did not run.

rtefTrigger :: Lens' RepositoryTriggerExecutionFailure (Maybe Text) Source #

The name of the trigger that did not run.

Target

data Target Source #

Returns information about a target for a pull request.

See: target smart constructor.

Instances

Eq Target Source # 

Methods

(==) :: Target -> Target -> Bool #

(/=) :: Target -> Target -> Bool #

Data Target Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> Target -> c Target #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c Target #

toConstr :: Target -> Constr #

dataTypeOf :: Target -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c Target) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c Target) #

gmapT :: (forall b. Data b => b -> b) -> Target -> Target #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> Target -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> Target -> r #

gmapQ :: (forall d. Data d => d -> u) -> Target -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> Target -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> Target -> m Target #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> Target -> m Target #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> Target -> m Target #

Read Target Source # 
Show Target Source # 
Generic Target Source # 

Associated Types

type Rep Target :: * -> * #

Methods

from :: Target -> Rep Target x #

to :: Rep Target x -> Target #

Hashable Target Source # 

Methods

hashWithSalt :: Int -> Target -> Int #

hash :: Target -> Int #

ToJSON Target Source # 
NFData Target Source # 

Methods

rnf :: Target -> () #

type Rep Target Source # 
type Rep Target = D1 * (MetaData "Target" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "Target'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_tDestinationReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_tRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)) (S1 * (MetaSel (Just Symbol "_tSourceReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * Text)))))

target Source #

Creates a value of Target with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • tDestinationReference - The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.
  • tRepositoryName - The name of the repository that contains the pull request.
  • tSourceReference - The branch of the repository that contains the changes for the pull request. Also known as the source branch.

tDestinationReference :: Lens' Target (Maybe Text) Source #

The branch of the repository where the pull request changes will be merged into. Also known as the destination branch.

tRepositoryName :: Lens' Target Text Source #

The name of the repository that contains the pull request.

tSourceReference :: Lens' Target Text Source #

The branch of the repository that contains the changes for the pull request. Also known as the source branch.

UserInfo

data UserInfo Source #

Information about the user who made a specified commit.

See: userInfo smart constructor.

Instances

Eq UserInfo Source # 
Data UserInfo Source # 

Methods

gfoldl :: (forall d b. Data d => c (d -> b) -> d -> c b) -> (forall g. g -> c g) -> UserInfo -> c UserInfo #

gunfold :: (forall b r. Data b => c (b -> r) -> c r) -> (forall r. r -> c r) -> Constr -> c UserInfo #

toConstr :: UserInfo -> Constr #

dataTypeOf :: UserInfo -> DataType #

dataCast1 :: Typeable (* -> *) t => (forall d. Data d => c (t d)) -> Maybe (c UserInfo) #

dataCast2 :: Typeable (* -> * -> *) t => (forall d e. (Data d, Data e) => c (t d e)) -> Maybe (c UserInfo) #

gmapT :: (forall b. Data b => b -> b) -> UserInfo -> UserInfo #

gmapQl :: (r -> r' -> r) -> r -> (forall d. Data d => d -> r') -> UserInfo -> r #

gmapQr :: (r' -> r -> r) -> r -> (forall d. Data d => d -> r') -> UserInfo -> r #

gmapQ :: (forall d. Data d => d -> u) -> UserInfo -> [u] #

gmapQi :: Int -> (forall d. Data d => d -> u) -> UserInfo -> u #

gmapM :: Monad m => (forall d. Data d => d -> m d) -> UserInfo -> m UserInfo #

gmapMp :: MonadPlus m => (forall d. Data d => d -> m d) -> UserInfo -> m UserInfo #

gmapMo :: MonadPlus m => (forall d. Data d => d -> m d) -> UserInfo -> m UserInfo #

Read UserInfo Source # 
Show UserInfo Source # 
Generic UserInfo Source # 

Associated Types

type Rep UserInfo :: * -> * #

Methods

from :: UserInfo -> Rep UserInfo x #

to :: Rep UserInfo x -> UserInfo #

Hashable UserInfo Source # 

Methods

hashWithSalt :: Int -> UserInfo -> Int #

hash :: UserInfo -> Int #

FromJSON UserInfo Source # 
NFData UserInfo Source # 

Methods

rnf :: UserInfo -> () #

type Rep UserInfo Source # 
type Rep UserInfo = D1 * (MetaData "UserInfo" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.0-Ck6cSFWU4LEJwYMtJc4ier" False) (C1 * (MetaCons "UserInfo'" PrefixI True) ((:*:) * (S1 * (MetaSel (Just Symbol "_uiEmail") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) ((:*:) * (S1 * (MetaSel (Just Symbol "_uiDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))) (S1 * (MetaSel (Just Symbol "_uiName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 * (Maybe Text))))))

userInfo :: UserInfo Source #

Creates a value of UserInfo with the minimum fields required to make a request.

Use one of the following lenses to modify other fields as desired:

  • uiEmail - The email address associated with the user who made the commit, if any.
  • uiDate - The date when the specified commit was commited, in timestamp format with GMT offset.
  • uiName - The name of the user who made the specified commit.

uiEmail :: Lens' UserInfo (Maybe Text) Source #

The email address associated with the user who made the commit, if any.

uiDate :: Lens' UserInfo (Maybe Text) Source #

The date when the specified commit was commited, in timestamp format with GMT offset.

uiName :: Lens' UserInfo (Maybe Text) Source #

The name of the user who made the specified commit.