Interface CodePipelineClient
-
- All Superinterfaces:
AutoCloseable,AwsClient,SdkAutoCloseable,SdkClient
@Generated("software.amazon.awssdk:codegen") @ThreadSafe public interface CodePipelineClient extends AwsClient
Service client for accessing CodePipeline. This can be created using the staticbuilder()method.CodePipeline Overview
This is the CodePipeline API Reference. This guide provides descriptions of the actions and data types for CodePipeline. Some functionality for your pipeline can only be configured through the API. For more information, see the CodePipeline User Guide.
You can use the CodePipeline API to work with pipelines, stages, actions, and transitions.
Pipelines are models of automated release processes. Each pipeline is uniquely named, and consists of stages, actions, and transitions.
You can work with pipelines by calling:
-
CreatePipeline, which creates a uniquely named pipeline.
-
DeletePipeline, which deletes the specified pipeline.
-
GetPipeline, which returns information about the pipeline structure and pipeline metadata, including the pipeline Amazon Resource Name (ARN).
-
GetPipelineExecution, which returns information about a specific execution of a pipeline.
-
GetPipelineState, which returns information about the current state of the stages and actions of a pipeline.
-
ListActionExecutions, which returns action-level details for past executions. The details include full stage and action-level details, including individual action duration, status, any errors that occurred during the execution, and input and output artifact location details.
-
ListPipelines, which gets a summary of all of the pipelines associated with your account.
-
ListPipelineExecutions, which gets a summary of the most recent executions for a pipeline.
-
StartPipelineExecution, which runs the most recent revision of an artifact through the pipeline.
-
StopPipelineExecution, which stops the specified pipeline execution from continuing through the pipeline.
-
UpdatePipeline, which updates a pipeline with edits or changes to the structure of the pipeline.
Pipelines include stages. Each stage contains one or more actions that must complete before the next stage begins. A stage results in success or failure. If a stage fails, the pipeline stops at that stage and remains stopped until either a new version of an artifact appears in the source location, or a user takes action to rerun the most recent artifact through the pipeline. You can call GetPipelineState, which displays the status of a pipeline, including the status of stages in the pipeline, or GetPipeline, which returns the entire structure of the pipeline, including the stages of that pipeline. For more information about the structure of stages and actions, see CodePipeline Pipeline Structure Reference.
Pipeline stages include actions that are categorized into categories such as source or build actions performed in a stage of a pipeline. For example, you can use a source action to import artifacts into a pipeline from a source such as Amazon S3. Like stages, you do not work with actions directly in most cases, but you do define and interact with actions when working with pipeline operations such as CreatePipeline and GetPipelineState. Valid action categories are:
-
Source
-
Build
-
Test
-
Deploy
-
Approval
-
Invoke
-
Compute
Pipelines also include transitions, which allow the transition of artifacts from one stage to the next in a pipeline after the actions in one stage complete.
You can work with transitions by calling:
-
DisableStageTransition, which prevents artifacts from transitioning to the next stage in a pipeline.
-
EnableStageTransition, which enables transition of artifacts between stages in a pipeline.
Using the API to integrate with CodePipeline
For third-party integrators or developers who want to create their own integrations with CodePipeline, the expected sequence varies from the standard API user. To integrate with CodePipeline, developers need to work with the following items:
Jobs, which are instances of an action. For example, a job for a source action might import a revision of an artifact from a source.
You can work with jobs by calling:
-
AcknowledgeJob, which confirms whether a job worker has received the specified job.
-
GetJobDetails, which returns the details of a job.
-
PollForJobs, which determines whether there are any jobs to act on.
-
PutJobFailureResult, which provides details of a job failure.
-
PutJobSuccessResult, which provides details of a job success.
Third party jobs, which are instances of an action created by a partner action and integrated into CodePipeline. Partner actions are created by members of the Amazon Web Services Partner Network.
You can work with third party jobs by calling:
-
AcknowledgeThirdPartyJob, which confirms whether a job worker has received the specified job.
-
GetThirdPartyJobDetails, which requests the details of a job for a partner action.
-
PollForThirdPartyJobs, which determines whether there are any jobs to act on.
-
PutThirdPartyJobFailureResult, which provides details of a job failure.
-
PutThirdPartyJobSuccessResult, which provides details of a job success.
-
-
Field Summary
Fields Modifier and Type Field Description static StringSERVICE_METADATA_IDValue for looking up the service's metadata from theServiceMetadataProvider.static StringSERVICE_NAME
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description default AcknowledgeJobResponseacknowledgeJob(Consumer<AcknowledgeJobRequest.Builder> acknowledgeJobRequest)Returns information about a specified job and whether that job has been received by the job worker.default AcknowledgeJobResponseacknowledgeJob(AcknowledgeJobRequest acknowledgeJobRequest)Returns information about a specified job and whether that job has been received by the job worker.default AcknowledgeThirdPartyJobResponseacknowledgeThirdPartyJob(Consumer<AcknowledgeThirdPartyJobRequest.Builder> acknowledgeThirdPartyJobRequest)Confirms a job worker has received the specified job.default AcknowledgeThirdPartyJobResponseacknowledgeThirdPartyJob(AcknowledgeThirdPartyJobRequest acknowledgeThirdPartyJobRequest)Confirms a job worker has received the specified job.static CodePipelineClientBuilderbuilder()Create a builder that can be used to configure and create aCodePipelineClient.static CodePipelineClientcreate()Create aCodePipelineClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.default CreateCustomActionTypeResponsecreateCustomActionType(Consumer<CreateCustomActionTypeRequest.Builder> createCustomActionTypeRequest)Creates a new custom action that can be used in all pipelines associated with the Amazon Web Services account.default CreateCustomActionTypeResponsecreateCustomActionType(CreateCustomActionTypeRequest createCustomActionTypeRequest)Creates a new custom action that can be used in all pipelines associated with the Amazon Web Services account.default CreatePipelineResponsecreatePipeline(Consumer<CreatePipelineRequest.Builder> createPipelineRequest)Creates a pipeline.default CreatePipelineResponsecreatePipeline(CreatePipelineRequest createPipelineRequest)Creates a pipeline.default DeleteCustomActionTypeResponsedeleteCustomActionType(Consumer<DeleteCustomActionTypeRequest.Builder> deleteCustomActionTypeRequest)Marks a custom action as deleted.default DeleteCustomActionTypeResponsedeleteCustomActionType(DeleteCustomActionTypeRequest deleteCustomActionTypeRequest)Marks a custom action as deleted.default DeletePipelineResponsedeletePipeline(Consumer<DeletePipelineRequest.Builder> deletePipelineRequest)Deletes the specified pipeline.default DeletePipelineResponsedeletePipeline(DeletePipelineRequest deletePipelineRequest)Deletes the specified pipeline.default DeleteWebhookResponsedeleteWebhook(Consumer<DeleteWebhookRequest.Builder> deleteWebhookRequest)Deletes a previously created webhook by name.default DeleteWebhookResponsedeleteWebhook(DeleteWebhookRequest deleteWebhookRequest)Deletes a previously created webhook by name.default DeregisterWebhookWithThirdPartyResponsederegisterWebhookWithThirdParty(Consumer<DeregisterWebhookWithThirdPartyRequest.Builder> deregisterWebhookWithThirdPartyRequest)Removes the connection between the webhook that was created by CodePipeline and the external tool with events to be detected.default DeregisterWebhookWithThirdPartyResponsederegisterWebhookWithThirdParty(DeregisterWebhookWithThirdPartyRequest deregisterWebhookWithThirdPartyRequest)Removes the connection between the webhook that was created by CodePipeline and the external tool with events to be detected.default DisableStageTransitionResponsedisableStageTransition(Consumer<DisableStageTransitionRequest.Builder> disableStageTransitionRequest)Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.default DisableStageTransitionResponsedisableStageTransition(DisableStageTransitionRequest disableStageTransitionRequest)Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.default EnableStageTransitionResponseenableStageTransition(Consumer<EnableStageTransitionRequest.Builder> enableStageTransitionRequest)Enables artifacts in a pipeline to transition to a stage in a pipeline.default EnableStageTransitionResponseenableStageTransition(EnableStageTransitionRequest enableStageTransitionRequest)Enables artifacts in a pipeline to transition to a stage in a pipeline.default GetActionTypeResponsegetActionType(Consumer<GetActionTypeRequest.Builder> getActionTypeRequest)Returns information about an action type created for an external provider, where the action is to be used by customers of the external provider.default GetActionTypeResponsegetActionType(GetActionTypeRequest getActionTypeRequest)Returns information about an action type created for an external provider, where the action is to be used by customers of the external provider.default GetJobDetailsResponsegetJobDetails(Consumer<GetJobDetailsRequest.Builder> getJobDetailsRequest)Returns information about a job.default GetJobDetailsResponsegetJobDetails(GetJobDetailsRequest getJobDetailsRequest)Returns information about a job.default GetPipelineResponsegetPipeline(Consumer<GetPipelineRequest.Builder> getPipelineRequest)Returns the metadata, structure, stages, and actions of a pipeline.default GetPipelineResponsegetPipeline(GetPipelineRequest getPipelineRequest)Returns the metadata, structure, stages, and actions of a pipeline.default GetPipelineExecutionResponsegetPipelineExecution(Consumer<GetPipelineExecutionRequest.Builder> getPipelineExecutionRequest)Returns information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.default GetPipelineExecutionResponsegetPipelineExecution(GetPipelineExecutionRequest getPipelineExecutionRequest)Returns information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.default GetPipelineStateResponsegetPipelineState(Consumer<GetPipelineStateRequest.Builder> getPipelineStateRequest)Returns information about the state of a pipeline, including the stages and actions.default GetPipelineStateResponsegetPipelineState(GetPipelineStateRequest getPipelineStateRequest)Returns information about the state of a pipeline, including the stages and actions.default GetThirdPartyJobDetailsResponsegetThirdPartyJobDetails(Consumer<GetThirdPartyJobDetailsRequest.Builder> getThirdPartyJobDetailsRequest)Requests the details of a job for a third party action.default GetThirdPartyJobDetailsResponsegetThirdPartyJobDetails(GetThirdPartyJobDetailsRequest getThirdPartyJobDetailsRequest)Requests the details of a job for a third party action.default ListActionExecutionsResponselistActionExecutions(Consumer<ListActionExecutionsRequest.Builder> listActionExecutionsRequest)Lists the action executions that have occurred in a pipeline.default ListActionExecutionsResponselistActionExecutions(ListActionExecutionsRequest listActionExecutionsRequest)Lists the action executions that have occurred in a pipeline.default ListActionExecutionsIterablelistActionExecutionsPaginator(Consumer<ListActionExecutionsRequest.Builder> listActionExecutionsRequest)This is a variant oflistActionExecutions(software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsRequest)operation.default ListActionExecutionsIterablelistActionExecutionsPaginator(ListActionExecutionsRequest listActionExecutionsRequest)This is a variant oflistActionExecutions(software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsRequest)operation.default ListActionTypesResponselistActionTypes()Gets a summary of all CodePipeline action types associated with your account.default ListActionTypesResponselistActionTypes(Consumer<ListActionTypesRequest.Builder> listActionTypesRequest)Gets a summary of all CodePipeline action types associated with your account.default ListActionTypesResponselistActionTypes(ListActionTypesRequest listActionTypesRequest)Gets a summary of all CodePipeline action types associated with your account.default ListActionTypesIterablelistActionTypesPaginator()This is a variant oflistActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation.default ListActionTypesIterablelistActionTypesPaginator(Consumer<ListActionTypesRequest.Builder> listActionTypesRequest)This is a variant oflistActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation.default ListActionTypesIterablelistActionTypesPaginator(ListActionTypesRequest listActionTypesRequest)This is a variant oflistActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation.default ListPipelineExecutionsResponselistPipelineExecutions(Consumer<ListPipelineExecutionsRequest.Builder> listPipelineExecutionsRequest)Gets a summary of the most recent executions for a pipeline.default ListPipelineExecutionsResponselistPipelineExecutions(ListPipelineExecutionsRequest listPipelineExecutionsRequest)Gets a summary of the most recent executions for a pipeline.default ListPipelineExecutionsIterablelistPipelineExecutionsPaginator(Consumer<ListPipelineExecutionsRequest.Builder> listPipelineExecutionsRequest)This is a variant oflistPipelineExecutions(software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsRequest)operation.default ListPipelineExecutionsIterablelistPipelineExecutionsPaginator(ListPipelineExecutionsRequest listPipelineExecutionsRequest)This is a variant oflistPipelineExecutions(software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsRequest)operation.default ListPipelinesResponselistPipelines()Gets a summary of all of the pipelines associated with your account.default ListPipelinesResponselistPipelines(Consumer<ListPipelinesRequest.Builder> listPipelinesRequest)Gets a summary of all of the pipelines associated with your account.default ListPipelinesResponselistPipelines(ListPipelinesRequest listPipelinesRequest)Gets a summary of all of the pipelines associated with your account.default ListPipelinesIterablelistPipelinesPaginator()This is a variant oflistPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation.default ListPipelinesIterablelistPipelinesPaginator(Consumer<ListPipelinesRequest.Builder> listPipelinesRequest)This is a variant oflistPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation.default ListPipelinesIterablelistPipelinesPaginator(ListPipelinesRequest listPipelinesRequest)This is a variant oflistPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation.default ListRuleExecutionsResponselistRuleExecutions(Consumer<ListRuleExecutionsRequest.Builder> listRuleExecutionsRequest)Lists the rule executions that have occurred in a pipeline configured for conditions with rules.default ListRuleExecutionsResponselistRuleExecutions(ListRuleExecutionsRequest listRuleExecutionsRequest)Lists the rule executions that have occurred in a pipeline configured for conditions with rules.default ListRuleExecutionsIterablelistRuleExecutionsPaginator(Consumer<ListRuleExecutionsRequest.Builder> listRuleExecutionsRequest)This is a variant oflistRuleExecutions(software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsRequest)operation.default ListRuleExecutionsIterablelistRuleExecutionsPaginator(ListRuleExecutionsRequest listRuleExecutionsRequest)This is a variant oflistRuleExecutions(software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsRequest)operation.default ListRuleTypesResponselistRuleTypes(Consumer<ListRuleTypesRequest.Builder> listRuleTypesRequest)Lists the rules for the condition.default ListRuleTypesResponselistRuleTypes(ListRuleTypesRequest listRuleTypesRequest)Lists the rules for the condition.default ListTagsForResourceResponselistTagsForResource(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest)Gets the set of key-value pairs (metadata) that are used to manage the resource.default ListTagsForResourceResponselistTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest)Gets the set of key-value pairs (metadata) that are used to manage the resource.default ListTagsForResourceIterablelistTagsForResourcePaginator(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest)This is a variant oflistTagsForResource(software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceRequest)operation.default ListTagsForResourceIterablelistTagsForResourcePaginator(ListTagsForResourceRequest listTagsForResourceRequest)This is a variant oflistTagsForResource(software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceRequest)operation.default ListWebhooksResponselistWebhooks()Gets a listing of all the webhooks in this Amazon Web Services Region for this account.default ListWebhooksResponselistWebhooks(Consumer<ListWebhooksRequest.Builder> listWebhooksRequest)Gets a listing of all the webhooks in this Amazon Web Services Region for this account.default ListWebhooksResponselistWebhooks(ListWebhooksRequest listWebhooksRequest)Gets a listing of all the webhooks in this Amazon Web Services Region for this account.default ListWebhooksIterablelistWebhooksPaginator()This is a variant oflistWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation.default ListWebhooksIterablelistWebhooksPaginator(Consumer<ListWebhooksRequest.Builder> listWebhooksRequest)This is a variant oflistWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation.default ListWebhooksIterablelistWebhooksPaginator(ListWebhooksRequest listWebhooksRequest)This is a variant oflistWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation.default OverrideStageConditionResponseoverrideStageCondition(Consumer<OverrideStageConditionRequest.Builder> overrideStageConditionRequest)Used to override a stage condition.default OverrideStageConditionResponseoverrideStageCondition(OverrideStageConditionRequest overrideStageConditionRequest)Used to override a stage condition.default PollForJobsResponsepollForJobs(Consumer<PollForJobsRequest.Builder> pollForJobsRequest)Returns information about any jobs for CodePipeline to act on.default PollForJobsResponsepollForJobs(PollForJobsRequest pollForJobsRequest)Returns information about any jobs for CodePipeline to act on.default PollForThirdPartyJobsResponsepollForThirdPartyJobs(Consumer<PollForThirdPartyJobsRequest.Builder> pollForThirdPartyJobsRequest)Determines whether there are any third party jobs for a job worker to act on.default PollForThirdPartyJobsResponsepollForThirdPartyJobs(PollForThirdPartyJobsRequest pollForThirdPartyJobsRequest)Determines whether there are any third party jobs for a job worker to act on.default PutActionRevisionResponseputActionRevision(Consumer<PutActionRevisionRequest.Builder> putActionRevisionRequest)Provides information to CodePipeline about new revisions to a source.default PutActionRevisionResponseputActionRevision(PutActionRevisionRequest putActionRevisionRequest)Provides information to CodePipeline about new revisions to a source.default PutApprovalResultResponseputApprovalResult(Consumer<PutApprovalResultRequest.Builder> putApprovalResultRequest)Provides the response to a manual approval request to CodePipeline.default PutApprovalResultResponseputApprovalResult(PutApprovalResultRequest putApprovalResultRequest)Provides the response to a manual approval request to CodePipeline.default PutJobFailureResultResponseputJobFailureResult(Consumer<PutJobFailureResultRequest.Builder> putJobFailureResultRequest)Represents the failure of a job as returned to the pipeline by a job worker.default PutJobFailureResultResponseputJobFailureResult(PutJobFailureResultRequest putJobFailureResultRequest)Represents the failure of a job as returned to the pipeline by a job worker.default PutJobSuccessResultResponseputJobSuccessResult(Consumer<PutJobSuccessResultRequest.Builder> putJobSuccessResultRequest)Represents the success of a job as returned to the pipeline by a job worker.default PutJobSuccessResultResponseputJobSuccessResult(PutJobSuccessResultRequest putJobSuccessResultRequest)Represents the success of a job as returned to the pipeline by a job worker.default PutThirdPartyJobFailureResultResponseputThirdPartyJobFailureResult(Consumer<PutThirdPartyJobFailureResultRequest.Builder> putThirdPartyJobFailureResultRequest)Represents the failure of a third party job as returned to the pipeline by a job worker.default PutThirdPartyJobFailureResultResponseputThirdPartyJobFailureResult(PutThirdPartyJobFailureResultRequest putThirdPartyJobFailureResultRequest)Represents the failure of a third party job as returned to the pipeline by a job worker.default PutThirdPartyJobSuccessResultResponseputThirdPartyJobSuccessResult(Consumer<PutThirdPartyJobSuccessResultRequest.Builder> putThirdPartyJobSuccessResultRequest)Represents the success of a third party job as returned to the pipeline by a job worker.default PutThirdPartyJobSuccessResultResponseputThirdPartyJobSuccessResult(PutThirdPartyJobSuccessResultRequest putThirdPartyJobSuccessResultRequest)Represents the success of a third party job as returned to the pipeline by a job worker.default PutWebhookResponseputWebhook(Consumer<PutWebhookRequest.Builder> putWebhookRequest)Defines a webhook and returns a unique webhook URL generated by CodePipeline.default PutWebhookResponseputWebhook(PutWebhookRequest putWebhookRequest)Defines a webhook and returns a unique webhook URL generated by CodePipeline.default RegisterWebhookWithThirdPartyResponseregisterWebhookWithThirdParty(Consumer<RegisterWebhookWithThirdPartyRequest.Builder> registerWebhookWithThirdPartyRequest)Configures a connection between the webhook that was created and the external tool with events to be detected.default RegisterWebhookWithThirdPartyResponseregisterWebhookWithThirdParty(RegisterWebhookWithThirdPartyRequest registerWebhookWithThirdPartyRequest)Configures a connection between the webhook that was created and the external tool with events to be detected.default RetryStageExecutionResponseretryStageExecution(Consumer<RetryStageExecutionRequest.Builder> retryStageExecutionRequest)You can retry a stage that has failed without having to run a pipeline again from the beginning.default RetryStageExecutionResponseretryStageExecution(RetryStageExecutionRequest retryStageExecutionRequest)You can retry a stage that has failed without having to run a pipeline again from the beginning.default RollbackStageResponserollbackStage(Consumer<RollbackStageRequest.Builder> rollbackStageRequest)Rolls back a stage execution.default RollbackStageResponserollbackStage(RollbackStageRequest rollbackStageRequest)Rolls back a stage execution.default CodePipelineServiceClientConfigurationserviceClientConfiguration()static ServiceMetadataserviceMetadata()default StartPipelineExecutionResponsestartPipelineExecution(Consumer<StartPipelineExecutionRequest.Builder> startPipelineExecutionRequest)Starts the specified pipeline.default StartPipelineExecutionResponsestartPipelineExecution(StartPipelineExecutionRequest startPipelineExecutionRequest)Starts the specified pipeline.default StopPipelineExecutionResponsestopPipelineExecution(Consumer<StopPipelineExecutionRequest.Builder> stopPipelineExecutionRequest)Stops the specified pipeline execution.default StopPipelineExecutionResponsestopPipelineExecution(StopPipelineExecutionRequest stopPipelineExecutionRequest)Stops the specified pipeline execution.default TagResourceResponsetagResource(Consumer<TagResourceRequest.Builder> tagResourceRequest)Adds to or modifies the tags of the given resource.default TagResourceResponsetagResource(TagResourceRequest tagResourceRequest)Adds to or modifies the tags of the given resource.default UntagResourceResponseuntagResource(Consumer<UntagResourceRequest.Builder> untagResourceRequest)Removes tags from an Amazon Web Services resource.default UntagResourceResponseuntagResource(UntagResourceRequest untagResourceRequest)Removes tags from an Amazon Web Services resource.default UpdateActionTypeResponseupdateActionType(Consumer<UpdateActionTypeRequest.Builder> updateActionTypeRequest)Updates an action type that was created with any supported integration model, where the action type is to be used by customers of the action type provider.default UpdateActionTypeResponseupdateActionType(UpdateActionTypeRequest updateActionTypeRequest)Updates an action type that was created with any supported integration model, where the action type is to be used by customers of the action type provider.default UpdatePipelineResponseupdatePipeline(Consumer<UpdatePipelineRequest.Builder> updatePipelineRequest)Updates a specified pipeline with edits or changes to its structure.default UpdatePipelineResponseupdatePipeline(UpdatePipelineRequest updatePipelineRequest)Updates a specified pipeline with edits or changes to its structure.-
Methods inherited from interface software.amazon.awssdk.utils.SdkAutoCloseable
close
-
Methods inherited from interface software.amazon.awssdk.core.SdkClient
serviceName
-
-
-
-
Field Detail
-
SERVICE_NAME
static final String SERVICE_NAME
- See Also:
- Constant Field Values
-
SERVICE_METADATA_ID
static final String SERVICE_METADATA_ID
Value for looking up the service's metadata from theServiceMetadataProvider.- See Also:
- Constant Field Values
-
-
Method Detail
-
acknowledgeJob
default AcknowledgeJobResponse acknowledgeJob(AcknowledgeJobRequest acknowledgeJobRequest) throws ValidationException, InvalidNonceException, JobNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about a specified job and whether that job has been received by the job worker. Used for custom actions only.
- Parameters:
acknowledgeJobRequest- Represents the input of an AcknowledgeJob action.- Returns:
- Result of the AcknowledgeJob operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNonceException- The nonce was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
acknowledgeJob
default AcknowledgeJobResponse acknowledgeJob(Consumer<AcknowledgeJobRequest.Builder> acknowledgeJobRequest) throws ValidationException, InvalidNonceException, JobNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about a specified job and whether that job has been received by the job worker. Used for custom actions only.
This is a convenience which creates an instance of the
AcknowledgeJobRequest.Builderavoiding the need to create one manually viaAcknowledgeJobRequest.builder()- Parameters:
acknowledgeJobRequest- AConsumerthat will call methods onAcknowledgeJobRequest.Builderto create a request. Represents the input of an AcknowledgeJob action.- Returns:
- Result of the AcknowledgeJob operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNonceException- The nonce was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
acknowledgeThirdPartyJob
default AcknowledgeThirdPartyJobResponse acknowledgeThirdPartyJob(AcknowledgeThirdPartyJobRequest acknowledgeThirdPartyJobRequest) throws ValidationException, InvalidNonceException, JobNotFoundException, InvalidClientTokenException, AwsServiceException, SdkClientException, CodePipelineException
Confirms a job worker has received the specified job. Used for partner actions only.
- Parameters:
acknowledgeThirdPartyJobRequest- Represents the input of an AcknowledgeThirdPartyJob action.- Returns:
- Result of the AcknowledgeThirdPartyJob operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNonceException- The nonce was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidClientTokenException- The client token was specified in an invalid formatSdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
acknowledgeThirdPartyJob
default AcknowledgeThirdPartyJobResponse acknowledgeThirdPartyJob(Consumer<AcknowledgeThirdPartyJobRequest.Builder> acknowledgeThirdPartyJobRequest) throws ValidationException, InvalidNonceException, JobNotFoundException, InvalidClientTokenException, AwsServiceException, SdkClientException, CodePipelineException
Confirms a job worker has received the specified job. Used for partner actions only.
This is a convenience which creates an instance of the
AcknowledgeThirdPartyJobRequest.Builderavoiding the need to create one manually viaAcknowledgeThirdPartyJobRequest.builder()- Parameters:
acknowledgeThirdPartyJobRequest- AConsumerthat will call methods onAcknowledgeThirdPartyJobRequest.Builderto create a request. Represents the input of an AcknowledgeThirdPartyJob action.- Returns:
- Result of the AcknowledgeThirdPartyJob operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNonceException- The nonce was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidClientTokenException- The client token was specified in an invalid formatSdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
createCustomActionType
default CreateCustomActionTypeResponse createCustomActionType(CreateCustomActionTypeRequest createCustomActionTypeRequest) throws ValidationException, LimitExceededException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Creates a new custom action that can be used in all pipelines associated with the Amazon Web Services account. Only used for custom actions.
- Parameters:
createCustomActionTypeRequest- Represents the input of a CreateCustomActionType operation.- Returns:
- Result of the CreateCustomActionType operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
createCustomActionType
default CreateCustomActionTypeResponse createCustomActionType(Consumer<CreateCustomActionTypeRequest.Builder> createCustomActionTypeRequest) throws ValidationException, LimitExceededException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Creates a new custom action that can be used in all pipelines associated with the Amazon Web Services account. Only used for custom actions.
This is a convenience which creates an instance of the
CreateCustomActionTypeRequest.Builderavoiding the need to create one manually viaCreateCustomActionTypeRequest.builder()- Parameters:
createCustomActionTypeRequest- AConsumerthat will call methods onCreateCustomActionTypeRequest.Builderto create a request. Represents the input of a CreateCustomActionType operation.- Returns:
- Result of the CreateCustomActionType operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
createPipeline
default CreatePipelineResponse createPipeline(CreatePipelineRequest createPipelineRequest) throws ValidationException, PipelineNameInUseException, InvalidStageDeclarationException, InvalidActionDeclarationException, InvalidBlockerDeclarationException, InvalidStructureException, LimitExceededException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Creates a pipeline.
In the pipeline structure, you must include either
artifactStoreorartifactStoresin your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must useartifactStores.- Parameters:
createPipelineRequest- Represents the input of aCreatePipelineaction.- Returns:
- Result of the CreatePipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNameInUseException- The specified pipeline name is already in use.InvalidStageDeclarationException- The stage declaration was specified in an invalid format.InvalidActionDeclarationException- The action declaration was specified in an invalid format.InvalidBlockerDeclarationException- Reserved for future use.InvalidStructureException- The structure was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
createPipeline
default CreatePipelineResponse createPipeline(Consumer<CreatePipelineRequest.Builder> createPipelineRequest) throws ValidationException, PipelineNameInUseException, InvalidStageDeclarationException, InvalidActionDeclarationException, InvalidBlockerDeclarationException, InvalidStructureException, LimitExceededException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Creates a pipeline.
In the pipeline structure, you must include either
artifactStoreorartifactStoresin your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must useartifactStores.
This is a convenience which creates an instance of the
CreatePipelineRequest.Builderavoiding the need to create one manually viaCreatePipelineRequest.builder()- Parameters:
createPipelineRequest- AConsumerthat will call methods onCreatePipelineRequest.Builderto create a request. Represents the input of aCreatePipelineaction.- Returns:
- Result of the CreatePipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNameInUseException- The specified pipeline name is already in use.InvalidStageDeclarationException- The stage declaration was specified in an invalid format.InvalidActionDeclarationException- The action declaration was specified in an invalid format.InvalidBlockerDeclarationException- Reserved for future use.InvalidStructureException- The structure was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deleteCustomActionType
default DeleteCustomActionTypeResponse deleteCustomActionType(DeleteCustomActionTypeRequest deleteCustomActionTypeRequest) throws ValidationException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Marks a custom action as deleted.
PollForJobsfor the custom action fails after the action is marked for deletion. Used for custom actions only.To re-create a custom action after it has been deleted you must use a string in the version field that has never been used before. This string can be an incremented version number, for example. To restore a deleted custom action, use a JSON file that is identical to the deleted action, including the original string in the version field.
- Parameters:
deleteCustomActionTypeRequest- Represents the input of aDeleteCustomActionTypeoperation. The custom action will be marked as deleted.- Returns:
- Result of the DeleteCustomActionType operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deleteCustomActionType
default DeleteCustomActionTypeResponse deleteCustomActionType(Consumer<DeleteCustomActionTypeRequest.Builder> deleteCustomActionTypeRequest) throws ValidationException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Marks a custom action as deleted.
PollForJobsfor the custom action fails after the action is marked for deletion. Used for custom actions only.To re-create a custom action after it has been deleted you must use a string in the version field that has never been used before. This string can be an incremented version number, for example. To restore a deleted custom action, use a JSON file that is identical to the deleted action, including the original string in the version field.
This is a convenience which creates an instance of the
DeleteCustomActionTypeRequest.Builderavoiding the need to create one manually viaDeleteCustomActionTypeRequest.builder()- Parameters:
deleteCustomActionTypeRequest- AConsumerthat will call methods onDeleteCustomActionTypeRequest.Builderto create a request. Represents the input of aDeleteCustomActionTypeoperation. The custom action will be marked as deleted.- Returns:
- Result of the DeleteCustomActionType operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deletePipeline
default DeletePipelineResponse deletePipeline(DeletePipelineRequest deletePipelineRequest) throws ValidationException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Deletes the specified pipeline.
- Parameters:
deletePipelineRequest- Represents the input of aDeletePipelineaction.- Returns:
- Result of the DeletePipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deletePipeline
default DeletePipelineResponse deletePipeline(Consumer<DeletePipelineRequest.Builder> deletePipelineRequest) throws ValidationException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Deletes the specified pipeline.
This is a convenience which creates an instance of the
DeletePipelineRequest.Builderavoiding the need to create one manually viaDeletePipelineRequest.builder()- Parameters:
deletePipelineRequest- AConsumerthat will call methods onDeletePipelineRequest.Builderto create a request. Represents the input of aDeletePipelineaction.- Returns:
- Result of the DeletePipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deleteWebhook
default DeleteWebhookResponse deleteWebhook(DeleteWebhookRequest deleteWebhookRequest) throws ValidationException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Deletes a previously created webhook by name. Deleting the webhook stops CodePipeline from starting a pipeline every time an external event occurs. The API returns successfully when trying to delete a webhook that is already deleted. If a deleted webhook is re-created by calling PutWebhook with the same name, it will have a different URL.
- Parameters:
deleteWebhookRequest-- Returns:
- Result of the DeleteWebhook operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deleteWebhook
default DeleteWebhookResponse deleteWebhook(Consumer<DeleteWebhookRequest.Builder> deleteWebhookRequest) throws ValidationException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Deletes a previously created webhook by name. Deleting the webhook stops CodePipeline from starting a pipeline every time an external event occurs. The API returns successfully when trying to delete a webhook that is already deleted. If a deleted webhook is re-created by calling PutWebhook with the same name, it will have a different URL.
This is a convenience which creates an instance of the
DeleteWebhookRequest.Builderavoiding the need to create one manually viaDeleteWebhookRequest.builder()- Parameters:
deleteWebhookRequest- AConsumerthat will call methods onDeleteWebhookRequest.Builderto create a request.- Returns:
- Result of the DeleteWebhook operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deregisterWebhookWithThirdParty
default DeregisterWebhookWithThirdPartyResponse deregisterWebhookWithThirdParty(DeregisterWebhookWithThirdPartyRequest deregisterWebhookWithThirdPartyRequest) throws ValidationException, WebhookNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Removes the connection between the webhook that was created by CodePipeline and the external tool with events to be detected. Currently supported only for webhooks that target an action type of GitHub.
- Parameters:
deregisterWebhookWithThirdPartyRequest-- Returns:
- Result of the DeregisterWebhookWithThirdParty operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.WebhookNotFoundException- The specified webhook was entered in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
deregisterWebhookWithThirdParty
default DeregisterWebhookWithThirdPartyResponse deregisterWebhookWithThirdParty(Consumer<DeregisterWebhookWithThirdPartyRequest.Builder> deregisterWebhookWithThirdPartyRequest) throws ValidationException, WebhookNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Removes the connection between the webhook that was created by CodePipeline and the external tool with events to be detected. Currently supported only for webhooks that target an action type of GitHub.
This is a convenience which creates an instance of the
DeregisterWebhookWithThirdPartyRequest.Builderavoiding the need to create one manually viaDeregisterWebhookWithThirdPartyRequest.builder()- Parameters:
deregisterWebhookWithThirdPartyRequest- AConsumerthat will call methods onDeregisterWebhookWithThirdPartyRequest.Builderto create a request.- Returns:
- Result of the DeregisterWebhookWithThirdParty operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.WebhookNotFoundException- The specified webhook was entered in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
disableStageTransition
default DisableStageTransitionResponse disableStageTransition(DisableStageTransitionRequest disableStageTransitionRequest) throws ValidationException, PipelineNotFoundException, StageNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.
- Parameters:
disableStageTransitionRequest- Represents the input of aDisableStageTransitionaction.- Returns:
- Result of the DisableStageTransition operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
disableStageTransition
default DisableStageTransitionResponse disableStageTransition(Consumer<DisableStageTransitionRequest.Builder> disableStageTransitionRequest) throws ValidationException, PipelineNotFoundException, StageNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.
This is a convenience which creates an instance of the
DisableStageTransitionRequest.Builderavoiding the need to create one manually viaDisableStageTransitionRequest.builder()- Parameters:
disableStageTransitionRequest- AConsumerthat will call methods onDisableStageTransitionRequest.Builderto create a request. Represents the input of aDisableStageTransitionaction.- Returns:
- Result of the DisableStageTransition operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
enableStageTransition
default EnableStageTransitionResponse enableStageTransition(EnableStageTransitionRequest enableStageTransitionRequest) throws ValidationException, PipelineNotFoundException, StageNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Enables artifacts in a pipeline to transition to a stage in a pipeline.
- Parameters:
enableStageTransitionRequest- Represents the input of anEnableStageTransitionaction.- Returns:
- Result of the EnableStageTransition operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
enableStageTransition
default EnableStageTransitionResponse enableStageTransition(Consumer<EnableStageTransitionRequest.Builder> enableStageTransitionRequest) throws ValidationException, PipelineNotFoundException, StageNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Enables artifacts in a pipeline to transition to a stage in a pipeline.
This is a convenience which creates an instance of the
EnableStageTransitionRequest.Builderavoiding the need to create one manually viaEnableStageTransitionRequest.builder()- Parameters:
enableStageTransitionRequest- AConsumerthat will call methods onEnableStageTransitionRequest.Builderto create a request. Represents the input of anEnableStageTransitionaction.- Returns:
- Result of the EnableStageTransition operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getActionType
default GetActionTypeResponse getActionType(GetActionTypeRequest getActionTypeRequest) throws ActionTypeNotFoundException, ValidationException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about an action type created for an external provider, where the action is to be used by customers of the external provider. The action can be created with any supported integration model.
- Parameters:
getActionTypeRequest-- Returns:
- Result of the GetActionType operation returned by the service.
- Throws:
ActionTypeNotFoundException- The specified action type cannot be found.ValidationException- The validation was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getActionType
default GetActionTypeResponse getActionType(Consumer<GetActionTypeRequest.Builder> getActionTypeRequest) throws ActionTypeNotFoundException, ValidationException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about an action type created for an external provider, where the action is to be used by customers of the external provider. The action can be created with any supported integration model.
This is a convenience which creates an instance of the
GetActionTypeRequest.Builderavoiding the need to create one manually viaGetActionTypeRequest.builder()- Parameters:
getActionTypeRequest- AConsumerthat will call methods onGetActionTypeRequest.Builderto create a request.- Returns:
- Result of the GetActionType operation returned by the service.
- Throws:
ActionTypeNotFoundException- The specified action type cannot be found.ValidationException- The validation was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getJobDetails
default GetJobDetailsResponse getJobDetails(GetJobDetailsRequest getJobDetailsRequest) throws ValidationException, JobNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about a job. Used for custom actions only.
When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.
- Parameters:
getJobDetailsRequest- Represents the input of aGetJobDetailsaction.- Returns:
- Result of the GetJobDetails operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getJobDetails
default GetJobDetailsResponse getJobDetails(Consumer<GetJobDetailsRequest.Builder> getJobDetailsRequest) throws ValidationException, JobNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about a job. Used for custom actions only.
When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.
This is a convenience which creates an instance of the
GetJobDetailsRequest.Builderavoiding the need to create one manually viaGetJobDetailsRequest.builder()- Parameters:
getJobDetailsRequest- AConsumerthat will call methods onGetJobDetailsRequest.Builderto create a request. Represents the input of aGetJobDetailsaction.- Returns:
- Result of the GetJobDetails operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getPipeline
default GetPipelineResponse getPipeline(GetPipelineRequest getPipelineRequest) throws ValidationException, PipelineNotFoundException, PipelineVersionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns the metadata, structure, stages, and actions of a pipeline. Can be used to return the entire structure of a pipeline in JSON format, which can then be modified and used to update the pipeline structure with UpdatePipeline.
- Parameters:
getPipelineRequest- Represents the input of aGetPipelineaction.- Returns:
- Result of the GetPipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineVersionNotFoundException- The pipeline version was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getPipeline
default GetPipelineResponse getPipeline(Consumer<GetPipelineRequest.Builder> getPipelineRequest) throws ValidationException, PipelineNotFoundException, PipelineVersionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns the metadata, structure, stages, and actions of a pipeline. Can be used to return the entire structure of a pipeline in JSON format, which can then be modified and used to update the pipeline structure with UpdatePipeline.
This is a convenience which creates an instance of the
GetPipelineRequest.Builderavoiding the need to create one manually viaGetPipelineRequest.builder()- Parameters:
getPipelineRequest- AConsumerthat will call methods onGetPipelineRequest.Builderto create a request. Represents the input of aGetPipelineaction.- Returns:
- Result of the GetPipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineVersionNotFoundException- The pipeline version was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getPipelineExecution
default GetPipelineExecutionResponse getPipelineExecution(GetPipelineExecutionRequest getPipelineExecutionRequest) throws ValidationException, PipelineNotFoundException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.
- Parameters:
getPipelineExecutionRequest- Represents the input of aGetPipelineExecutionaction.- Returns:
- Result of the GetPipelineExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getPipelineExecution
default GetPipelineExecutionResponse getPipelineExecution(Consumer<GetPipelineExecutionRequest.Builder> getPipelineExecutionRequest) throws ValidationException, PipelineNotFoundException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about an execution of a pipeline, including details about artifacts, the pipeline execution ID, and the name, version, and status of the pipeline.
This is a convenience which creates an instance of the
GetPipelineExecutionRequest.Builderavoiding the need to create one manually viaGetPipelineExecutionRequest.builder()- Parameters:
getPipelineExecutionRequest- AConsumerthat will call methods onGetPipelineExecutionRequest.Builderto create a request. Represents the input of aGetPipelineExecutionaction.- Returns:
- Result of the GetPipelineExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getPipelineState
default GetPipelineStateResponse getPipelineState(GetPipelineStateRequest getPipelineStateRequest) throws ValidationException, PipelineNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about the state of a pipeline, including the stages and actions.
Values returned in the
revisionIdandrevisionUrlfields indicate the source revision information, such as the commit ID, for the current state.- Parameters:
getPipelineStateRequest- Represents the input of aGetPipelineStateaction.- Returns:
- Result of the GetPipelineState operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getPipelineState
default GetPipelineStateResponse getPipelineState(Consumer<GetPipelineStateRequest.Builder> getPipelineStateRequest) throws ValidationException, PipelineNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about the state of a pipeline, including the stages and actions.
Values returned in the
revisionIdandrevisionUrlfields indicate the source revision information, such as the commit ID, for the current state.
This is a convenience which creates an instance of the
GetPipelineStateRequest.Builderavoiding the need to create one manually viaGetPipelineStateRequest.builder()- Parameters:
getPipelineStateRequest- AConsumerthat will call methods onGetPipelineStateRequest.Builderto create a request. Represents the input of aGetPipelineStateaction.- Returns:
- Result of the GetPipelineState operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getThirdPartyJobDetails
default GetThirdPartyJobDetailsResponse getThirdPartyJobDetails(GetThirdPartyJobDetailsRequest getThirdPartyJobDetailsRequest) throws JobNotFoundException, ValidationException, InvalidClientTokenException, InvalidJobException, AwsServiceException, SdkClientException, CodePipelineException
Requests the details of a job for a third party action. Used for partner actions only.
When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.
- Parameters:
getThirdPartyJobDetailsRequest- Represents the input of aGetThirdPartyJobDetailsaction.- Returns:
- Result of the GetThirdPartyJobDetails operation returned by the service.
- Throws:
JobNotFoundException- The job was specified in an invalid format or cannot be found.ValidationException- The validation was specified in an invalid format.InvalidClientTokenException- The client token was specified in an invalid formatInvalidJobException- The job was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
getThirdPartyJobDetails
default GetThirdPartyJobDetailsResponse getThirdPartyJobDetails(Consumer<GetThirdPartyJobDetailsRequest.Builder> getThirdPartyJobDetailsRequest) throws JobNotFoundException, ValidationException, InvalidClientTokenException, InvalidJobException, AwsServiceException, SdkClientException, CodePipelineException
Requests the details of a job for a third party action. Used for partner actions only.
When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.
This is a convenience which creates an instance of the
GetThirdPartyJobDetailsRequest.Builderavoiding the need to create one manually viaGetThirdPartyJobDetailsRequest.builder()- Parameters:
getThirdPartyJobDetailsRequest- AConsumerthat will call methods onGetThirdPartyJobDetailsRequest.Builderto create a request. Represents the input of aGetThirdPartyJobDetailsaction.- Returns:
- Result of the GetThirdPartyJobDetails operation returned by the service.
- Throws:
JobNotFoundException- The job was specified in an invalid format or cannot be found.ValidationException- The validation was specified in an invalid format.InvalidClientTokenException- The client token was specified in an invalid formatInvalidJobException- The job was specified in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionExecutions
default ListActionExecutionsResponse listActionExecutions(ListActionExecutionsRequest listActionExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Lists the action executions that have occurred in a pipeline.
- Parameters:
listActionExecutionsRequest-- Returns:
- Result of the ListActionExecutions operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionExecutions
default ListActionExecutionsResponse listActionExecutions(Consumer<ListActionExecutionsRequest.Builder> listActionExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Lists the action executions that have occurred in a pipeline.
This is a convenience which creates an instance of the
ListActionExecutionsRequest.Builderavoiding the need to create one manually viaListActionExecutionsRequest.builder()- Parameters:
listActionExecutionsRequest- AConsumerthat will call methods onListActionExecutionsRequest.Builderto create a request.- Returns:
- Result of the ListActionExecutions operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionExecutionsPaginator
default ListActionExecutionsIterable listActionExecutionsPaginator(ListActionExecutionsRequest listActionExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listActionExecutions(software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListActionExecutionsIterable responses = client.listActionExecutionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListActionExecutionsIterable responses = client .listActionExecutionsPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListActionExecutionsIterable responses = client.listActionExecutionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listActionExecutions(software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsRequest)operation.- Parameters:
listActionExecutionsRequest-- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionExecutionsPaginator
default ListActionExecutionsIterable listActionExecutionsPaginator(Consumer<ListActionExecutionsRequest.Builder> listActionExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listActionExecutions(software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListActionExecutionsIterable responses = client.listActionExecutionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListActionExecutionsIterable responses = client .listActionExecutionsPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListActionExecutionsIterable responses = client.listActionExecutionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listActionExecutions(software.amazon.awssdk.services.codepipeline.model.ListActionExecutionsRequest)operation.
This is a convenience which creates an instance of the
ListActionExecutionsRequest.Builderavoiding the need to create one manually viaListActionExecutionsRequest.builder()- Parameters:
listActionExecutionsRequest- AConsumerthat will call methods onListActionExecutionsRequest.Builderto create a request.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionTypes
default ListActionTypesResponse listActionTypes(ListActionTypesRequest listActionTypesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of all CodePipeline action types associated with your account.
- Parameters:
listActionTypesRequest- Represents the input of aListActionTypesaction.- Returns:
- Result of the ListActionTypes operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionTypes
default ListActionTypesResponse listActionTypes(Consumer<ListActionTypesRequest.Builder> listActionTypesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of all CodePipeline action types associated with your account.
This is a convenience which creates an instance of the
ListActionTypesRequest.Builderavoiding the need to create one manually viaListActionTypesRequest.builder()- Parameters:
listActionTypesRequest- AConsumerthat will call methods onListActionTypesRequest.Builderto create a request. Represents the input of aListActionTypesaction.- Returns:
- Result of the ListActionTypes operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionTypes
default ListActionTypesResponse listActionTypes() throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of all CodePipeline action types associated with your account.
- Returns:
- Result of the ListActionTypes operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
listActionTypes(ListActionTypesRequest), AWS API Documentation
-
listActionTypesPaginator
default ListActionTypesIterable listActionTypesPaginator() throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client.listActionTypesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client .listActionTypesPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListActionTypesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client.listActionTypesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
listActionTypesPaginator(ListActionTypesRequest), AWS API Documentation
-
listActionTypesPaginator
default ListActionTypesIterable listActionTypesPaginator(ListActionTypesRequest listActionTypesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client.listActionTypesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client .listActionTypesPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListActionTypesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client.listActionTypesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation.- Parameters:
listActionTypesRequest- Represents the input of aListActionTypesaction.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listActionTypesPaginator
default ListActionTypesIterable listActionTypesPaginator(Consumer<ListActionTypesRequest.Builder> listActionTypesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client.listActionTypesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client .listActionTypesPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListActionTypesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListActionTypesIterable responses = client.listActionTypesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of null won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listActionTypes(software.amazon.awssdk.services.codepipeline.model.ListActionTypesRequest)operation.
This is a convenience which creates an instance of the
ListActionTypesRequest.Builderavoiding the need to create one manually viaListActionTypesRequest.builder()- Parameters:
listActionTypesRequest- AConsumerthat will call methods onListActionTypesRequest.Builderto create a request. Represents the input of aListActionTypesaction.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelineExecutions
default ListPipelineExecutionsResponse listPipelineExecutions(ListPipelineExecutionsRequest listPipelineExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of the most recent executions for a pipeline.
When applying the filter for pipeline executions that have succeeded in the stage, the operation returns all executions in the current pipeline version beginning on February 1, 2024.
- Parameters:
listPipelineExecutionsRequest- Represents the input of aListPipelineExecutionsaction.- Returns:
- Result of the ListPipelineExecutions operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelineExecutions
default ListPipelineExecutionsResponse listPipelineExecutions(Consumer<ListPipelineExecutionsRequest.Builder> listPipelineExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of the most recent executions for a pipeline.
When applying the filter for pipeline executions that have succeeded in the stage, the operation returns all executions in the current pipeline version beginning on February 1, 2024.
This is a convenience which creates an instance of the
ListPipelineExecutionsRequest.Builderavoiding the need to create one manually viaListPipelineExecutionsRequest.builder()- Parameters:
listPipelineExecutionsRequest- AConsumerthat will call methods onListPipelineExecutionsRequest.Builderto create a request. Represents the input of aListPipelineExecutionsaction.- Returns:
- Result of the ListPipelineExecutions operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelineExecutionsPaginator
default ListPipelineExecutionsIterable listPipelineExecutionsPaginator(ListPipelineExecutionsRequest listPipelineExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listPipelineExecutions(software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelineExecutionsIterable responses = client.listPipelineExecutionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListPipelineExecutionsIterable responses = client .listPipelineExecutionsPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelineExecutionsIterable responses = client.listPipelineExecutionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listPipelineExecutions(software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsRequest)operation.- Parameters:
listPipelineExecutionsRequest- Represents the input of aListPipelineExecutionsaction.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelineExecutionsPaginator
default ListPipelineExecutionsIterable listPipelineExecutionsPaginator(Consumer<ListPipelineExecutionsRequest.Builder> listPipelineExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listPipelineExecutions(software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelineExecutionsIterable responses = client.listPipelineExecutionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListPipelineExecutionsIterable responses = client .listPipelineExecutionsPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelineExecutionsIterable responses = client.listPipelineExecutionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listPipelineExecutions(software.amazon.awssdk.services.codepipeline.model.ListPipelineExecutionsRequest)operation.
This is a convenience which creates an instance of the
ListPipelineExecutionsRequest.Builderavoiding the need to create one manually viaListPipelineExecutionsRequest.builder()- Parameters:
listPipelineExecutionsRequest- AConsumerthat will call methods onListPipelineExecutionsRequest.Builderto create a request. Represents the input of aListPipelineExecutionsaction.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelines
default ListPipelinesResponse listPipelines(ListPipelinesRequest listPipelinesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of all of the pipelines associated with your account.
- Parameters:
listPipelinesRequest- Represents the input of aListPipelinesaction.- Returns:
- Result of the ListPipelines operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelines
default ListPipelinesResponse listPipelines(Consumer<ListPipelinesRequest.Builder> listPipelinesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of all of the pipelines associated with your account.
This is a convenience which creates an instance of the
ListPipelinesRequest.Builderavoiding the need to create one manually viaListPipelinesRequest.builder()- Parameters:
listPipelinesRequest- AConsumerthat will call methods onListPipelinesRequest.Builderto create a request. Represents the input of aListPipelinesaction.- Returns:
- Result of the ListPipelines operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelines
default ListPipelinesResponse listPipelines() throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a summary of all of the pipelines associated with your account.
- Returns:
- Result of the ListPipelines operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
listPipelines(ListPipelinesRequest), AWS API Documentation
-
listPipelinesPaginator
default ListPipelinesIterable listPipelinesPaginator() throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client.listPipelinesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client .listPipelinesPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListPipelinesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client.listPipelinesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
listPipelinesPaginator(ListPipelinesRequest), AWS API Documentation
-
listPipelinesPaginator
default ListPipelinesIterable listPipelinesPaginator(ListPipelinesRequest listPipelinesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client.listPipelinesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client .listPipelinesPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListPipelinesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client.listPipelinesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation.- Parameters:
listPipelinesRequest- Represents the input of aListPipelinesaction.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listPipelinesPaginator
default ListPipelinesIterable listPipelinesPaginator(Consumer<ListPipelinesRequest.Builder> listPipelinesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client.listPipelinesPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client .listPipelinesPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListPipelinesResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListPipelinesIterable responses = client.listPipelinesPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listPipelines(software.amazon.awssdk.services.codepipeline.model.ListPipelinesRequest)operation.
This is a convenience which creates an instance of the
ListPipelinesRequest.Builderavoiding the need to create one manually viaListPipelinesRequest.builder()- Parameters:
listPipelinesRequest- AConsumerthat will call methods onListPipelinesRequest.Builderto create a request. Represents the input of aListPipelinesaction.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listRuleExecutions
default ListRuleExecutionsResponse listRuleExecutions(ListRuleExecutionsRequest listRuleExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Lists the rule executions that have occurred in a pipeline configured for conditions with rules.
- Parameters:
listRuleExecutionsRequest-- Returns:
- Result of the ListRuleExecutions operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listRuleExecutions
default ListRuleExecutionsResponse listRuleExecutions(Consumer<ListRuleExecutionsRequest.Builder> listRuleExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Lists the rule executions that have occurred in a pipeline configured for conditions with rules.
This is a convenience which creates an instance of the
ListRuleExecutionsRequest.Builderavoiding the need to create one manually viaListRuleExecutionsRequest.builder()- Parameters:
listRuleExecutionsRequest- AConsumerthat will call methods onListRuleExecutionsRequest.Builderto create a request.- Returns:
- Result of the ListRuleExecutions operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listRuleExecutionsPaginator
default ListRuleExecutionsIterable listRuleExecutionsPaginator(ListRuleExecutionsRequest listRuleExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listRuleExecutions(software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListRuleExecutionsIterable responses = client.listRuleExecutionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListRuleExecutionsIterable responses = client .listRuleExecutionsPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListRuleExecutionsIterable responses = client.listRuleExecutionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listRuleExecutions(software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsRequest)operation.- Parameters:
listRuleExecutionsRequest-- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listRuleExecutionsPaginator
default ListRuleExecutionsIterable listRuleExecutionsPaginator(Consumer<ListRuleExecutionsRequest.Builder> listRuleExecutionsRequest) throws ValidationException, PipelineNotFoundException, InvalidNextTokenException, PipelineExecutionNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listRuleExecutions(software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListRuleExecutionsIterable responses = client.listRuleExecutionsPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListRuleExecutionsIterable responses = client .listRuleExecutionsPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListRuleExecutionsIterable responses = client.listRuleExecutionsPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listRuleExecutions(software.amazon.awssdk.services.codepipeline.model.ListRuleExecutionsRequest)operation.
This is a convenience which creates an instance of the
ListRuleExecutionsRequest.Builderavoiding the need to create one manually viaListRuleExecutionsRequest.builder()- Parameters:
listRuleExecutionsRequest- AConsumerthat will call methods onListRuleExecutionsRequest.Builderto create a request.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listRuleTypes
default ListRuleTypesResponse listRuleTypes(ListRuleTypesRequest listRuleTypesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Lists the rules for the condition. For more information about conditions, see Stage conditions. For more information about rules, see the CodePipeline rule reference.
- Parameters:
listRuleTypesRequest-- Returns:
- Result of the ListRuleTypes operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listRuleTypes
default ListRuleTypesResponse listRuleTypes(Consumer<ListRuleTypesRequest.Builder> listRuleTypesRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Lists the rules for the condition. For more information about conditions, see Stage conditions. For more information about rules, see the CodePipeline rule reference.
This is a convenience which creates an instance of the
ListRuleTypesRequest.Builderavoiding the need to create one manually viaListRuleTypesRequest.builder()- Parameters:
listRuleTypesRequest- AConsumerthat will call methods onListRuleTypesRequest.Builderto create a request.- Returns:
- Result of the ListRuleTypes operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listTagsForResource
default ListTagsForResourceResponse listTagsForResource(ListTagsForResourceRequest listTagsForResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidNextTokenException, InvalidArnException, AwsServiceException, SdkClientException, CodePipelineException
Gets the set of key-value pairs (metadata) that are used to manage the resource.
- Parameters:
listTagsForResourceRequest-- Returns:
- Result of the ListTagsForResource operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.InvalidArnException- The specified resource ARN is invalid.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listTagsForResource
default ListTagsForResourceResponse listTagsForResource(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidNextTokenException, InvalidArnException, AwsServiceException, SdkClientException, CodePipelineException
Gets the set of key-value pairs (metadata) that are used to manage the resource.
This is a convenience which creates an instance of the
ListTagsForResourceRequest.Builderavoiding the need to create one manually viaListTagsForResourceRequest.builder()- Parameters:
listTagsForResourceRequest- AConsumerthat will call methods onListTagsForResourceRequest.Builderto create a request.- Returns:
- Result of the ListTagsForResource operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.InvalidArnException- The specified resource ARN is invalid.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listTagsForResourcePaginator
default ListTagsForResourceIterable listTagsForResourcePaginator(ListTagsForResourceRequest listTagsForResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidNextTokenException, InvalidArnException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listTagsForResource(software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListTagsForResourceIterable responses = client.listTagsForResourcePaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListTagsForResourceIterable responses = client .listTagsForResourcePaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListTagsForResourceIterable responses = client.listTagsForResourcePaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listTagsForResource(software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceRequest)operation.- Parameters:
listTagsForResourceRequest-- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.InvalidArnException- The specified resource ARN is invalid.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listTagsForResourcePaginator
default ListTagsForResourceIterable listTagsForResourcePaginator(Consumer<ListTagsForResourceRequest.Builder> listTagsForResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidNextTokenException, InvalidArnException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listTagsForResource(software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListTagsForResourceIterable responses = client.listTagsForResourcePaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListTagsForResourceIterable responses = client .listTagsForResourcePaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListTagsForResourceIterable responses = client.listTagsForResourcePaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of maxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listTagsForResource(software.amazon.awssdk.services.codepipeline.model.ListTagsForResourceRequest)operation.
This is a convenience which creates an instance of the
ListTagsForResourceRequest.Builderavoiding the need to create one manually viaListTagsForResourceRequest.builder()- Parameters:
listTagsForResourceRequest- AConsumerthat will call methods onListTagsForResourceRequest.Builderto create a request.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.InvalidArnException- The specified resource ARN is invalid.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listWebhooks
default ListWebhooksResponse listWebhooks(ListWebhooksRequest listWebhooksRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a listing of all the webhooks in this Amazon Web Services Region for this account. The output lists all webhooks and includes the webhook URL and ARN and the configuration for each webhook.
If a secret token was provided, it will be redacted in the response.
- Parameters:
listWebhooksRequest-- Returns:
- Result of the ListWebhooks operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listWebhooks
default ListWebhooksResponse listWebhooks(Consumer<ListWebhooksRequest.Builder> listWebhooksRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a listing of all the webhooks in this Amazon Web Services Region for this account. The output lists all webhooks and includes the webhook URL and ARN and the configuration for each webhook.
If a secret token was provided, it will be redacted in the response.
This is a convenience which creates an instance of the
ListWebhooksRequest.Builderavoiding the need to create one manually viaListWebhooksRequest.builder()- Parameters:
listWebhooksRequest- AConsumerthat will call methods onListWebhooksRequest.Builderto create a request.- Returns:
- Result of the ListWebhooks operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listWebhooks
default ListWebhooksResponse listWebhooks() throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
Gets a listing of all the webhooks in this Amazon Web Services Region for this account. The output lists all webhooks and includes the webhook URL and ARN and the configuration for each webhook.
If a secret token was provided, it will be redacted in the response.
- Returns:
- Result of the ListWebhooks operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
listWebhooks(ListWebhooksRequest), AWS API Documentation
-
listWebhooksPaginator
default ListWebhooksIterable listWebhooksPaginator() throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client.listWebhooksPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client .listWebhooksPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListWebhooksResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client.listWebhooksPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of MaxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
listWebhooksPaginator(ListWebhooksRequest), AWS API Documentation
-
listWebhooksPaginator
default ListWebhooksIterable listWebhooksPaginator(ListWebhooksRequest listWebhooksRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client.listWebhooksPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client .listWebhooksPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListWebhooksResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client.listWebhooksPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of MaxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation.- Parameters:
listWebhooksRequest-- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
listWebhooksPaginator
default ListWebhooksIterable listWebhooksPaginator(Consumer<ListWebhooksRequest.Builder> listWebhooksRequest) throws ValidationException, InvalidNextTokenException, AwsServiceException, SdkClientException, CodePipelineException
This is a variant of
listWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation. The return type is a custom iterable that can be used to iterate through all the pages. SDK will internally handle making service calls for you.When this operation is called, a custom iterable is returned but no service calls are made yet. So there is no guarantee that the request is valid. As you iterate through the iterable, SDK will start lazily loading response pages by making service calls until there are no pages left or your iteration stops. If there are errors in your request, you will see the failures only after you start iterating through the iterable.
The following are few ways to iterate through the response pages:
1) Using a Stream
2) Using For loopsoftware.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client.listWebhooksPaginator(request); responses.stream().forEach(....);{ @code software.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client .listWebhooksPaginator(request); for (software.amazon.awssdk.services.codepipeline.model.ListWebhooksResponse response : responses) { // do something; } }3) Use iterator directlysoftware.amazon.awssdk.services.codepipeline.paginators.ListWebhooksIterable responses = client.listWebhooksPaginator(request); responses.iterator().forEachRemaining(....);Please notice that the configuration of MaxResults won't limit the number of results you get with the paginator. It only limits the number of results in each page.
Note: If you prefer to have control on service calls, use the
listWebhooks(software.amazon.awssdk.services.codepipeline.model.ListWebhooksRequest)operation.
This is a convenience which creates an instance of the
ListWebhooksRequest.Builderavoiding the need to create one manually viaListWebhooksRequest.builder()- Parameters:
listWebhooksRequest- AConsumerthat will call methods onListWebhooksRequest.Builderto create a request.- Returns:
- A custom iterable that can be used to iterate through all the response pages.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidNextTokenException- The next token was specified in an invalid format. Make sure that the next token you provide is the token returned by a previous call.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
overrideStageCondition
default OverrideStageConditionResponse overrideStageCondition(OverrideStageConditionRequest overrideStageConditionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, StageNotFoundException, ConditionNotOverridableException, NotLatestPipelineExecutionException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Used to override a stage condition.
- Parameters:
overrideStageConditionRequest-- Returns:
- Result of the OverrideStageCondition operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.ConditionNotOverridableException- Unable to override because the condition does not allow overrides.NotLatestPipelineExecutionException- The stage has failed in a later run of the pipeline and thepipelineExecutionIdassociated with the request is out of date.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
overrideStageCondition
default OverrideStageConditionResponse overrideStageCondition(Consumer<OverrideStageConditionRequest.Builder> overrideStageConditionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, StageNotFoundException, ConditionNotOverridableException, NotLatestPipelineExecutionException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Used to override a stage condition.
This is a convenience which creates an instance of the
OverrideStageConditionRequest.Builderavoiding the need to create one manually viaOverrideStageConditionRequest.builder()- Parameters:
overrideStageConditionRequest- AConsumerthat will call methods onOverrideStageConditionRequest.Builderto create a request.- Returns:
- Result of the OverrideStageCondition operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.ConditionNotOverridableException- Unable to override because the condition does not allow overrides.NotLatestPipelineExecutionException- The stage has failed in a later run of the pipeline and thepipelineExecutionIdassociated with the request is out of date.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
pollForJobs
default PollForJobsResponse pollForJobs(PollForJobsRequest pollForJobsRequest) throws ValidationException, ActionTypeNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about any jobs for CodePipeline to act on.
PollForJobsis valid only for action types with "Custom" in the owner field. If the action type containsAWSorThirdPartyin the owner field, thePollForJobsaction returns an error.When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.
- Parameters:
pollForJobsRequest- Represents the input of aPollForJobsaction.- Returns:
- Result of the PollForJobs operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ActionTypeNotFoundException- The specified action type cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
pollForJobs
default PollForJobsResponse pollForJobs(Consumer<PollForJobsRequest.Builder> pollForJobsRequest) throws ValidationException, ActionTypeNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Returns information about any jobs for CodePipeline to act on.
PollForJobsis valid only for action types with "Custom" in the owner field. If the action type containsAWSorThirdPartyin the owner field, thePollForJobsaction returns an error.When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts. This API also returns any secret values defined for the action.
This is a convenience which creates an instance of the
PollForJobsRequest.Builderavoiding the need to create one manually viaPollForJobsRequest.builder()- Parameters:
pollForJobsRequest- AConsumerthat will call methods onPollForJobsRequest.Builderto create a request. Represents the input of aPollForJobsaction.- Returns:
- Result of the PollForJobs operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ActionTypeNotFoundException- The specified action type cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
pollForThirdPartyJobs
default PollForThirdPartyJobsResponse pollForThirdPartyJobs(PollForThirdPartyJobsRequest pollForThirdPartyJobsRequest) throws ActionTypeNotFoundException, ValidationException, AwsServiceException, SdkClientException, CodePipelineException
Determines whether there are any third party jobs for a job worker to act on. Used for partner actions only.
When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts.
- Parameters:
pollForThirdPartyJobsRequest- Represents the input of aPollForThirdPartyJobsaction.- Returns:
- Result of the PollForThirdPartyJobs operation returned by the service.
- Throws:
ActionTypeNotFoundException- The specified action type cannot be found.ValidationException- The validation was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
pollForThirdPartyJobs
default PollForThirdPartyJobsResponse pollForThirdPartyJobs(Consumer<PollForThirdPartyJobsRequest.Builder> pollForThirdPartyJobsRequest) throws ActionTypeNotFoundException, ValidationException, AwsServiceException, SdkClientException, CodePipelineException
Determines whether there are any third party jobs for a job worker to act on. Used for partner actions only.
When this API is called, CodePipeline returns temporary credentials for the S3 bucket used to store artifacts for the pipeline, if the action requires access to that S3 bucket for input or output artifacts.
This is a convenience which creates an instance of the
PollForThirdPartyJobsRequest.Builderavoiding the need to create one manually viaPollForThirdPartyJobsRequest.builder()- Parameters:
pollForThirdPartyJobsRequest- AConsumerthat will call methods onPollForThirdPartyJobsRequest.Builderto create a request. Represents the input of aPollForThirdPartyJobsaction.- Returns:
- Result of the PollForThirdPartyJobs operation returned by the service.
- Throws:
ActionTypeNotFoundException- The specified action type cannot be found.ValidationException- The validation was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putActionRevision
default PutActionRevisionResponse putActionRevision(PutActionRevisionRequest putActionRevisionRequest) throws PipelineNotFoundException, StageNotFoundException, ActionNotFoundException, ValidationException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Provides information to CodePipeline about new revisions to a source.
- Parameters:
putActionRevisionRequest- Represents the input of aPutActionRevisionaction.- Returns:
- Result of the PutActionRevision operation returned by the service.
- Throws:
PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.ActionNotFoundException- The specified action cannot be found.ValidationException- The validation was specified in an invalid format.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putActionRevision
default PutActionRevisionResponse putActionRevision(Consumer<PutActionRevisionRequest.Builder> putActionRevisionRequest) throws PipelineNotFoundException, StageNotFoundException, ActionNotFoundException, ValidationException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Provides information to CodePipeline about new revisions to a source.
This is a convenience which creates an instance of the
PutActionRevisionRequest.Builderavoiding the need to create one manually viaPutActionRevisionRequest.builder()- Parameters:
putActionRevisionRequest- AConsumerthat will call methods onPutActionRevisionRequest.Builderto create a request. Represents the input of aPutActionRevisionaction.- Returns:
- Result of the PutActionRevision operation returned by the service.
- Throws:
PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.ActionNotFoundException- The specified action cannot be found.ValidationException- The validation was specified in an invalid format.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putApprovalResult
default PutApprovalResultResponse putApprovalResult(PutApprovalResultRequest putApprovalResultRequest) throws InvalidApprovalTokenException, ApprovalAlreadyCompletedException, PipelineNotFoundException, StageNotFoundException, ActionNotFoundException, ValidationException, AwsServiceException, SdkClientException, CodePipelineException
Provides the response to a manual approval request to CodePipeline. Valid responses include Approved and Rejected.
- Parameters:
putApprovalResultRequest- Represents the input of aPutApprovalResultaction.- Returns:
- Result of the PutApprovalResult operation returned by the service.
- Throws:
InvalidApprovalTokenException- The approval request already received a response or has expired.ApprovalAlreadyCompletedException- The approval action has already been approved or rejected.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.ActionNotFoundException- The specified action cannot be found.ValidationException- The validation was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putApprovalResult
default PutApprovalResultResponse putApprovalResult(Consumer<PutApprovalResultRequest.Builder> putApprovalResultRequest) throws InvalidApprovalTokenException, ApprovalAlreadyCompletedException, PipelineNotFoundException, StageNotFoundException, ActionNotFoundException, ValidationException, AwsServiceException, SdkClientException, CodePipelineException
Provides the response to a manual approval request to CodePipeline. Valid responses include Approved and Rejected.
This is a convenience which creates an instance of the
PutApprovalResultRequest.Builderavoiding the need to create one manually viaPutApprovalResultRequest.builder()- Parameters:
putApprovalResultRequest- AConsumerthat will call methods onPutApprovalResultRequest.Builderto create a request. Represents the input of aPutApprovalResultaction.- Returns:
- Result of the PutApprovalResult operation returned by the service.
- Throws:
InvalidApprovalTokenException- The approval request already received a response or has expired.ApprovalAlreadyCompletedException- The approval action has already been approved or rejected.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.ActionNotFoundException- The specified action cannot be found.ValidationException- The validation was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putJobFailureResult
default PutJobFailureResultResponse putJobFailureResult(PutJobFailureResultRequest putJobFailureResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, AwsServiceException, SdkClientException, CodePipelineException
Represents the failure of a job as returned to the pipeline by a job worker. Used for custom actions only.
- Parameters:
putJobFailureResultRequest- Represents the input of aPutJobFailureResultaction.- Returns:
- Result of the PutJobFailureResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putJobFailureResult
default PutJobFailureResultResponse putJobFailureResult(Consumer<PutJobFailureResultRequest.Builder> putJobFailureResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, AwsServiceException, SdkClientException, CodePipelineException
Represents the failure of a job as returned to the pipeline by a job worker. Used for custom actions only.
This is a convenience which creates an instance of the
PutJobFailureResultRequest.Builderavoiding the need to create one manually viaPutJobFailureResultRequest.builder()- Parameters:
putJobFailureResultRequest- AConsumerthat will call methods onPutJobFailureResultRequest.Builderto create a request. Represents the input of aPutJobFailureResultaction.- Returns:
- Result of the PutJobFailureResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putJobSuccessResult
default PutJobSuccessResultResponse putJobSuccessResult(PutJobSuccessResultRequest putJobSuccessResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, OutputVariablesSizeExceededException, AwsServiceException, SdkClientException, CodePipelineException
Represents the success of a job as returned to the pipeline by a job worker. Used for custom actions only.
- Parameters:
putJobSuccessResultRequest- Represents the input of aPutJobSuccessResultaction.- Returns:
- Result of the PutJobSuccessResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.OutputVariablesSizeExceededException- Exceeded the total size limit for all variables in the pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putJobSuccessResult
default PutJobSuccessResultResponse putJobSuccessResult(Consumer<PutJobSuccessResultRequest.Builder> putJobSuccessResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, OutputVariablesSizeExceededException, AwsServiceException, SdkClientException, CodePipelineException
Represents the success of a job as returned to the pipeline by a job worker. Used for custom actions only.
This is a convenience which creates an instance of the
PutJobSuccessResultRequest.Builderavoiding the need to create one manually viaPutJobSuccessResultRequest.builder()- Parameters:
putJobSuccessResultRequest- AConsumerthat will call methods onPutJobSuccessResultRequest.Builderto create a request. Represents the input of aPutJobSuccessResultaction.- Returns:
- Result of the PutJobSuccessResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.OutputVariablesSizeExceededException- Exceeded the total size limit for all variables in the pipeline.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putThirdPartyJobFailureResult
default PutThirdPartyJobFailureResultResponse putThirdPartyJobFailureResult(PutThirdPartyJobFailureResultRequest putThirdPartyJobFailureResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, InvalidClientTokenException, AwsServiceException, SdkClientException, CodePipelineException
Represents the failure of a third party job as returned to the pipeline by a job worker. Used for partner actions only.
- Parameters:
putThirdPartyJobFailureResultRequest- Represents the input of aPutThirdPartyJobFailureResultaction.- Returns:
- Result of the PutThirdPartyJobFailureResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.InvalidClientTokenException- The client token was specified in an invalid formatSdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putThirdPartyJobFailureResult
default PutThirdPartyJobFailureResultResponse putThirdPartyJobFailureResult(Consumer<PutThirdPartyJobFailureResultRequest.Builder> putThirdPartyJobFailureResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, InvalidClientTokenException, AwsServiceException, SdkClientException, CodePipelineException
Represents the failure of a third party job as returned to the pipeline by a job worker. Used for partner actions only.
This is a convenience which creates an instance of the
PutThirdPartyJobFailureResultRequest.Builderavoiding the need to create one manually viaPutThirdPartyJobFailureResultRequest.builder()- Parameters:
putThirdPartyJobFailureResultRequest- AConsumerthat will call methods onPutThirdPartyJobFailureResultRequest.Builderto create a request. Represents the input of aPutThirdPartyJobFailureResultaction.- Returns:
- Result of the PutThirdPartyJobFailureResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.InvalidClientTokenException- The client token was specified in an invalid formatSdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putThirdPartyJobSuccessResult
default PutThirdPartyJobSuccessResultResponse putThirdPartyJobSuccessResult(PutThirdPartyJobSuccessResultRequest putThirdPartyJobSuccessResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, InvalidClientTokenException, AwsServiceException, SdkClientException, CodePipelineException
Represents the success of a third party job as returned to the pipeline by a job worker. Used for partner actions only.
- Parameters:
putThirdPartyJobSuccessResultRequest- Represents the input of aPutThirdPartyJobSuccessResultaction.- Returns:
- Result of the PutThirdPartyJobSuccessResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.InvalidClientTokenException- The client token was specified in an invalid formatSdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putThirdPartyJobSuccessResult
default PutThirdPartyJobSuccessResultResponse putThirdPartyJobSuccessResult(Consumer<PutThirdPartyJobSuccessResultRequest.Builder> putThirdPartyJobSuccessResultRequest) throws ValidationException, JobNotFoundException, InvalidJobStateException, InvalidClientTokenException, AwsServiceException, SdkClientException, CodePipelineException
Represents the success of a third party job as returned to the pipeline by a job worker. Used for partner actions only.
This is a convenience which creates an instance of the
PutThirdPartyJobSuccessResultRequest.Builderavoiding the need to create one manually viaPutThirdPartyJobSuccessResultRequest.builder()- Parameters:
putThirdPartyJobSuccessResultRequest- AConsumerthat will call methods onPutThirdPartyJobSuccessResultRequest.Builderto create a request. Represents the input of aPutThirdPartyJobSuccessResultaction.- Returns:
- Result of the PutThirdPartyJobSuccessResult operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.JobNotFoundException- The job was specified in an invalid format or cannot be found.InvalidJobStateException- The job state was specified in an invalid format.InvalidClientTokenException- The client token was specified in an invalid formatSdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putWebhook
default PutWebhookResponse putWebhook(PutWebhookRequest putWebhookRequest) throws ValidationException, LimitExceededException, InvalidWebhookFilterPatternException, InvalidWebhookAuthenticationParametersException, PipelineNotFoundException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Defines a webhook and returns a unique webhook URL generated by CodePipeline. This URL can be supplied to third party source hosting providers to call every time there's a code change. When CodePipeline receives a POST request on this URL, the pipeline defined in the webhook is started as long as the POST request satisfied the authentication and filtering requirements supplied when defining the webhook. RegisterWebhookWithThirdParty and DeregisterWebhookWithThirdParty APIs can be used to automatically configure supported third parties to call the generated webhook URL.
When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities.
If a secret token was provided, it will be redacted in the response.
- Parameters:
putWebhookRequest-- Returns:
- Result of the PutWebhook operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.InvalidWebhookFilterPatternException- The specified event filter rule is in an invalid format.InvalidWebhookAuthenticationParametersException- The specified authentication type is in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
putWebhook
default PutWebhookResponse putWebhook(Consumer<PutWebhookRequest.Builder> putWebhookRequest) throws ValidationException, LimitExceededException, InvalidWebhookFilterPatternException, InvalidWebhookAuthenticationParametersException, PipelineNotFoundException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Defines a webhook and returns a unique webhook URL generated by CodePipeline. This URL can be supplied to third party source hosting providers to call every time there's a code change. When CodePipeline receives a POST request on this URL, the pipeline defined in the webhook is started as long as the POST request satisfied the authentication and filtering requirements supplied when defining the webhook. RegisterWebhookWithThirdParty and DeregisterWebhookWithThirdParty APIs can be used to automatically configure supported third parties to call the generated webhook URL.
When creating CodePipeline webhooks, do not use your own credentials or reuse the same secret token across multiple webhooks. For optimal security, generate a unique secret token for each webhook you create. The secret token is an arbitrary string that you provide, which GitHub uses to compute and sign the webhook payloads sent to CodePipeline, for protecting the integrity and authenticity of the webhook payloads. Using your own credentials or reusing the same token across multiple webhooks can lead to security vulnerabilities.
If a secret token was provided, it will be redacted in the response.
This is a convenience which creates an instance of the
PutWebhookRequest.Builderavoiding the need to create one manually viaPutWebhookRequest.builder()- Parameters:
putWebhookRequest- AConsumerthat will call methods onPutWebhookRequest.Builderto create a request.- Returns:
- Result of the PutWebhook operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.InvalidWebhookFilterPatternException- The specified event filter rule is in an invalid format.InvalidWebhookAuthenticationParametersException- The specified authentication type is in an invalid format.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
registerWebhookWithThirdParty
default RegisterWebhookWithThirdPartyResponse registerWebhookWithThirdParty(RegisterWebhookWithThirdPartyRequest registerWebhookWithThirdPartyRequest) throws ValidationException, WebhookNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Configures a connection between the webhook that was created and the external tool with events to be detected.
- Parameters:
registerWebhookWithThirdPartyRequest-- Returns:
- Result of the RegisterWebhookWithThirdParty operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.WebhookNotFoundException- The specified webhook was entered in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
registerWebhookWithThirdParty
default RegisterWebhookWithThirdPartyResponse registerWebhookWithThirdParty(Consumer<RegisterWebhookWithThirdPartyRequest.Builder> registerWebhookWithThirdPartyRequest) throws ValidationException, WebhookNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Configures a connection between the webhook that was created and the external tool with events to be detected.
This is a convenience which creates an instance of the
RegisterWebhookWithThirdPartyRequest.Builderavoiding the need to create one manually viaRegisterWebhookWithThirdPartyRequest.builder()- Parameters:
registerWebhookWithThirdPartyRequest- AConsumerthat will call methods onRegisterWebhookWithThirdPartyRequest.Builderto create a request.- Returns:
- Result of the RegisterWebhookWithThirdParty operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.WebhookNotFoundException- The specified webhook was entered in an invalid format or cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
retryStageExecution
default RetryStageExecutionResponse retryStageExecution(RetryStageExecutionRequest retryStageExecutionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, StageNotFoundException, StageNotRetryableException, NotLatestPipelineExecutionException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
You can retry a stage that has failed without having to run a pipeline again from the beginning. You do this by either retrying the failed actions in a stage or by retrying all actions in the stage starting from the first action in the stage. When you retry the failed actions in a stage, all actions that are still in progress continue working, and failed actions are triggered again. When you retry a failed stage from the first action in the stage, the stage cannot have any actions in progress. Before a stage can be retried, it must either have all actions failed or some actions failed and some succeeded.
- Parameters:
retryStageExecutionRequest- Represents the input of aRetryStageExecutionaction.- Returns:
- Result of the RetryStageExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.StageNotRetryableException- Unable to retry. The pipeline structure or stage state might have changed while actions awaited retry, or the stage contains no failed actions.NotLatestPipelineExecutionException- The stage has failed in a later run of the pipeline and thepipelineExecutionIdassociated with the request is out of date.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
retryStageExecution
default RetryStageExecutionResponse retryStageExecution(Consumer<RetryStageExecutionRequest.Builder> retryStageExecutionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, StageNotFoundException, StageNotRetryableException, NotLatestPipelineExecutionException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
You can retry a stage that has failed without having to run a pipeline again from the beginning. You do this by either retrying the failed actions in a stage or by retrying all actions in the stage starting from the first action in the stage. When you retry the failed actions in a stage, all actions that are still in progress continue working, and failed actions are triggered again. When you retry a failed stage from the first action in the stage, the stage cannot have any actions in progress. Before a stage can be retried, it must either have all actions failed or some actions failed and some succeeded.
This is a convenience which creates an instance of the
RetryStageExecutionRequest.Builderavoiding the need to create one manually viaRetryStageExecutionRequest.builder()- Parameters:
retryStageExecutionRequest- AConsumerthat will call methods onRetryStageExecutionRequest.Builderto create a request. Represents the input of aRetryStageExecutionaction.- Returns:
- Result of the RetryStageExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.StageNotFoundException- The stage was specified in an invalid format or cannot be found.StageNotRetryableException- Unable to retry. The pipeline structure or stage state might have changed while actions awaited retry, or the stage contains no failed actions.NotLatestPipelineExecutionException- The stage has failed in a later run of the pipeline and thepipelineExecutionIdassociated with the request is out of date.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
rollbackStage
default RollbackStageResponse rollbackStage(RollbackStageRequest rollbackStageRequest) throws ValidationException, ConflictException, PipelineNotFoundException, PipelineExecutionNotFoundException, PipelineExecutionOutdatedException, StageNotFoundException, UnableToRollbackStageException, AwsServiceException, SdkClientException, CodePipelineException
Rolls back a stage execution.
- Parameters:
rollbackStageRequest-- Returns:
- Result of the RollbackStage operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.PipelineExecutionOutdatedException- The specified pipeline execution is outdated and cannot be used as a target pipeline execution for rollback.StageNotFoundException- The stage was specified in an invalid format or cannot be found.UnableToRollbackStageException- Unable to roll back the stage. The cause might be if the pipeline version has changed since the target pipeline execution was deployed, the stage is currently running, or an incorrect target pipeline execution ID was provided.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
rollbackStage
default RollbackStageResponse rollbackStage(Consumer<RollbackStageRequest.Builder> rollbackStageRequest) throws ValidationException, ConflictException, PipelineNotFoundException, PipelineExecutionNotFoundException, PipelineExecutionOutdatedException, StageNotFoundException, UnableToRollbackStageException, AwsServiceException, SdkClientException, CodePipelineException
Rolls back a stage execution.
This is a convenience which creates an instance of the
RollbackStageRequest.Builderavoiding the need to create one manually viaRollbackStageRequest.builder()- Parameters:
rollbackStageRequest- AConsumerthat will call methods onRollbackStageRequest.Builderto create a request.- Returns:
- Result of the RollbackStage operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineExecutionNotFoundException- The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.PipelineExecutionOutdatedException- The specified pipeline execution is outdated and cannot be used as a target pipeline execution for rollback.StageNotFoundException- The stage was specified in an invalid format or cannot be found.UnableToRollbackStageException- Unable to roll back the stage. The cause might be if the pipeline version has changed since the target pipeline execution was deployed, the stage is currently running, or an incorrect target pipeline execution ID was provided.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
startPipelineExecution
default StartPipelineExecutionResponse startPipelineExecution(StartPipelineExecutionRequest startPipelineExecutionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
- Parameters:
startPipelineExecutionRequest- Represents the input of aStartPipelineExecutionaction.- Returns:
- Result of the StartPipelineExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
startPipelineExecution
default StartPipelineExecutionResponse startPipelineExecution(Consumer<StartPipelineExecutionRequest.Builder> startPipelineExecutionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, ConcurrentPipelineExecutionsLimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.
This is a convenience which creates an instance of the
StartPipelineExecutionRequest.Builderavoiding the need to create one manually viaStartPipelineExecutionRequest.builder()- Parameters:
startPipelineExecutionRequest- AConsumerthat will call methods onStartPipelineExecutionRequest.Builderto create a request. Represents the input of aStartPipelineExecutionaction.- Returns:
- Result of the StartPipelineExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.ConcurrentPipelineExecutionsLimitExceededException- The pipeline has reached the limit for concurrent pipeline executions.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
stopPipelineExecution
default StopPipelineExecutionResponse stopPipelineExecution(StopPipelineExecutionRequest stopPipelineExecutionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, PipelineExecutionNotStoppableException, DuplicatedStopRequestException, AwsServiceException, SdkClientException, CodePipelineException
Stops the specified pipeline execution. You choose to either stop the pipeline execution by completing in-progress actions without starting subsequent actions, or by abandoning in-progress actions. While completing or abandoning in-progress actions, the pipeline execution is in a
Stoppingstate. After all in-progress actions are completed or abandoned, the pipeline execution is in aStoppedstate.- Parameters:
stopPipelineExecutionRequest-- Returns:
- Result of the StopPipelineExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineExecutionNotStoppableException- Unable to stop the pipeline execution. The execution might already be in aStoppedstate, or it might no longer be in progress.DuplicatedStopRequestException- The pipeline execution is already in aStoppingstate. If you already chose to stop and wait, you cannot make that request again. You can choose to stop and abandon now, but be aware that this option can lead to failed tasks or out of sequence tasks. If you already chose to stop and abandon, you cannot make that request again.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
stopPipelineExecution
default StopPipelineExecutionResponse stopPipelineExecution(Consumer<StopPipelineExecutionRequest.Builder> stopPipelineExecutionRequest) throws ValidationException, ConflictException, PipelineNotFoundException, PipelineExecutionNotStoppableException, DuplicatedStopRequestException, AwsServiceException, SdkClientException, CodePipelineException
Stops the specified pipeline execution. You choose to either stop the pipeline execution by completing in-progress actions without starting subsequent actions, or by abandoning in-progress actions. While completing or abandoning in-progress actions, the pipeline execution is in a
Stoppingstate. After all in-progress actions are completed or abandoned, the pipeline execution is in aStoppedstate.
This is a convenience which creates an instance of the
StopPipelineExecutionRequest.Builderavoiding the need to create one manually viaStopPipelineExecutionRequest.builder()- Parameters:
stopPipelineExecutionRequest- AConsumerthat will call methods onStopPipelineExecutionRequest.Builderto create a request.- Returns:
- Result of the StopPipelineExecution operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ConflictException- Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.PipelineNotFoundException- The pipeline was specified in an invalid format or cannot be found.PipelineExecutionNotStoppableException- Unable to stop the pipeline execution. The execution might already be in aStoppedstate, or it might no longer be in progress.DuplicatedStopRequestException- The pipeline execution is already in aStoppingstate. If you already chose to stop and wait, you cannot make that request again. You can choose to stop and abandon now, but be aware that this option can lead to failed tasks or out of sequence tasks. If you already chose to stop and abandon, you cannot make that request again.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
tagResource
default TagResourceResponse tagResource(TagResourceRequest tagResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidArnException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
- Parameters:
tagResourceRequest-- Returns:
- Result of the TagResource operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidArnException- The specified resource ARN is invalid.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
tagResource
default TagResourceResponse tagResource(Consumer<TagResourceRequest.Builder> tagResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidArnException, TooManyTagsException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.
This is a convenience which creates an instance of the
TagResourceRequest.Builderavoiding the need to create one manually viaTagResourceRequest.builder()- Parameters:
tagResourceRequest- AConsumerthat will call methods onTagResourceRequest.Builderto create a request.- Returns:
- Result of the TagResource operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidArnException- The specified resource ARN is invalid.TooManyTagsException- The tags limit for a resource has been exceeded.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
untagResource
default UntagResourceResponse untagResource(UntagResourceRequest untagResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidArnException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Removes tags from an Amazon Web Services resource.
- Parameters:
untagResourceRequest-- Returns:
- Result of the UntagResource operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidArnException- The specified resource ARN is invalid.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
untagResource
default UntagResourceResponse untagResource(Consumer<UntagResourceRequest.Builder> untagResourceRequest) throws ValidationException, ResourceNotFoundException, InvalidArnException, InvalidTagsException, ConcurrentModificationException, AwsServiceException, SdkClientException, CodePipelineException
Removes tags from an Amazon Web Services resource.
This is a convenience which creates an instance of the
UntagResourceRequest.Builderavoiding the need to create one manually viaUntagResourceRequest.builder()- Parameters:
untagResourceRequest- AConsumerthat will call methods onUntagResourceRequest.Builderto create a request.- Returns:
- Result of the UntagResource operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.ResourceNotFoundException- The resource was specified in an invalid format.InvalidArnException- The specified resource ARN is invalid.InvalidTagsException- The specified resource tags are invalid.ConcurrentModificationException- Unable to modify the tag due to a simultaneous update request.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
updateActionType
default UpdateActionTypeResponse updateActionType(UpdateActionTypeRequest updateActionTypeRequest) throws RequestFailedException, ValidationException, ActionTypeNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Updates an action type that was created with any supported integration model, where the action type is to be used by customers of the action type provider. Use a JSON file with the action definition and
UpdateActionTypeto provide the full structure.- Parameters:
updateActionTypeRequest-- Returns:
- Result of the UpdateActionType operation returned by the service.
- Throws:
RequestFailedException- The request failed because of an unknown error, exception, or failure.ValidationException- The validation was specified in an invalid format.ActionTypeNotFoundException- The specified action type cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
updateActionType
default UpdateActionTypeResponse updateActionType(Consumer<UpdateActionTypeRequest.Builder> updateActionTypeRequest) throws RequestFailedException, ValidationException, ActionTypeNotFoundException, AwsServiceException, SdkClientException, CodePipelineException
Updates an action type that was created with any supported integration model, where the action type is to be used by customers of the action type provider. Use a JSON file with the action definition and
UpdateActionTypeto provide the full structure.
This is a convenience which creates an instance of the
UpdateActionTypeRequest.Builderavoiding the need to create one manually viaUpdateActionTypeRequest.builder()- Parameters:
updateActionTypeRequest- AConsumerthat will call methods onUpdateActionTypeRequest.Builderto create a request.- Returns:
- Result of the UpdateActionType operation returned by the service.
- Throws:
RequestFailedException- The request failed because of an unknown error, exception, or failure.ValidationException- The validation was specified in an invalid format.ActionTypeNotFoundException- The specified action type cannot be found.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
updatePipeline
default UpdatePipelineResponse updatePipeline(UpdatePipelineRequest updatePipelineRequest) throws ValidationException, InvalidStageDeclarationException, InvalidActionDeclarationException, InvalidBlockerDeclarationException, InvalidStructureException, LimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure and
UpdatePipelineto provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.- Parameters:
updatePipelineRequest- Represents the input of anUpdatePipelineaction.- Returns:
- Result of the UpdatePipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidStageDeclarationException- The stage declaration was specified in an invalid format.InvalidActionDeclarationException- The action declaration was specified in an invalid format.InvalidBlockerDeclarationException- Reserved for future use.InvalidStructureException- The structure was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
updatePipeline
default UpdatePipelineResponse updatePipeline(Consumer<UpdatePipelineRequest.Builder> updatePipelineRequest) throws ValidationException, InvalidStageDeclarationException, InvalidActionDeclarationException, InvalidBlockerDeclarationException, InvalidStructureException, LimitExceededException, AwsServiceException, SdkClientException, CodePipelineException
Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure and
UpdatePipelineto provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.
This is a convenience which creates an instance of the
UpdatePipelineRequest.Builderavoiding the need to create one manually viaUpdatePipelineRequest.builder()- Parameters:
updatePipelineRequest- AConsumerthat will call methods onUpdatePipelineRequest.Builderto create a request. Represents the input of anUpdatePipelineaction.- Returns:
- Result of the UpdatePipeline operation returned by the service.
- Throws:
ValidationException- The validation was specified in an invalid format.InvalidStageDeclarationException- The stage declaration was specified in an invalid format.InvalidActionDeclarationException- The action declaration was specified in an invalid format.InvalidBlockerDeclarationException- Reserved for future use.InvalidStructureException- The structure was specified in an invalid format.LimitExceededException- The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.SdkException- Base class for all exceptions that can be thrown by the SDK (both service and client). Can be used for catch all scenarios.SdkClientException- If any client side error occurs such as an IO related failure, failure to get credentials, etc.CodePipelineException- Base class for all service exceptions. Unknown exceptions will be thrown as an instance of this type.AwsServiceException- See Also:
- AWS API Documentation
-
create
static CodePipelineClient create()
Create aCodePipelineClientwith the region loaded from theDefaultAwsRegionProviderChainand credentials loaded from theDefaultCredentialsProvider.
-
builder
static CodePipelineClientBuilder builder()
Create a builder that can be used to configure and create aCodePipelineClient.
-
serviceMetadata
static ServiceMetadata serviceMetadata()
-
serviceClientConfiguration
default CodePipelineServiceClientConfiguration serviceClientConfiguration()
- Specified by:
serviceClientConfigurationin interfaceAwsClient- Specified by:
serviceClientConfigurationin interfaceSdkClient
-
-