amazonka-codecommit-1.6.1: 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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep ChangeTypeEnum :: Type -> Type #

Hashable ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromJSON ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: ChangeTypeEnum -> () #

type Rep ChangeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep ChangeTypeEnum = D1 (MetaData "ChangeTypeEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "A" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "D" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "M" PrefixI False) (U1 :: Type -> Type)))

FileModeTypeEnum

data FileModeTypeEnum Source #

Constructors

Executable 
Normal 
Symlink 
Instances
Bounded FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep FileModeTypeEnum :: Type -> Type #

Hashable FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: FileModeTypeEnum -> () #

type Rep FileModeTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep FileModeTypeEnum = D1 (MetaData "FileModeTypeEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "Executable" PrefixI False) (U1 :: Type -> Type) :+: (C1 (MetaCons "Normal" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Symlink" PrefixI False) (U1 :: Type -> Type)))

MergeOptionTypeEnum

data MergeOptionTypeEnum Source #

Constructors

FastForwardMerge 
Instances
Bounded MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep MergeOptionTypeEnum :: Type -> Type #

Hashable MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: MergeOptionTypeEnum -> () #

type Rep MergeOptionTypeEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep MergeOptionTypeEnum = D1 (MetaData "MergeOptionTypeEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "FastForwardMerge" PrefixI False) (U1 :: Type -> Type))

OrderEnum

data OrderEnum Source #

Constructors

Ascending 
Descending 
Instances
Bounded OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep OrderEnum :: Type -> Type #

Hashable OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

toBS :: OrderEnum -> ByteString #

FromText OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

toText :: OrderEnum -> Text #

NFData OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: OrderEnum -> () #

type Rep OrderEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep OrderEnum = D1 (MetaData "OrderEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "Ascending" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Descending" PrefixI False) (U1 :: Type -> Type))

PullRequestEventType

data PullRequestEventType Source #

Instances
Bounded PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep PullRequestEventType :: Type -> Type #

Hashable PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromJSON PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: PullRequestEventType -> () #

type Rep PullRequestEventType Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep PullRequestEventType = D1 (MetaData "PullRequestEventType" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) ((C1 (MetaCons "PullRequestCreated" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "PullRequestMergeStateChanged" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "PullRequestSourceReferenceUpdated" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "PullRequestStatusChanged" PrefixI False) (U1 :: Type -> Type)))

PullRequestStatusEnum

data PullRequestStatusEnum Source #

Constructors

Closed 
Open 
Instances
Bounded PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep PullRequestStatusEnum :: Type -> Type #

Hashable PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromJSON PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: PullRequestStatusEnum -> () #

type Rep PullRequestStatusEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep PullRequestStatusEnum = D1 (MetaData "PullRequestStatusEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "Closed" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Open" PrefixI False) (U1 :: Type -> Type))

RelativeFileVersionEnum

data RelativeFileVersionEnum Source #

Constructors

After 
Before 
Instances
Bounded RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep RelativeFileVersionEnum :: Type -> Type #

Hashable RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromJSON RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: RelativeFileVersionEnum -> () #

type Rep RelativeFileVersionEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep RelativeFileVersionEnum = D1 (MetaData "RelativeFileVersionEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "After" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "Before" PrefixI False) (U1 :: Type -> Type))

RepositoryTriggerEventEnum

data RepositoryTriggerEventEnum Source #

Instances
Bounded RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep RepositoryTriggerEventEnum :: Type -> Type #

Hashable RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromJSON RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

NFData RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep RepositoryTriggerEventEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep RepositoryTriggerEventEnum = D1 (MetaData "RepositoryTriggerEventEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) ((C1 (MetaCons "All" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "CreateReference" PrefixI False) (U1 :: Type -> Type)) :+: (C1 (MetaCons "DeleteReference" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "UpdateReference" PrefixI False) (U1 :: Type -> Type)))

SortByEnum

data SortByEnum Source #

Instances
Bounded SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Enum SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Eq SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Data SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Read SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Show SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Generic SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Associated Types

type Rep SortByEnum :: Type -> Type #

Hashable SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToJSON SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToHeader SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToQuery SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToByteString SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

FromText SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

ToText SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

toText :: SortByEnum -> Text #

NFData SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

Methods

rnf :: SortByEnum -> () #

type Rep SortByEnum Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Sum

type Rep SortByEnum = D1 (MetaData "SortByEnum" "Network.AWS.CodeCommit.Types.Sum" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "LastModifiedDate" PrefixI False) (U1 :: Type -> Type) :+: C1 (MetaCons "RepositoryName" PrefixI False) (U1 :: Type -> Type))

BlobMetadata

data BlobMetadata Source #

Returns information about a specific Git blob object.

See: blobMetadata smart constructor.

Instances
Eq BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep BlobMetadata :: Type -> Type #

Hashable BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: BlobMetadata -> () #

type Rep BlobMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep BlobMetadata = D1 (MetaData "BlobMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "BlobMetadata'" PrefixI True) (S1 (MetaSel (Just "_bmPath") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_bmMode") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep BranchInfo :: Type -> Type #

Hashable BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: BranchInfo -> () #

type Rep BranchInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep BranchInfo = D1 (MetaData "BranchInfo" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "BranchInfo'" PrefixI True) (S1 (MetaSel (Just "_biCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

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

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

Data Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep Comment :: Type -> Type #

Methods

from :: Comment -> Rep Comment x #

to :: Rep Comment x -> Comment #

Hashable Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

hashWithSalt :: Int -> Comment -> Int #

hash :: Comment -> Int #

FromJSON Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: Comment -> () #

type Rep Comment Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep CommentsForComparedCommit :: Type -> Type #

Hashable CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep CommentsForComparedCommit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep CommentsForComparedCommit = D1 (MetaData "CommentsForComparedCommit" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "CommentsForComparedCommit'" PrefixI True) ((S1 (MetaSel (Just "_cfccBeforeBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_cfccLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Location)) :*: S1 (MetaSel (Just "_cfccAfterCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 (MetaSel (Just "_cfccAfterBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_cfccBeforeCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_cfccRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep CommentsForPullRequest :: Type -> Type #

Hashable CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: CommentsForPullRequest -> () #

type Rep CommentsForPullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep CommentsForPullRequest = D1 (MetaData "CommentsForPullRequest" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "CommentsForPullRequest'" PrefixI True) (((S1 (MetaSel (Just "_cfprBeforeBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_cfprLocation") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Location))) :*: (S1 (MetaSel (Just "_cfprAfterCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_cfprPullRequestId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))) :*: ((S1 (MetaSel (Just "_cfprAfterBlobId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_cfprBeforeCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_cfprRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

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

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

Data Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep Commit :: Type -> Type #

Methods

from :: Commit -> Rep Commit x #

to :: Rep Commit x -> Commit #

Hashable Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

hashWithSalt :: Int -> Commit -> Int #

hash :: Commit -> Int #

FromJSON Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: Commit -> () #

type Rep Commit Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep Difference :: Type -> Type #

Hashable Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: Difference -> () #

type Rep Difference Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep Difference = D1 (MetaData "Difference" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "Difference'" PrefixI True) (S1 (MetaSel (Just "_dAfterBlob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe BlobMetadata)) :*: (S1 (MetaSel (Just "_dBeforeBlob") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe BlobMetadata)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep Location :: Type -> Type #

Methods

from :: Location -> Rep Location x #

to :: Rep Location x -> Location #

Hashable Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

hashWithSalt :: Int -> Location -> Int #

hash :: Location -> Int #

ToJSON Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: Location -> () #

type Rep Location Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep Location = D1 (MetaData "Location" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "Location'" PrefixI True) (S1 (MetaSel (Just "_lRelativeFileVersion") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe RelativeFileVersionEnum)) :*: (S1 (MetaSel (Just "_lFilePath") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep MergeMetadata :: Type -> Type #

Hashable MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: MergeMetadata -> () #

type Rep MergeMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep MergeMetadata = D1 (MetaData "MergeMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "MergeMetadata'" PrefixI True) (S1 (MetaSel (Just "_mmMergedBy") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep PullRequest :: Type -> Type #

Hashable PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: PullRequest -> () #

type Rep PullRequest Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep PullRequestEvent :: Type -> Type #

Hashable PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: PullRequestEvent -> () #

type Rep PullRequestEvent Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestEvent = D1 (MetaData "PullRequestEvent" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "PullRequestEvent'" PrefixI True) ((S1 (MetaSel (Just "_prePullRequestMergedStateChangedEventMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PullRequestMergedStateChangedEventMetadata)) :*: (S1 (MetaSel (Just "_prePullRequestEventType") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PullRequestEventType)) :*: S1 (MetaSel (Just "_prePullRequestStatusChangedEventMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe PullRequestStatusChangedEventMetadata)))) :*: ((S1 (MetaSel (Just "_preActorARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_prePullRequestId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_preEventDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Hashable PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestMergedStateChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestMergedStateChangedEventMetadata = D1 (MetaData "PullRequestMergedStateChangedEventMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "PullRequestMergedStateChangedEventMetadata'" PrefixI True) (S1 (MetaSel (Just "_prmscemDestinationReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_prmscemMergeMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe MergeMetadata)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Hashable PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestSourceReferenceUpdatedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestSourceReferenceUpdatedEventMetadata = D1 (MetaData "PullRequestSourceReferenceUpdatedEventMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "PullRequestSourceReferenceUpdatedEventMetadata'" PrefixI True) (S1 (MetaSel (Just "_prsruemAfterCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_prsruemBeforeCommitId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Hashable PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestStatusChangedEventMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestStatusChangedEventMetadata = D1 (MetaData "PullRequestStatusChangedEventMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" True) (C1 (MetaCons "PullRequestStatusChangedEventMetadata'" PrefixI True) (S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep PullRequestTarget :: Type -> Type #

Hashable PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: PullRequestTarget -> () #

type Rep PullRequestTarget Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep PullRequestTarget = D1 (MetaData "PullRequestTarget" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "PullRequestTarget'" PrefixI True) ((S1 (MetaSel (Just "_prtSourceCommit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_prtDestinationReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_prtMergeMetadata") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe MergeMetadata)))) :*: (S1 (MetaSel (Just "_prtDestinationCommit") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_prtRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep RepositoryMetadata :: Type -> Type #

Hashable RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: RepositoryMetadata -> () #

type Rep RepositoryMetadata Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep RepositoryMetadata = D1 (MetaData "RepositoryMetadata" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "RepositoryMetadata'" PrefixI True) (((S1 (MetaSel (Just "_rmRepositoryDescription") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_rmLastModifiedDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX))) :*: (S1 (MetaSel (Just "_rmARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_rmCloneURLHTTP") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_rmAccountId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))))) :*: ((S1 (MetaSel (Just "_rmDefaultBranch") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_rmRepositoryId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_rmRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_rmCreationDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe POSIX)) :*: S1 (MetaSel (Just "_rmCloneURLSSH") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)))))))

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep RepositoryNameIdPair :: Type -> Type #

Hashable RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: RepositoryNameIdPair -> () #

type Rep RepositoryNameIdPair Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep RepositoryNameIdPair = D1 (MetaData "RepositoryNameIdPair" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "RepositoryNameIdPair'" PrefixI True) (S1 (MetaSel (Just "_rnipRepositoryId") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep RepositoryTrigger :: Type -> Type #

Hashable RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

ToJSON RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: RepositoryTrigger -> () #

type Rep RepositoryTrigger Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep RepositoryTrigger = D1 (MetaData "RepositoryTrigger" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "RepositoryTrigger'" PrefixI True) ((S1 (MetaSel (Just "_rtBranches") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe [Text])) :*: S1 (MetaSel (Just "_rtCustomData") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text))) :*: (S1 (MetaSel (Just "_rtName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: (S1 (MetaSel (Just "_rtDestinationARN") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep RepositoryTriggerExecutionFailure :: Type -> Type #

Hashable RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

FromJSON RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep RepositoryTriggerExecutionFailure Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep RepositoryTriggerExecutionFailure = D1 (MetaData "RepositoryTriggerExecutionFailure" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "RepositoryTriggerExecutionFailure'" PrefixI True) (S1 (MetaSel (Just "_rtefFailureMessage") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

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

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

Data Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep Target :: Type -> Type #

Methods

from :: Target -> Rep Target x #

to :: Rep Target x -> Target #

Hashable Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

hashWithSalt :: Int -> Target -> Int #

hash :: Target -> Int #

ToJSON Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: Target -> () #

type Rep Target Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep Target = D1 (MetaData "Target" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "Target'" PrefixI True) (S1 (MetaSel (Just "_tDestinationReference") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_tRepositoryName") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 Text) :*: S1 (MetaSel (Just "_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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Data UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

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 # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Show UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Generic UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Associated Types

type Rep UserInfo :: Type -> Type #

Methods

from :: UserInfo -> Rep UserInfo x #

to :: Rep UserInfo x -> UserInfo #

Hashable UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

hashWithSalt :: Int -> UserInfo -> Int #

hash :: UserInfo -> Int #

FromJSON UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

NFData UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

Methods

rnf :: UserInfo -> () #

type Rep UserInfo Source # 
Instance details

Defined in Network.AWS.CodeCommit.Types.Product

type Rep UserInfo = D1 (MetaData "UserInfo" "Network.AWS.CodeCommit.Types.Product" "amazonka-codecommit-1.6.1-5oFbBVW9gHvCvarYcjcXps" False) (C1 (MetaCons "UserInfo'" PrefixI True) (S1 (MetaSel (Just "_uiEmail") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: (S1 (MetaSel (Just "_uiDate") NoSourceUnpackedness SourceStrict DecidedStrict) (Rec0 (Maybe Text)) :*: S1 (MetaSel (Just "_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.