...
AWS SDK for Go API Reference
We announced the upcoming end-of-support for AWS SDK for Go (v1). We recommend that you migrate to AWS SDK for Go v2. For dates, additional details, and information on how to migrate, please refer to the linked announcement.
import "github.com/aws/aws-sdk-go/service/codepipeline"
Overview
Constants

Overview ▾

Package codepipeline provides the client and types for making API requests to AWS 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 (https://docs.aws.amazon.com/codepipeline/latest/userguide/welcome.html).

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 (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-structure.html).

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

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.

See https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09 for more information on this service.

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

Using the Client

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

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

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

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

The stub package, codepipelineiface, can be used to provide alternative implementations of service clients, such as mocking the client for testing.

Types ▾

type CodePipeline
func New(p client.ConfigProvider, cfgs ...*aws.Config) *CodePipeline
func (c *CodePipeline) AcknowledgeJob(input *AcknowledgeJobInput) (*AcknowledgeJobOutput, error)
func (c *CodePipeline) AcknowledgeJobRequest(input *AcknowledgeJobInput) (req *request.Request, output *AcknowledgeJobOutput)
func (c *CodePipeline) AcknowledgeJobWithContext(ctx aws.Context, input *AcknowledgeJobInput, opts ...request.Option) (*AcknowledgeJobOutput, error)
func (c *CodePipeline) AcknowledgeThirdPartyJob(input *AcknowledgeThirdPartyJobInput) (*AcknowledgeThirdPartyJobOutput, error)
func (c *CodePipeline) AcknowledgeThirdPartyJobRequest(input *AcknowledgeThirdPartyJobInput) (req *request.Request, output *AcknowledgeThirdPartyJobOutput)
func (c *CodePipeline) AcknowledgeThirdPartyJobWithContext(ctx aws.Context, input *AcknowledgeThirdPartyJobInput, opts ...request.Option) (*AcknowledgeThirdPartyJobOutput, error)
func (c *CodePipeline) CreateCustomActionType(input *CreateCustomActionTypeInput) (*CreateCustomActionTypeOutput, error)
func (c *CodePipeline) CreateCustomActionTypeRequest(input *CreateCustomActionTypeInput) (req *request.Request, output *CreateCustomActionTypeOutput)
func (c *CodePipeline) CreateCustomActionTypeWithContext(ctx aws.Context, input *CreateCustomActionTypeInput, opts ...request.Option) (*CreateCustomActionTypeOutput, error)
func (c *CodePipeline) CreatePipeline(input *CreatePipelineInput) (*CreatePipelineOutput, error)
func (c *CodePipeline) CreatePipelineRequest(input *CreatePipelineInput) (req *request.Request, output *CreatePipelineOutput)
func (c *CodePipeline) CreatePipelineWithContext(ctx aws.Context, input *CreatePipelineInput, opts ...request.Option) (*CreatePipelineOutput, error)
func (c *CodePipeline) DeleteCustomActionType(input *DeleteCustomActionTypeInput) (*DeleteCustomActionTypeOutput, error)
func (c *CodePipeline) DeleteCustomActionTypeRequest(input *DeleteCustomActionTypeInput) (req *request.Request, output *DeleteCustomActionTypeOutput)
func (c *CodePipeline) DeleteCustomActionTypeWithContext(ctx aws.Context, input *DeleteCustomActionTypeInput, opts ...request.Option) (*DeleteCustomActionTypeOutput, error)
func (c *CodePipeline) DeletePipeline(input *DeletePipelineInput) (*DeletePipelineOutput, error)
func (c *CodePipeline) DeletePipelineRequest(input *DeletePipelineInput) (req *request.Request, output *DeletePipelineOutput)
func (c *CodePipeline) DeletePipelineWithContext(ctx aws.Context, input *DeletePipelineInput, opts ...request.Option) (*DeletePipelineOutput, error)
func (c *CodePipeline) DeleteWebhook(input *DeleteWebhookInput) (*DeleteWebhookOutput, error)
func (c *CodePipeline) DeleteWebhookRequest(input *DeleteWebhookInput) (req *request.Request, output *DeleteWebhookOutput)
func (c *CodePipeline) DeleteWebhookWithContext(ctx aws.Context, input *DeleteWebhookInput, opts ...request.Option) (*DeleteWebhookOutput, error)
func (c *CodePipeline) DeregisterWebhookWithThirdParty(input *DeregisterWebhookWithThirdPartyInput) (*DeregisterWebhookWithThirdPartyOutput, error)
func (c *CodePipeline) DeregisterWebhookWithThirdPartyRequest(input *DeregisterWebhookWithThirdPartyInput) (req *request.Request, output *DeregisterWebhookWithThirdPartyOutput)
func (c *CodePipeline) DeregisterWebhookWithThirdPartyWithContext(ctx aws.Context, input *DeregisterWebhookWithThirdPartyInput, opts ...request.Option) (*DeregisterWebhookWithThirdPartyOutput, error)
func (c *CodePipeline) DisableStageTransition(input *DisableStageTransitionInput) (*DisableStageTransitionOutput, error)
func (c *CodePipeline) DisableStageTransitionRequest(input *DisableStageTransitionInput) (req *request.Request, output *DisableStageTransitionOutput)
func (c *CodePipeline) DisableStageTransitionWithContext(ctx aws.Context, input *DisableStageTransitionInput, opts ...request.Option) (*DisableStageTransitionOutput, error)
func (c *CodePipeline) EnableStageTransition(input *EnableStageTransitionInput) (*EnableStageTransitionOutput, error)
func (c *CodePipeline) EnableStageTransitionRequest(input *EnableStageTransitionInput) (req *request.Request, output *EnableStageTransitionOutput)
func (c *CodePipeline) EnableStageTransitionWithContext(ctx aws.Context, input *EnableStageTransitionInput, opts ...request.Option) (*EnableStageTransitionOutput, error)
func (c *CodePipeline) GetActionType(input *GetActionTypeInput) (*GetActionTypeOutput, error)
func (c *CodePipeline) GetActionTypeRequest(input *GetActionTypeInput) (req *request.Request, output *GetActionTypeOutput)
func (c *CodePipeline) GetActionTypeWithContext(ctx aws.Context, input *GetActionTypeInput, opts ...request.Option) (*GetActionTypeOutput, error)
func (c *CodePipeline) GetJobDetails(input *GetJobDetailsInput) (*GetJobDetailsOutput, error)
func (c *CodePipeline) GetJobDetailsRequest(input *GetJobDetailsInput) (req *request.Request, output *GetJobDetailsOutput)
func (c *CodePipeline) GetJobDetailsWithContext(ctx aws.Context, input *GetJobDetailsInput, opts ...request.Option) (*GetJobDetailsOutput, error)
func (c *CodePipeline) GetPipeline(input *GetPipelineInput) (*GetPipelineOutput, error)
func (c *CodePipeline) GetPipelineExecution(input *GetPipelineExecutionInput) (*GetPipelineExecutionOutput, error)
func (c *CodePipeline) GetPipelineExecutionRequest(input *GetPipelineExecutionInput) (req *request.Request, output *GetPipelineExecutionOutput)
func (c *CodePipeline) GetPipelineExecutionWithContext(ctx aws.Context, input *GetPipelineExecutionInput, opts ...request.Option) (*GetPipelineExecutionOutput, error)
func (c *CodePipeline) GetPipelineRequest(input *GetPipelineInput) (req *request.Request, output *GetPipelineOutput)
func (c *CodePipeline) GetPipelineState(input *GetPipelineStateInput) (*GetPipelineStateOutput, error)
func (c *CodePipeline) GetPipelineStateRequest(input *GetPipelineStateInput) (req *request.Request, output *GetPipelineStateOutput)
func (c *CodePipeline) GetPipelineStateWithContext(ctx aws.Context, input *GetPipelineStateInput, opts ...request.Option) (*GetPipelineStateOutput, error)
func (c *CodePipeline) GetPipelineWithContext(ctx aws.Context, input *GetPipelineInput, opts ...request.Option) (*GetPipelineOutput, error)
func (c *CodePipeline) GetThirdPartyJobDetails(input *GetThirdPartyJobDetailsInput) (*GetThirdPartyJobDetailsOutput, error)
func (c *CodePipeline) GetThirdPartyJobDetailsRequest(input *GetThirdPartyJobDetailsInput) (req *request.Request, output *GetThirdPartyJobDetailsOutput)
func (c *CodePipeline) GetThirdPartyJobDetailsWithContext(ctx aws.Context, input *GetThirdPartyJobDetailsInput, opts ...request.Option) (*GetThirdPartyJobDetailsOutput, error)
func (c *CodePipeline) ListActionExecutions(input *ListActionExecutionsInput) (*ListActionExecutionsOutput, error)
func (c *CodePipeline) ListActionExecutionsPages(input *ListActionExecutionsInput, fn func(*ListActionExecutionsOutput, bool) bool) error
func (c *CodePipeline) ListActionExecutionsPagesWithContext(ctx aws.Context, input *ListActionExecutionsInput, fn func(*ListActionExecutionsOutput, bool) bool, opts ...request.Option) error
func (c *CodePipeline) ListActionExecutionsRequest(input *ListActionExecutionsInput) (req *request.Request, output *ListActionExecutionsOutput)
func (c *CodePipeline) ListActionExecutionsWithContext(ctx aws.Context, input *ListActionExecutionsInput, opts ...request.Option) (*ListActionExecutionsOutput, error)
func (c *CodePipeline) ListActionTypes(input *ListActionTypesInput) (*ListActionTypesOutput, error)
func (c *CodePipeline) ListActionTypesPages(input *ListActionTypesInput, fn func(*ListActionTypesOutput, bool) bool) error
func (c *CodePipeline) ListActionTypesPagesWithContext(ctx aws.Context, input *ListActionTypesInput, fn func(*ListActionTypesOutput, bool) bool, opts ...request.Option) error
func (c *CodePipeline) ListActionTypesRequest(input *ListActionTypesInput) (req *request.Request, output *ListActionTypesOutput)
func (c *CodePipeline) ListActionTypesWithContext(ctx aws.Context, input *ListActionTypesInput, opts ...request.Option) (*ListActionTypesOutput, error)
func (c *CodePipeline) ListPipelineExecutions(input *ListPipelineExecutionsInput) (*ListPipelineExecutionsOutput, error)
func (c *CodePipeline) ListPipelineExecutionsPages(input *ListPipelineExecutionsInput, fn func(*ListPipelineExecutionsOutput, bool) bool) error
func (c *CodePipeline) ListPipelineExecutionsPagesWithContext(ctx aws.Context, input *ListPipelineExecutionsInput, fn func(*ListPipelineExecutionsOutput, bool) bool, opts ...request.Option) error
func (c *CodePipeline) ListPipelineExecutionsRequest(input *ListPipelineExecutionsInput) (req *request.Request, output *ListPipelineExecutionsOutput)
func (c *CodePipeline) ListPipelineExecutionsWithContext(ctx aws.Context, input *ListPipelineExecutionsInput, opts ...request.Option) (*ListPipelineExecutionsOutput, error)
func (c *CodePipeline) ListPipelines(input *ListPipelinesInput) (*ListPipelinesOutput, error)
func (c *CodePipeline) ListPipelinesPages(input *ListPipelinesInput, fn func(*ListPipelinesOutput, bool) bool) error
func (c *CodePipeline) ListPipelinesPagesWithContext(ctx aws.Context, input *ListPipelinesInput, fn func(*ListPipelinesOutput, bool) bool, opts ...request.Option) error
func (c *CodePipeline) ListPipelinesRequest(input *ListPipelinesInput) (req *request.Request, output *ListPipelinesOutput)
func (c *CodePipeline) ListPipelinesWithContext(ctx aws.Context, input *ListPipelinesInput, opts ...request.Option) (*ListPipelinesOutput, error)
func (c *CodePipeline) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)
func (c *CodePipeline) ListTagsForResourcePages(input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool) error
func (c *CodePipeline) ListTagsForResourcePagesWithContext(ctx aws.Context, input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool, opts ...request.Option) error
func (c *CodePipeline) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)
func (c *CodePipeline) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)
func (c *CodePipeline) ListWebhooks(input *ListWebhooksInput) (*ListWebhooksOutput, error)
func (c *CodePipeline) ListWebhooksPages(input *ListWebhooksInput, fn func(*ListWebhooksOutput, bool) bool) error
func (c *CodePipeline) ListWebhooksPagesWithContext(ctx aws.Context, input *ListWebhooksInput, fn func(*ListWebhooksOutput, bool) bool, opts ...request.Option) error
func (c *CodePipeline) ListWebhooksRequest(input *ListWebhooksInput) (req *request.Request, output *ListWebhooksOutput)
func (c *CodePipeline) ListWebhooksWithContext(ctx aws.Context, input *ListWebhooksInput, opts ...request.Option) (*ListWebhooksOutput, error)
func (c *CodePipeline) PollForJobs(input *PollForJobsInput) (*PollForJobsOutput, error)
func (c *CodePipeline) PollForJobsRequest(input *PollForJobsInput) (req *request.Request, output *PollForJobsOutput)
func (c *CodePipeline) PollForJobsWithContext(ctx aws.Context, input *PollForJobsInput, opts ...request.Option) (*PollForJobsOutput, error)
func (c *CodePipeline) PollForThirdPartyJobs(input *PollForThirdPartyJobsInput) (*PollForThirdPartyJobsOutput, error)
func (c *CodePipeline) PollForThirdPartyJobsRequest(input *PollForThirdPartyJobsInput) (req *request.Request, output *PollForThirdPartyJobsOutput)
func (c *CodePipeline) PollForThirdPartyJobsWithContext(ctx aws.Context, input *PollForThirdPartyJobsInput, opts ...request.Option) (*PollForThirdPartyJobsOutput, error)
func (c *CodePipeline) PutActionRevision(input *PutActionRevisionInput) (*PutActionRevisionOutput, error)
func (c *CodePipeline) PutActionRevisionRequest(input *PutActionRevisionInput) (req *request.Request, output *PutActionRevisionOutput)
func (c *CodePipeline) PutActionRevisionWithContext(ctx aws.Context, input *PutActionRevisionInput, opts ...request.Option) (*PutActionRevisionOutput, error)
func (c *CodePipeline) PutApprovalResult(input *PutApprovalResultInput) (*PutApprovalResultOutput, error)
func (c *CodePipeline) PutApprovalResultRequest(input *PutApprovalResultInput) (req *request.Request, output *PutApprovalResultOutput)
func (c *CodePipeline) PutApprovalResultWithContext(ctx aws.Context, input *PutApprovalResultInput, opts ...request.Option) (*PutApprovalResultOutput, error)
func (c *CodePipeline) PutJobFailureResult(input *PutJobFailureResultInput) (*PutJobFailureResultOutput, error)
func (c *CodePipeline) PutJobFailureResultRequest(input *PutJobFailureResultInput) (req *request.Request, output *PutJobFailureResultOutput)
func (c *CodePipeline) PutJobFailureResultWithContext(ctx aws.Context, input *PutJobFailureResultInput, opts ...request.Option) (*PutJobFailureResultOutput, error)
func (c *CodePipeline) PutJobSuccessResult(input *PutJobSuccessResultInput) (*PutJobSuccessResultOutput, error)
func (c *CodePipeline) PutJobSuccessResultRequest(input *PutJobSuccessResultInput) (req *request.Request, output *PutJobSuccessResultOutput)
func (c *CodePipeline) PutJobSuccessResultWithContext(ctx aws.Context, input *PutJobSuccessResultInput, opts ...request.Option) (*PutJobSuccessResultOutput, error)
func (c *CodePipeline) PutThirdPartyJobFailureResult(input *PutThirdPartyJobFailureResultInput) (*PutThirdPartyJobFailureResultOutput, error)
func (c *CodePipeline) PutThirdPartyJobFailureResultRequest(input *PutThirdPartyJobFailureResultInput) (req *request.Request, output *PutThirdPartyJobFailureResultOutput)
func (c *CodePipeline) PutThirdPartyJobFailureResultWithContext(ctx aws.Context, input *PutThirdPartyJobFailureResultInput, opts ...request.Option) (*PutThirdPartyJobFailureResultOutput, error)
func (c *CodePipeline) PutThirdPartyJobSuccessResult(input *PutThirdPartyJobSuccessResultInput) (*PutThirdPartyJobSuccessResultOutput, error)
func (c *CodePipeline) PutThirdPartyJobSuccessResultRequest(input *PutThirdPartyJobSuccessResultInput) (req *request.Request, output *PutThirdPartyJobSuccessResultOutput)
func (c *CodePipeline) PutThirdPartyJobSuccessResultWithContext(ctx aws.Context, input *PutThirdPartyJobSuccessResultInput, opts ...request.Option) (*PutThirdPartyJobSuccessResultOutput, error)
func (c *CodePipeline) PutWebhook(input *PutWebhookInput) (*PutWebhookOutput, error)
func (c *CodePipeline) PutWebhookRequest(input *PutWebhookInput) (req *request.Request, output *PutWebhookOutput)
func (c *CodePipeline) PutWebhookWithContext(ctx aws.Context, input *PutWebhookInput, opts ...request.Option) (*PutWebhookOutput, error)
func (c *CodePipeline) RegisterWebhookWithThirdParty(input *RegisterWebhookWithThirdPartyInput) (*RegisterWebhookWithThirdPartyOutput, error)
func (c *CodePipeline) RegisterWebhookWithThirdPartyRequest(input *RegisterWebhookWithThirdPartyInput) (req *request.Request, output *RegisterWebhookWithThirdPartyOutput)
func (c *CodePipeline) RegisterWebhookWithThirdPartyWithContext(ctx aws.Context, input *RegisterWebhookWithThirdPartyInput, opts ...request.Option) (*RegisterWebhookWithThirdPartyOutput, error)
func (c *CodePipeline) RetryStageExecution(input *RetryStageExecutionInput) (*RetryStageExecutionOutput, error)
func (c *CodePipeline) RetryStageExecutionRequest(input *RetryStageExecutionInput) (req *request.Request, output *RetryStageExecutionOutput)
func (c *CodePipeline) RetryStageExecutionWithContext(ctx aws.Context, input *RetryStageExecutionInput, opts ...request.Option) (*RetryStageExecutionOutput, error)
func (c *CodePipeline) StartPipelineExecution(input *StartPipelineExecutionInput) (*StartPipelineExecutionOutput, error)
func (c *CodePipeline) StartPipelineExecutionRequest(input *StartPipelineExecutionInput) (req *request.Request, output *StartPipelineExecutionOutput)
func (c *CodePipeline) StartPipelineExecutionWithContext(ctx aws.Context, input *StartPipelineExecutionInput, opts ...request.Option) (*StartPipelineExecutionOutput, error)
func (c *CodePipeline) StopPipelineExecution(input *StopPipelineExecutionInput) (*StopPipelineExecutionOutput, error)
func (c *CodePipeline) StopPipelineExecutionRequest(input *StopPipelineExecutionInput) (req *request.Request, output *StopPipelineExecutionOutput)
func (c *CodePipeline) StopPipelineExecutionWithContext(ctx aws.Context, input *StopPipelineExecutionInput, opts ...request.Option) (*StopPipelineExecutionOutput, error)
func (c *CodePipeline) TagResource(input *TagResourceInput) (*TagResourceOutput, error)
func (c *CodePipeline) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)
func (c *CodePipeline) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)
func (c *CodePipeline) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)
func (c *CodePipeline) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)
func (c *CodePipeline) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)
func (c *CodePipeline) UpdateActionType(input *UpdateActionTypeInput) (*UpdateActionTypeOutput, error)
func (c *CodePipeline) UpdateActionTypeRequest(input *UpdateActionTypeInput) (req *request.Request, output *UpdateActionTypeOutput)
func (c *CodePipeline) UpdateActionTypeWithContext(ctx aws.Context, input *UpdateActionTypeInput, opts ...request.Option) (*UpdateActionTypeOutput, error)
func (c *CodePipeline) UpdatePipeline(input *UpdatePipelineInput) (*UpdatePipelineOutput, error)
func (c *CodePipeline) UpdatePipelineRequest(input *UpdatePipelineInput) (req *request.Request, output *UpdatePipelineOutput)
func (c *CodePipeline) UpdatePipelineWithContext(ctx aws.Context, input *UpdatePipelineInput, opts ...request.Option) (*UpdatePipelineOutput, error)
func ActionCategory_Values() []string
func ActionConfigurationPropertyType_Values() []string
func ActionExecutionStatus_Values() []string
func ActionOwner_Values() []string
func ApprovalStatus_Values() []string
func ArtifactLocationType_Values() []string
func ArtifactStoreType_Values() []string
func BlockerType_Values() []string
func EncryptionKeyType_Values() []string
func ExecutionMode_Values() []string
func ExecutorType_Values() []string
func FailureType_Values() []string
func GitPullRequestEventType_Values() []string
func JobStatus_Values() []string
func PipelineExecutionStatus_Values() []string
func PipelineTriggerProviderType_Values() []string
func PipelineType_Values() []string
func SourceRevisionType_Values() []string
func StageExecutionStatus_Values() []string
func StageRetryMode_Values() []string
func StageTransitionType_Values() []string
func StartTimeRange_Values() []string
func TriggerType_Values() []string
func WebhookAuthenticationType_Values() []string
type AWSSessionCredentials
type AcknowledgeJobInput
type AcknowledgeJobOutput
type AcknowledgeThirdPartyJobInput
type AcknowledgeThirdPartyJobOutput
type ActionConfiguration
type ActionConfigurationProperty
type ActionContext
type ActionDeclaration
type ActionExecution
type ActionExecutionDetail
type ActionExecutionFilter
type ActionExecutionInput
type ActionExecutionOutput
type ActionExecutionResult
type ActionNotFoundException
type ActionRevision
type ActionState
type ActionType
type ActionTypeArtifactDetails
type ActionTypeDeclaration
type ActionTypeExecutor
type ActionTypeId
type ActionTypeIdentifier
type ActionTypeNotFoundException
type ActionTypePermissions
type ActionTypeProperty
type ActionTypeSettings
type ActionTypeUrls
type ApprovalAlreadyCompletedException
type ApprovalResult
type Artifact
type ArtifactDetail
type ArtifactDetails
type ArtifactLocation
type ArtifactRevision
type ArtifactStore
type BlockerDeclaration
type ConcurrentModificationException
type ConcurrentPipelineExecutionsLimitExceededException
type ConflictException
type CreateCustomActionTypeInput
type CreateCustomActionTypeOutput
type CreatePipelineInput
type CreatePipelineOutput
type CurrentRevision
type DeleteCustomActionTypeInput
type DeleteCustomActionTypeOutput
type DeletePipelineInput
type DeletePipelineOutput
type DeleteWebhookInput
type DeleteWebhookOutput
type DeregisterWebhookWithThirdPartyInput
type DeregisterWebhookWithThirdPartyOutput
type DisableStageTransitionInput
type DisableStageTransitionOutput
type DuplicatedStopRequestException
type EnableStageTransitionInput
type EnableStageTransitionOutput
type EncryptionKey
type ErrorDetails
type ExecutionDetails
type ExecutionTrigger
type ExecutorConfiguration
type FailureDetails
type GetActionTypeInput
type GetActionTypeOutput
type GetJobDetailsInput
type GetJobDetailsOutput
type GetPipelineExecutionInput
type GetPipelineExecutionOutput
type GetPipelineInput
type GetPipelineOutput
type GetPipelineStateInput
type GetPipelineStateOutput
type GetThirdPartyJobDetailsInput
type GetThirdPartyJobDetailsOutput
type GitBranchFilterCriteria
type GitConfiguration
type GitFilePathFilterCriteria
type GitPullRequestFilter
type GitPushFilter
type GitTagFilterCriteria
type InputArtifact
type InvalidActionDeclarationException
type InvalidApprovalTokenException
type InvalidArnException
type InvalidBlockerDeclarationException
type InvalidClientTokenException
type InvalidJobException
type InvalidJobStateException
type InvalidNextTokenException
type InvalidNonceException
type InvalidStageDeclarationException
type InvalidStructureException
type InvalidTagsException
type InvalidWebhookAuthenticationParametersException
type InvalidWebhookFilterPatternException
type Job
type JobData
type JobDetails
type JobNotFoundException
type JobWorkerExecutorConfiguration
type LambdaExecutorConfiguration
type LatestInPipelineExecutionFilter
type LimitExceededException
type ListActionExecutionsInput
type ListActionExecutionsOutput
type ListActionTypesInput
type ListActionTypesOutput
type ListPipelineExecutionsInput
type ListPipelineExecutionsOutput
type ListPipelinesInput
type ListPipelinesOutput
type ListTagsForResourceInput
type ListTagsForResourceOutput
type ListWebhookItem
type ListWebhooksInput
type ListWebhooksOutput
type NotLatestPipelineExecutionException
type OutputArtifact
type OutputVariablesSizeExceededException
type PipelineContext
type PipelineDeclaration
type PipelineExecution
type PipelineExecutionNotFoundException
type PipelineExecutionNotStoppableException
type PipelineExecutionSummary
type PipelineMetadata
type PipelineNameInUseException
type PipelineNotFoundException
type PipelineSummary
type PipelineTriggerDeclaration
type PipelineVariable
type PipelineVariableDeclaration
type PipelineVersionNotFoundException
type PollForJobsInput
type PollForJobsOutput
type PollForThirdPartyJobsInput
type PollForThirdPartyJobsOutput
type PutActionRevisionInput
type PutActionRevisionOutput
type PutApprovalResultInput
type PutApprovalResultOutput
type PutJobFailureResultInput
type PutJobFailureResultOutput
type PutJobSuccessResultInput
type PutJobSuccessResultOutput
type PutThirdPartyJobFailureResultInput
type PutThirdPartyJobFailureResultOutput
type PutThirdPartyJobSuccessResultInput
type PutThirdPartyJobSuccessResultOutput
type PutWebhookInput
type PutWebhookOutput
type RegisterWebhookWithThirdPartyInput
type RegisterWebhookWithThirdPartyOutput
type RequestFailedException
type ResolvedPipelineVariable
type ResourceNotFoundException
type RetryStageExecutionInput
type RetryStageExecutionOutput
type S3ArtifactLocation
type S3Location
type SourceRevision
type SourceRevisionOverride
type StageContext
type StageDeclaration
type StageExecution
type StageNotFoundException
type StageNotRetryableException
type StageState
type StartPipelineExecutionInput
type StartPipelineExecutionOutput
type StopExecutionTrigger
type StopPipelineExecutionInput
type StopPipelineExecutionOutput
type Tag
type TagResourceInput
type TagResourceOutput
type ThirdPartyJob
type ThirdPartyJobData
type ThirdPartyJobDetails
type TooManyTagsException
type TransitionState
type UntagResourceInput
type UntagResourceOutput
type UpdateActionTypeInput
type UpdateActionTypeOutput
type UpdatePipelineInput
type UpdatePipelineOutput
type ValidationException
type WebhookAuthConfiguration
type WebhookDefinition
type WebhookFilterRule
type WebhookNotFoundException

Constants ▾

const (
    // ActionCategorySource is a ActionCategory enum value
    ActionCategorySource = "Source"

    // ActionCategoryBuild is a ActionCategory enum value
    ActionCategoryBuild = "Build"

    // ActionCategoryDeploy is a ActionCategory enum value
    ActionCategoryDeploy = "Deploy"

    // ActionCategoryTest is a ActionCategory enum value
    ActionCategoryTest = "Test"

    // ActionCategoryInvoke is a ActionCategory enum value
    ActionCategoryInvoke = "Invoke"

    // ActionCategoryApproval is a ActionCategory enum value
    ActionCategoryApproval = "Approval"
)
const (
    // ActionConfigurationPropertyTypeString is a ActionConfigurationPropertyType enum value
    ActionConfigurationPropertyTypeString = "String"

    // ActionConfigurationPropertyTypeNumber is a ActionConfigurationPropertyType enum value
    ActionConfigurationPropertyTypeNumber = "Number"

    // ActionConfigurationPropertyTypeBoolean is a ActionConfigurationPropertyType enum value
    ActionConfigurationPropertyTypeBoolean = "Boolean"
)
const (
    // ActionExecutionStatusInProgress is a ActionExecutionStatus enum value
    ActionExecutionStatusInProgress = "InProgress"

    // ActionExecutionStatusAbandoned is a ActionExecutionStatus enum value
    ActionExecutionStatusAbandoned = "Abandoned"

    // ActionExecutionStatusSucceeded is a ActionExecutionStatus enum value
    ActionExecutionStatusSucceeded = "Succeeded"

    // ActionExecutionStatusFailed is a ActionExecutionStatus enum value
    ActionExecutionStatusFailed = "Failed"
)
const (
    // ActionOwnerAws is a ActionOwner enum value
    ActionOwnerAws = "AWS"

    // ActionOwnerThirdParty is a ActionOwner enum value
    ActionOwnerThirdParty = "ThirdParty"

    // ActionOwnerCustom is a ActionOwner enum value
    ActionOwnerCustom = "Custom"
)
const (
    // ApprovalStatusApproved is a ApprovalStatus enum value
    ApprovalStatusApproved = "Approved"

    // ApprovalStatusRejected is a ApprovalStatus enum value
    ApprovalStatusRejected = "Rejected"
)
const (
    // ExecutionModeQueued is a ExecutionMode enum value
    ExecutionModeQueued = "QUEUED"

    // ExecutionModeSuperseded is a ExecutionMode enum value
    ExecutionModeSuperseded = "SUPERSEDED"

    // ExecutionModeParallel is a ExecutionMode enum value
    ExecutionModeParallel = "PARALLEL"
)
const (
    // ExecutorTypeJobWorker is a ExecutorType enum value
    ExecutorTypeJobWorker = "JobWorker"

    // ExecutorTypeLambda is a ExecutorType enum value
    ExecutorTypeLambda = "Lambda"
)
const (
    // FailureTypeJobFailed is a FailureType enum value
    FailureTypeJobFailed = "JobFailed"

    // FailureTypeConfigurationError is a FailureType enum value
    FailureTypeConfigurationError = "ConfigurationError"

    // FailureTypePermissionError is a FailureType enum value
    FailureTypePermissionError = "PermissionError"

    // FailureTypeRevisionOutOfSync is a FailureType enum value
    FailureTypeRevisionOutOfSync = "RevisionOutOfSync"

    // FailureTypeRevisionUnavailable is a FailureType enum value
    FailureTypeRevisionUnavailable = "RevisionUnavailable"

    // FailureTypeSystemUnavailable is a FailureType enum value
    FailureTypeSystemUnavailable = "SystemUnavailable"
)
const (
    // GitPullRequestEventTypeOpen is a GitPullRequestEventType enum value
    GitPullRequestEventTypeOpen = "OPEN"

    // GitPullRequestEventTypeUpdated is a GitPullRequestEventType enum value
    GitPullRequestEventTypeUpdated = "UPDATED"

    // GitPullRequestEventTypeClosed is a GitPullRequestEventType enum value
    GitPullRequestEventTypeClosed = "CLOSED"
)
const (
    // JobStatusCreated is a JobStatus enum value
    JobStatusCreated = "Created"

    // JobStatusQueued is a JobStatus enum value
    JobStatusQueued = "Queued"

    // JobStatusDispatched is a JobStatus enum value
    JobStatusDispatched = "Dispatched"

    // JobStatusInProgress is a JobStatus enum value
    JobStatusInProgress = "InProgress"

    // JobStatusTimedOut is a JobStatus enum value
    JobStatusTimedOut = "TimedOut"

    // JobStatusSucceeded is a JobStatus enum value
    JobStatusSucceeded = "Succeeded"

    // JobStatusFailed is a JobStatus enum value
    JobStatusFailed = "Failed"
)
const (
    // PipelineExecutionStatusCancelled is a PipelineExecutionStatus enum value
    PipelineExecutionStatusCancelled = "Cancelled"

    // PipelineExecutionStatusInProgress is a PipelineExecutionStatus enum value
    PipelineExecutionStatusInProgress = "InProgress"

    // PipelineExecutionStatusStopped is a PipelineExecutionStatus enum value
    PipelineExecutionStatusStopped = "Stopped"

    // PipelineExecutionStatusStopping is a PipelineExecutionStatus enum value
    PipelineExecutionStatusStopping = "Stopping"

    // PipelineExecutionStatusSucceeded is a PipelineExecutionStatus enum value
    PipelineExecutionStatusSucceeded = "Succeeded"

    // PipelineExecutionStatusSuperseded is a PipelineExecutionStatus enum value
    PipelineExecutionStatusSuperseded = "Superseded"

    // PipelineExecutionStatusFailed is a PipelineExecutionStatus enum value
    PipelineExecutionStatusFailed = "Failed"
)
const (
    // PipelineTypeV1 is a PipelineType enum value
    PipelineTypeV1 = "V1"

    // PipelineTypeV2 is a PipelineType enum value
    PipelineTypeV2 = "V2"
)
const (
    // SourceRevisionTypeCommitId is a SourceRevisionType enum value
    SourceRevisionTypeCommitId = "COMMIT_ID"

    // SourceRevisionTypeImageDigest is a SourceRevisionType enum value
    SourceRevisionTypeImageDigest = "IMAGE_DIGEST"

    // SourceRevisionTypeS3ObjectVersionId is a SourceRevisionType enum value
    SourceRevisionTypeS3ObjectVersionId = "S3_OBJECT_VERSION_ID"
)
const (
    // StageExecutionStatusCancelled is a StageExecutionStatus enum value
    StageExecutionStatusCancelled = "Cancelled"

    // StageExecutionStatusInProgress is a StageExecutionStatus enum value
    StageExecutionStatusInProgress = "InProgress"

    // StageExecutionStatusFailed is a StageExecutionStatus enum value
    StageExecutionStatusFailed = "Failed"

    // StageExecutionStatusStopped is a StageExecutionStatus enum value
    StageExecutionStatusStopped = "Stopped"

    // StageExecutionStatusStopping is a StageExecutionStatus enum value
    StageExecutionStatusStopping = "Stopping"

    // StageExecutionStatusSucceeded is a StageExecutionStatus enum value
    StageExecutionStatusSucceeded = "Succeeded"
)
const (
    // StageRetryModeFailedActions is a StageRetryMode enum value
    StageRetryModeFailedActions = "FAILED_ACTIONS"

    // StageRetryModeAllActions is a StageRetryMode enum value
    StageRetryModeAllActions = "ALL_ACTIONS"
)
const (
    // StageTransitionTypeInbound is a StageTransitionType enum value
    StageTransitionTypeInbound = "Inbound"

    // StageTransitionTypeOutbound is a StageTransitionType enum value
    StageTransitionTypeOutbound = "Outbound"
)
const (
    // StartTimeRangeLatest is a StartTimeRange enum value
    StartTimeRangeLatest = "Latest"

    // StartTimeRangeAll is a StartTimeRange enum value
    StartTimeRangeAll = "All"
)
const (
    // TriggerTypeCreatePipeline is a TriggerType enum value
    TriggerTypeCreatePipeline = "CreatePipeline"

    // TriggerTypeStartPipelineExecution is a TriggerType enum value
    TriggerTypeStartPipelineExecution = "StartPipelineExecution"

    // TriggerTypePollForSourceChanges is a TriggerType enum value
    TriggerTypePollForSourceChanges = "PollForSourceChanges"

    // TriggerTypeWebhook is a TriggerType enum value
    TriggerTypeWebhook = "Webhook"

    // TriggerTypeCloudWatchEvent is a TriggerType enum value
    TriggerTypeCloudWatchEvent = "CloudWatchEvent"

    // TriggerTypePutActionRevision is a TriggerType enum value
    TriggerTypePutActionRevision = "PutActionRevision"

    // TriggerTypeWebhookV2 is a TriggerType enum value
    TriggerTypeWebhookV2 = "WebhookV2"
)
const (
    // WebhookAuthenticationTypeGithubHmac is a WebhookAuthenticationType enum value
    WebhookAuthenticationTypeGithubHmac = "GITHUB_HMAC"

    // WebhookAuthenticationTypeIp is a WebhookAuthenticationType enum value
    WebhookAuthenticationTypeIp = "IP"

    // WebhookAuthenticationTypeUnauthenticated is a WebhookAuthenticationType enum value
    WebhookAuthenticationTypeUnauthenticated = "UNAUTHENTICATED"
)
const (

    // ErrCodeActionNotFoundException for service response error code
    // "ActionNotFoundException".
    //
    // The specified action cannot be found.
    ErrCodeActionNotFoundException = "ActionNotFoundException"

    // ErrCodeActionTypeNotFoundException for service response error code
    // "ActionTypeNotFoundException".
    //
    // The specified action type cannot be found.
    ErrCodeActionTypeNotFoundException = "ActionTypeNotFoundException"

    // ErrCodeApprovalAlreadyCompletedException for service response error code
    // "ApprovalAlreadyCompletedException".
    //
    // The approval action has already been approved or rejected.
    ErrCodeApprovalAlreadyCompletedException = "ApprovalAlreadyCompletedException"

    // ErrCodeConcurrentModificationException for service response error code
    // "ConcurrentModificationException".
    //
    // Unable to modify the tag due to a simultaneous update request.
    ErrCodeConcurrentModificationException = "ConcurrentModificationException"

    // ErrCodeConcurrentPipelineExecutionsLimitExceededException for service response error code
    // "ConcurrentPipelineExecutionsLimitExceededException".
    //
    // The pipeline has reached the limit for concurrent pipeline executions.
    ErrCodeConcurrentPipelineExecutionsLimitExceededException = "ConcurrentPipelineExecutionsLimitExceededException"

    // ErrCodeConflictException for service response error code
    // "ConflictException".
    //
    // Your request cannot be handled because the pipeline is busy handling ongoing
    // activities. Try again later.
    ErrCodeConflictException = "ConflictException"

    // ErrCodeDuplicatedStopRequestException for service response error code
    // "DuplicatedStopRequestException".
    //
    // The pipeline execution is already in a Stopping state. 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.
    ErrCodeDuplicatedStopRequestException = "DuplicatedStopRequestException"

    // ErrCodeInvalidActionDeclarationException for service response error code
    // "InvalidActionDeclarationException".
    //
    // The action declaration was specified in an invalid format.
    ErrCodeInvalidActionDeclarationException = "InvalidActionDeclarationException"

    // ErrCodeInvalidApprovalTokenException for service response error code
    // "InvalidApprovalTokenException".
    //
    // The approval request already received a response or has expired.
    ErrCodeInvalidApprovalTokenException = "InvalidApprovalTokenException"

    // ErrCodeInvalidArnException for service response error code
    // "InvalidArnException".
    //
    // The specified resource ARN is invalid.
    ErrCodeInvalidArnException = "InvalidArnException"

    // ErrCodeInvalidBlockerDeclarationException for service response error code
    // "InvalidBlockerDeclarationException".
    //
    // Reserved for future use.
    ErrCodeInvalidBlockerDeclarationException = "InvalidBlockerDeclarationException"

    // ErrCodeInvalidClientTokenException for service response error code
    // "InvalidClientTokenException".
    //
    // The client token was specified in an invalid format
    ErrCodeInvalidClientTokenException = "InvalidClientTokenException"

    // ErrCodeInvalidJobException for service response error code
    // "InvalidJobException".
    //
    // The job was specified in an invalid format or cannot be found.
    ErrCodeInvalidJobException = "InvalidJobException"

    // ErrCodeInvalidJobStateException for service response error code
    // "InvalidJobStateException".
    //
    // The job state was specified in an invalid format.
    ErrCodeInvalidJobStateException = "InvalidJobStateException"

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

    // ErrCodeInvalidNonceException for service response error code
    // "InvalidNonceException".
    //
    // The nonce was specified in an invalid format.
    ErrCodeInvalidNonceException = "InvalidNonceException"

    // ErrCodeInvalidStageDeclarationException for service response error code
    // "InvalidStageDeclarationException".
    //
    // The stage declaration was specified in an invalid format.
    ErrCodeInvalidStageDeclarationException = "InvalidStageDeclarationException"

    // ErrCodeInvalidStructureException for service response error code
    // "InvalidStructureException".
    //
    // The structure was specified in an invalid format.
    ErrCodeInvalidStructureException = "InvalidStructureException"

    // ErrCodeInvalidTagsException for service response error code
    // "InvalidTagsException".
    //
    // The specified resource tags are invalid.
    ErrCodeInvalidTagsException = "InvalidTagsException"

    // ErrCodeInvalidWebhookAuthenticationParametersException for service response error code
    // "InvalidWebhookAuthenticationParametersException".
    //
    // The specified authentication type is in an invalid format.
    ErrCodeInvalidWebhookAuthenticationParametersException = "InvalidWebhookAuthenticationParametersException"

    // ErrCodeInvalidWebhookFilterPatternException for service response error code
    // "InvalidWebhookFilterPatternException".
    //
    // The specified event filter rule is in an invalid format.
    ErrCodeInvalidWebhookFilterPatternException = "InvalidWebhookFilterPatternException"

    // ErrCodeJobNotFoundException for service response error code
    // "JobNotFoundException".
    //
    // The job was specified in an invalid format or cannot be found.
    ErrCodeJobNotFoundException = "JobNotFoundException"

    // ErrCodeLimitExceededException for service response error code
    // "LimitExceededException".
    //
    // The number of pipelines associated with the Amazon Web Services account has
    // exceeded the limit allowed for the account.
    ErrCodeLimitExceededException = "LimitExceededException"

    // ErrCodeNotLatestPipelineExecutionException for service response error code
    // "NotLatestPipelineExecutionException".
    //
    // The stage has failed in a later run of the pipeline and the pipelineExecutionId
    // associated with the request is out of date.
    ErrCodeNotLatestPipelineExecutionException = "NotLatestPipelineExecutionException"

    // ErrCodeOutputVariablesSizeExceededException for service response error code
    // "OutputVariablesSizeExceededException".
    //
    // Exceeded the total size limit for all variables in the pipeline.
    ErrCodeOutputVariablesSizeExceededException = "OutputVariablesSizeExceededException"

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

    // ErrCodePipelineExecutionNotStoppableException for service response error code
    // "PipelineExecutionNotStoppableException".
    //
    // Unable to stop the pipeline execution. The execution might already be in
    // a Stopped state, or it might no longer be in progress.
    ErrCodePipelineExecutionNotStoppableException = "PipelineExecutionNotStoppableException"

    // ErrCodePipelineNameInUseException for service response error code
    // "PipelineNameInUseException".
    //
    // The specified pipeline name is already in use.
    ErrCodePipelineNameInUseException = "PipelineNameInUseException"

    // ErrCodePipelineNotFoundException for service response error code
    // "PipelineNotFoundException".
    //
    // The pipeline was specified in an invalid format or cannot be found.
    ErrCodePipelineNotFoundException = "PipelineNotFoundException"

    // ErrCodePipelineVersionNotFoundException for service response error code
    // "PipelineVersionNotFoundException".
    //
    // The pipeline version was specified in an invalid format or cannot be found.
    ErrCodePipelineVersionNotFoundException = "PipelineVersionNotFoundException"

    // ErrCodeRequestFailedException for service response error code
    // "RequestFailedException".
    //
    // The request failed because of an unknown error, exception, or failure.
    ErrCodeRequestFailedException = "RequestFailedException"

    // ErrCodeResourceNotFoundException for service response error code
    // "ResourceNotFoundException".
    //
    // The resource was specified in an invalid format.
    ErrCodeResourceNotFoundException = "ResourceNotFoundException"

    // ErrCodeStageNotFoundException for service response error code
    // "StageNotFoundException".
    //
    // The stage was specified in an invalid format or cannot be found.
    ErrCodeStageNotFoundException = "StageNotFoundException"

    // ErrCodeStageNotRetryableException for service response error code
    // "StageNotRetryableException".
    //
    // Unable to retry. The pipeline structure or stage state might have changed
    // while actions awaited retry, or the stage contains no failed actions.
    ErrCodeStageNotRetryableException = "StageNotRetryableException"

    // ErrCodeTooManyTagsException for service response error code
    // "TooManyTagsException".
    //
    // The tags limit for a resource has been exceeded.
    ErrCodeTooManyTagsException = "TooManyTagsException"

    // ErrCodeValidationException for service response error code
    // "ValidationException".
    //
    // The validation was specified in an invalid format.
    ErrCodeValidationException = "ValidationException"

    // ErrCodeWebhookNotFoundException for service response error code
    // "WebhookNotFoundException".
    //
    // The specified webhook was entered in an invalid format or cannot be found.
    ErrCodeWebhookNotFoundException = "WebhookNotFoundException"
)
const (
    ServiceName = "codepipeline" // Name of service.
    EndpointsID = ServiceName    // ID to lookup a service endpoint with.
    ServiceID   = "CodePipeline" // ServiceID is a unique identifier of a specific service.
)

Service information constants

const (
    // ArtifactLocationTypeS3 is a ArtifactLocationType enum value
    ArtifactLocationTypeS3 = "S3"
)
const (
    // ArtifactStoreTypeS3 is a ArtifactStoreType enum value
    ArtifactStoreTypeS3 = "S3"
)
const (
    // BlockerTypeSchedule is a BlockerType enum value
    BlockerTypeSchedule = "Schedule"
)
const (
    // EncryptionKeyTypeKms is a EncryptionKeyType enum value
    EncryptionKeyTypeKms = "KMS"
)
const (
    // PipelineTriggerProviderTypeCodeStarSourceConnection is a PipelineTriggerProviderType enum value
    PipelineTriggerProviderTypeCodeStarSourceConnection = "CodeStarSourceConnection"
)

func ActionCategory_Values

func ActionCategory_Values() []string

ActionCategory_Values returns all elements of the ActionCategory enum

func ActionConfigurationPropertyType_Values

func ActionConfigurationPropertyType_Values() []string

ActionConfigurationPropertyType_Values returns all elements of the ActionConfigurationPropertyType enum

func ActionExecutionStatus_Values

func ActionExecutionStatus_Values() []string

ActionExecutionStatus_Values returns all elements of the ActionExecutionStatus enum

func ActionOwner_Values

func ActionOwner_Values() []string

ActionOwner_Values returns all elements of the ActionOwner enum

func ApprovalStatus_Values

func ApprovalStatus_Values() []string

ApprovalStatus_Values returns all elements of the ApprovalStatus enum

func ArtifactLocationType_Values

func ArtifactLocationType_Values() []string

ArtifactLocationType_Values returns all elements of the ArtifactLocationType enum

func ArtifactStoreType_Values

func ArtifactStoreType_Values() []string

ArtifactStoreType_Values returns all elements of the ArtifactStoreType enum

func BlockerType_Values

func BlockerType_Values() []string

BlockerType_Values returns all elements of the BlockerType enum

func EncryptionKeyType_Values

func EncryptionKeyType_Values() []string

EncryptionKeyType_Values returns all elements of the EncryptionKeyType enum

func ExecutionMode_Values

func ExecutionMode_Values() []string

ExecutionMode_Values returns all elements of the ExecutionMode enum

func ExecutorType_Values

func ExecutorType_Values() []string

ExecutorType_Values returns all elements of the ExecutorType enum

func FailureType_Values

func FailureType_Values() []string

FailureType_Values returns all elements of the FailureType enum

func GitPullRequestEventType_Values

func GitPullRequestEventType_Values() []string

GitPullRequestEventType_Values returns all elements of the GitPullRequestEventType enum

func JobStatus_Values

func JobStatus_Values() []string

JobStatus_Values returns all elements of the JobStatus enum

func PipelineExecutionStatus_Values

func PipelineExecutionStatus_Values() []string

PipelineExecutionStatus_Values returns all elements of the PipelineExecutionStatus enum

func PipelineTriggerProviderType_Values

func PipelineTriggerProviderType_Values() []string

PipelineTriggerProviderType_Values returns all elements of the PipelineTriggerProviderType enum

func PipelineType_Values

func PipelineType_Values() []string

PipelineType_Values returns all elements of the PipelineType enum

func SourceRevisionType_Values

func SourceRevisionType_Values() []string

SourceRevisionType_Values returns all elements of the SourceRevisionType enum

func StageExecutionStatus_Values

func StageExecutionStatus_Values() []string

StageExecutionStatus_Values returns all elements of the StageExecutionStatus enum

func StageRetryMode_Values

func StageRetryMode_Values() []string

StageRetryMode_Values returns all elements of the StageRetryMode enum

func StageTransitionType_Values

func StageTransitionType_Values() []string

StageTransitionType_Values returns all elements of the StageTransitionType enum

func StartTimeRange_Values

func StartTimeRange_Values() []string

StartTimeRange_Values returns all elements of the StartTimeRange enum

func TriggerType_Values

func TriggerType_Values() []string

TriggerType_Values returns all elements of the TriggerType enum

func WebhookAuthenticationType_Values

func WebhookAuthenticationType_Values() []string

WebhookAuthenticationType_Values returns all elements of the WebhookAuthenticationType enum

type AWSSessionCredentials

type AWSSessionCredentials struct {

    // The access key for the session.
    //
    // AccessKeyId is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by AWSSessionCredentials's
    // String and GoString methods.
    //
    // AccessKeyId is a required field
    AccessKeyId *string `locationName:"accessKeyId" type:"string" required:"true" sensitive:"true"`

    // The secret access key for the session.
    //
    // SecretAccessKey is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by AWSSessionCredentials's
    // String and GoString methods.
    //
    // SecretAccessKey is a required field
    SecretAccessKey *string `locationName:"secretAccessKey" type:"string" required:"true" sensitive:"true"`

    // The token for the session.
    //
    // SessionToken is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by AWSSessionCredentials's
    // String and GoString methods.
    //
    // SessionToken is a required field
    SessionToken *string `locationName:"sessionToken" type:"string" required:"true" sensitive:"true"`
    // contains filtered or unexported fields
}

Represents an Amazon Web Services session credentials object. These credentials are temporary credentials that are issued by Amazon Web Services Secure Token Service (STS). They can be used to access input and output artifacts in the S3 bucket used to store artifact for the pipeline in CodePipeline.

func (AWSSessionCredentials) GoString

func (s AWSSessionCredentials) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AWSSessionCredentials) SetAccessKeyId

func (s *AWSSessionCredentials) SetAccessKeyId(v string) *AWSSessionCredentials

SetAccessKeyId sets the AccessKeyId field's value.

func (*AWSSessionCredentials) SetSecretAccessKey

func (s *AWSSessionCredentials) SetSecretAccessKey(v string) *AWSSessionCredentials

SetSecretAccessKey sets the SecretAccessKey field's value.

func (*AWSSessionCredentials) SetSessionToken

func (s *AWSSessionCredentials) SetSessionToken(v string) *AWSSessionCredentials

SetSessionToken sets the SessionToken field's value.

func (AWSSessionCredentials) String

func (s AWSSessionCredentials) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AcknowledgeJobInput

type AcknowledgeJobInput struct {

    // The unique system-generated ID of the job for which you want to confirm receipt.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" type:"string" required:"true"`

    // A system-generated random number that CodePipeline uses to ensure that the
    // job is being worked on by only one job worker. Get this number from the response
    // of the PollForJobs request that returned this job.
    //
    // Nonce is a required field
    Nonce *string `locationName:"nonce" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of an AcknowledgeJob action.

func (AcknowledgeJobInput) GoString

func (s AcknowledgeJobInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AcknowledgeJobInput) SetJobId

func (s *AcknowledgeJobInput) SetJobId(v string) *AcknowledgeJobInput

SetJobId sets the JobId field's value.

func (*AcknowledgeJobInput) SetNonce

func (s *AcknowledgeJobInput) SetNonce(v string) *AcknowledgeJobInput

SetNonce sets the Nonce field's value.

func (AcknowledgeJobInput) String

func (s AcknowledgeJobInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AcknowledgeJobInput) Validate

func (s *AcknowledgeJobInput) Validate() error

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

type AcknowledgeJobOutput

type AcknowledgeJobOutput struct {

    // Whether the job worker has received the specified job.
    Status *string `locationName:"status" type:"string" enum:"JobStatus"`
    // contains filtered or unexported fields
}

Represents the output of an AcknowledgeJob action.

func (AcknowledgeJobOutput) GoString

func (s AcknowledgeJobOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AcknowledgeJobOutput) SetStatus

func (s *AcknowledgeJobOutput) SetStatus(v string) *AcknowledgeJobOutput

SetStatus sets the Status field's value.

func (AcknowledgeJobOutput) String

func (s AcknowledgeJobOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type AcknowledgeThirdPartyJobInput

type AcknowledgeThirdPartyJobInput struct {

    // The clientToken portion of the clientId and clientToken pair used to verify
    // that the calling entity is allowed access to the job and its details.
    //
    // ClientToken is a required field
    ClientToken *string `locationName:"clientToken" min:"1" type:"string" required:"true"`

    // The unique system-generated ID of the job.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`

    // A system-generated random number that CodePipeline uses to ensure that the
    // job is being worked on by only one job worker. Get this number from the response
    // to a GetThirdPartyJobDetails request.
    //
    // Nonce is a required field
    Nonce *string `locationName:"nonce" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of an AcknowledgeThirdPartyJob action.

func (AcknowledgeThirdPartyJobInput) GoString

func (s AcknowledgeThirdPartyJobInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AcknowledgeThirdPartyJobInput) SetClientToken

func (s *AcknowledgeThirdPartyJobInput) SetClientToken(v string) *AcknowledgeThirdPartyJobInput

SetClientToken sets the ClientToken field's value.

func (*AcknowledgeThirdPartyJobInput) SetJobId

func (s *AcknowledgeThirdPartyJobInput) SetJobId(v string) *AcknowledgeThirdPartyJobInput

SetJobId sets the JobId field's value.

func (*AcknowledgeThirdPartyJobInput) SetNonce

func (s *AcknowledgeThirdPartyJobInput) SetNonce(v string) *AcknowledgeThirdPartyJobInput

SetNonce sets the Nonce field's value.

func (AcknowledgeThirdPartyJobInput) String

func (s AcknowledgeThirdPartyJobInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AcknowledgeThirdPartyJobInput) Validate

func (s *AcknowledgeThirdPartyJobInput) Validate() error

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

type AcknowledgeThirdPartyJobOutput

type AcknowledgeThirdPartyJobOutput struct {

    // The status information for the third party job, if any.
    Status *string `locationName:"status" type:"string" enum:"JobStatus"`
    // contains filtered or unexported fields
}

Represents the output of an AcknowledgeThirdPartyJob action.

func (AcknowledgeThirdPartyJobOutput) GoString

func (s AcknowledgeThirdPartyJobOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*AcknowledgeThirdPartyJobOutput) SetStatus

func (s *AcknowledgeThirdPartyJobOutput) SetStatus(v string) *AcknowledgeThirdPartyJobOutput

SetStatus sets the Status field's value.

func (AcknowledgeThirdPartyJobOutput) String

func (s AcknowledgeThirdPartyJobOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionConfiguration

type ActionConfiguration struct {

    // The configuration data for the action.
    Configuration map[string]*string `locationName:"configuration" type:"map"`
    // contains filtered or unexported fields
}

Represents information about an action configuration.

func (ActionConfiguration) GoString

func (s ActionConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionConfiguration) SetConfiguration

func (s *ActionConfiguration) SetConfiguration(v map[string]*string) *ActionConfiguration

SetConfiguration sets the Configuration field's value.

func (ActionConfiguration) String

func (s ActionConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionConfigurationProperty

type ActionConfigurationProperty struct {

    // The description of the action configuration property that is displayed to
    // users.
    Description *string `locationName:"description" min:"1" type:"string"`

    // Whether the configuration property is a key.
    //
    // Key is a required field
    Key *bool `locationName:"key" type:"boolean" required:"true"`

    // The name of the action configuration property.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // Indicates that the property is used with PollForJobs. When creating a custom
    // action, an action can have up to one queryable property. If it has one, that
    // property must be both required and not secret.
    //
    // If you create a pipeline with a custom action type, and that custom action
    // contains a queryable property, the value for that configuration property
    // is subject to other restrictions. The value must be less than or equal to
    // twenty (20) characters. The value can contain only alphanumeric characters,
    // underscores, and hyphens.
    Queryable *bool `locationName:"queryable" type:"boolean"`

    // Whether the configuration property is a required value.
    //
    // Required is a required field
    Required *bool `locationName:"required" type:"boolean" required:"true"`

    // Whether the configuration property is secret. Secrets are hidden from all
    // calls except for GetJobDetails, GetThirdPartyJobDetails, PollForJobs, and
    // PollForThirdPartyJobs.
    //
    // When updating a pipeline, passing * * * * * without changing any other values
    // of the action preserves the previous value of the secret.
    //
    // Secret is a required field
    Secret *bool `locationName:"secret" type:"boolean" required:"true"`

    // The type of the configuration property.
    Type *string `locationName:"type" type:"string" enum:"ActionConfigurationPropertyType"`
    // contains filtered or unexported fields
}

Represents information about an action configuration property.

func (ActionConfigurationProperty) GoString

func (s ActionConfigurationProperty) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionConfigurationProperty) SetDescription

func (s *ActionConfigurationProperty) SetDescription(v string) *ActionConfigurationProperty

SetDescription sets the Description field's value.

func (*ActionConfigurationProperty) SetKey

func (s *ActionConfigurationProperty) SetKey(v bool) *ActionConfigurationProperty

SetKey sets the Key field's value.

func (*ActionConfigurationProperty) SetName

func (s *ActionConfigurationProperty) SetName(v string) *ActionConfigurationProperty

SetName sets the Name field's value.

func (*ActionConfigurationProperty) SetQueryable

func (s *ActionConfigurationProperty) SetQueryable(v bool) *ActionConfigurationProperty

SetQueryable sets the Queryable field's value.

func (*ActionConfigurationProperty) SetRequired

func (s *ActionConfigurationProperty) SetRequired(v bool) *ActionConfigurationProperty

SetRequired sets the Required field's value.

func (*ActionConfigurationProperty) SetSecret

func (s *ActionConfigurationProperty) SetSecret(v bool) *ActionConfigurationProperty

SetSecret sets the Secret field's value.

func (*ActionConfigurationProperty) SetType

func (s *ActionConfigurationProperty) SetType(v string) *ActionConfigurationProperty

SetType sets the Type field's value.

func (ActionConfigurationProperty) String

func (s ActionConfigurationProperty) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionConfigurationProperty) Validate

func (s *ActionConfigurationProperty) Validate() error

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

type ActionContext

type ActionContext struct {

    // The system-generated unique ID that corresponds to an action's execution.
    ActionExecutionId *string `locationName:"actionExecutionId" type:"string"`

    // The name of the action in the context of a job.
    Name *string `locationName:"name" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents the context of an action in the stage of a pipeline to a job worker.

func (ActionContext) GoString

func (s ActionContext) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionContext) SetActionExecutionId

func (s *ActionContext) SetActionExecutionId(v string) *ActionContext

SetActionExecutionId sets the ActionExecutionId field's value.

func (*ActionContext) SetName

func (s *ActionContext) SetName(v string) *ActionContext

SetName sets the Name field's value.

func (ActionContext) String

func (s ActionContext) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionDeclaration

type ActionDeclaration struct {

    // Specifies the action type and the provider of the action.
    //
    // ActionTypeId is a required field
    ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure" required:"true"`

    // The action's configuration. These are key-value pairs that specify input
    // values for an action. For more information, see Action Structure Requirements
    // in CodePipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements).
    // For the list of configuration properties for the CloudFormation action type
    // in CodePipeline, see Configuration Properties Reference (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-action-reference.html)
    // in the CloudFormation User Guide. For template snippets with examples, see
    // Using Parameter Override Functions with CodePipeline Pipelines (https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/continuous-delivery-codepipeline-parameter-override-functions.html)
    // in the CloudFormation User Guide.
    //
    // The values can be represented in either JSON or YAML format. For example,
    // the JSON configuration item format is as follows:
    //
    // JSON:
    //
    // "Configuration" : { Key : Value },
    Configuration map[string]*string `locationName:"configuration" type:"map"`

    // The name or ID of the artifact consumed by the action, such as a test or
    // build artifact.
    InputArtifacts []*InputArtifact `locationName:"inputArtifacts" type:"list"`

    // The action declaration's name.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // The variable namespace associated with the action. All variables produced
    // as output by this action fall under this namespace.
    Namespace *string `locationName:"namespace" min:"1" type:"string"`

    // The name or ID of the result of the action declaration, such as a test or
    // build artifact.
    OutputArtifacts []*OutputArtifact `locationName:"outputArtifacts" type:"list"`

    // The action declaration's Amazon Web Services Region, such as us-east-1.
    Region *string `locationName:"region" min:"4" type:"string"`

    // The ARN of the IAM service role that performs the declared action. This is
    // assumed through the roleArn for the pipeline.
    RoleArn *string `locationName:"roleArn" type:"string"`

    // The order in which actions are run.
    RunOrder *int64 `locationName:"runOrder" min:"1" type:"integer"`

    // A timeout duration in minutes that can be applied against the ActionType’s
    // default timeout value specified in Quotas for CodePipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/limits.html).
    // This attribute is available only to the manual approval ActionType.
    TimeoutInMinutes *int64 `locationName:"timeoutInMinutes" min:"5" type:"integer"`
    // contains filtered or unexported fields
}

Represents information about an action declaration.

func (ActionDeclaration) GoString

func (s ActionDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionDeclaration) SetActionTypeId

func (s *ActionDeclaration) SetActionTypeId(v *ActionTypeId) *ActionDeclaration

SetActionTypeId sets the ActionTypeId field's value.

func (*ActionDeclaration) SetConfiguration

func (s *ActionDeclaration) SetConfiguration(v map[string]*string) *ActionDeclaration

SetConfiguration sets the Configuration field's value.

func (*ActionDeclaration) SetInputArtifacts

func (s *ActionDeclaration) SetInputArtifacts(v []*InputArtifact) *ActionDeclaration

SetInputArtifacts sets the InputArtifacts field's value.

func (*ActionDeclaration) SetName

func (s *ActionDeclaration) SetName(v string) *ActionDeclaration

SetName sets the Name field's value.

func (*ActionDeclaration) SetNamespace

func (s *ActionDeclaration) SetNamespace(v string) *ActionDeclaration

SetNamespace sets the Namespace field's value.

func (*ActionDeclaration) SetOutputArtifacts

func (s *ActionDeclaration) SetOutputArtifacts(v []*OutputArtifact) *ActionDeclaration

SetOutputArtifacts sets the OutputArtifacts field's value.

func (*ActionDeclaration) SetRegion

func (s *ActionDeclaration) SetRegion(v string) *ActionDeclaration

SetRegion sets the Region field's value.

func (*ActionDeclaration) SetRoleArn

func (s *ActionDeclaration) SetRoleArn(v string) *ActionDeclaration

SetRoleArn sets the RoleArn field's value.

func (*ActionDeclaration) SetRunOrder

func (s *ActionDeclaration) SetRunOrder(v int64) *ActionDeclaration

SetRunOrder sets the RunOrder field's value.

func (*ActionDeclaration) SetTimeoutInMinutes

func (s *ActionDeclaration) SetTimeoutInMinutes(v int64) *ActionDeclaration

SetTimeoutInMinutes sets the TimeoutInMinutes field's value.

func (ActionDeclaration) String

func (s ActionDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionDeclaration) Validate

func (s *ActionDeclaration) Validate() error

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

type ActionExecution

type ActionExecution struct {

    // ID of the workflow action execution in the current stage. Use the GetPipelineState
    // action to retrieve the current action execution details of the current stage.
    //
    // For older executions, this field might be empty. The action execution ID
    // is available for executions run on or after March 2020.
    ActionExecutionId *string `locationName:"actionExecutionId" type:"string"`

    // The details of an error returned by a URL external to Amazon Web Services.
    ErrorDetails *ErrorDetails `locationName:"errorDetails" type:"structure"`

    // The external ID of the run of the action.
    ExternalExecutionId *string `locationName:"externalExecutionId" min:"1" type:"string"`

    // The URL of a resource external to Amazon Web Services that is used when running
    // the action (for example, an external repository URL).
    ExternalExecutionUrl *string `locationName:"externalExecutionUrl" min:"1" type:"string"`

    // The last status change of the action.
    LastStatusChange *time.Time `locationName:"lastStatusChange" type:"timestamp"`

    // The ARN of the user who last changed the pipeline.
    LastUpdatedBy *string `locationName:"lastUpdatedBy" type:"string"`

    // A percentage of completeness of the action as it runs.
    PercentComplete *int64 `locationName:"percentComplete" type:"integer"`

    // The status of the action, or for a completed action, the last status of the
    // action.
    Status *string `locationName:"status" type:"string" enum:"ActionExecutionStatus"`

    // A summary of the run of the action.
    Summary *string `locationName:"summary" min:"1" type:"string"`

    // The system-generated token used to identify a unique approval request. The
    // token for each open approval request can be obtained using the GetPipelineState
    // command. It is used to validate that the approval request corresponding to
    // this token is still valid.
    Token *string `locationName:"token" type:"string"`
    // contains filtered or unexported fields
}

Represents information about the run of an action.

func (ActionExecution) GoString

func (s ActionExecution) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecution) SetActionExecutionId

func (s *ActionExecution) SetActionExecutionId(v string) *ActionExecution

SetActionExecutionId sets the ActionExecutionId field's value.

func (*ActionExecution) SetErrorDetails

func (s *ActionExecution) SetErrorDetails(v *ErrorDetails) *ActionExecution

SetErrorDetails sets the ErrorDetails field's value.

func (*ActionExecution) SetExternalExecutionId

func (s *ActionExecution) SetExternalExecutionId(v string) *ActionExecution

SetExternalExecutionId sets the ExternalExecutionId field's value.

func (*ActionExecution) SetExternalExecutionUrl

func (s *ActionExecution) SetExternalExecutionUrl(v string) *ActionExecution

SetExternalExecutionUrl sets the ExternalExecutionUrl field's value.

func (*ActionExecution) SetLastStatusChange

func (s *ActionExecution) SetLastStatusChange(v time.Time) *ActionExecution

SetLastStatusChange sets the LastStatusChange field's value.

func (*ActionExecution) SetLastUpdatedBy

func (s *ActionExecution) SetLastUpdatedBy(v string) *ActionExecution

SetLastUpdatedBy sets the LastUpdatedBy field's value.

func (*ActionExecution) SetPercentComplete

func (s *ActionExecution) SetPercentComplete(v int64) *ActionExecution

SetPercentComplete sets the PercentComplete field's value.

func (*ActionExecution) SetStatus

func (s *ActionExecution) SetStatus(v string) *ActionExecution

SetStatus sets the Status field's value.

func (*ActionExecution) SetSummary

func (s *ActionExecution) SetSummary(v string) *ActionExecution

SetSummary sets the Summary field's value.

func (*ActionExecution) SetToken

func (s *ActionExecution) SetToken(v string) *ActionExecution

SetToken sets the Token field's value.

func (ActionExecution) String

func (s ActionExecution) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionExecutionDetail

type ActionExecutionDetail struct {

    // The action execution ID.
    ActionExecutionId *string `locationName:"actionExecutionId" type:"string"`

    // The name of the action.
    ActionName *string `locationName:"actionName" min:"1" type:"string"`

    // Input details for the action execution, such as role ARN, Region, and input
    // artifacts.
    Input *ActionExecutionInput `locationName:"input" type:"structure"`

    // The last update time of the action execution.
    LastUpdateTime *time.Time `locationName:"lastUpdateTime" type:"timestamp"`

    // Output details for the action execution, such as the action execution result.
    Output *ActionExecutionOutput `locationName:"output" type:"structure"`

    // The pipeline execution ID for the action execution.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`

    // The version of the pipeline where the action was run.
    PipelineVersion *int64 `locationName:"pipelineVersion" min:"1" type:"integer"`

    // The name of the stage that contains the action.
    StageName *string `locationName:"stageName" min:"1" type:"string"`

    // The start time of the action execution.
    StartTime *time.Time `locationName:"startTime" type:"timestamp"`

    // The status of the action execution. Status categories are InProgress, Succeeded,
    // and Failed.
    Status *string `locationName:"status" type:"string" enum:"ActionExecutionStatus"`

    // The ARN of the user who changed the pipeline execution details.
    UpdatedBy *string `locationName:"updatedBy" type:"string"`
    // contains filtered or unexported fields
}

Returns information about an execution of an action, including the action execution ID, and the name, version, and timing of the action.

func (ActionExecutionDetail) GoString

func (s ActionExecutionDetail) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecutionDetail) SetActionExecutionId

func (s *ActionExecutionDetail) SetActionExecutionId(v string) *ActionExecutionDetail

SetActionExecutionId sets the ActionExecutionId field's value.

func (*ActionExecutionDetail) SetActionName

func (s *ActionExecutionDetail) SetActionName(v string) *ActionExecutionDetail

SetActionName sets the ActionName field's value.

func (*ActionExecutionDetail) SetInput

func (s *ActionExecutionDetail) SetInput(v *ActionExecutionInput) *ActionExecutionDetail

SetInput sets the Input field's value.

func (*ActionExecutionDetail) SetLastUpdateTime

func (s *ActionExecutionDetail) SetLastUpdateTime(v time.Time) *ActionExecutionDetail

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*ActionExecutionDetail) SetOutput

func (s *ActionExecutionDetail) SetOutput(v *ActionExecutionOutput) *ActionExecutionDetail

SetOutput sets the Output field's value.

func (*ActionExecutionDetail) SetPipelineExecutionId

func (s *ActionExecutionDetail) SetPipelineExecutionId(v string) *ActionExecutionDetail

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*ActionExecutionDetail) SetPipelineVersion

func (s *ActionExecutionDetail) SetPipelineVersion(v int64) *ActionExecutionDetail

SetPipelineVersion sets the PipelineVersion field's value.

func (*ActionExecutionDetail) SetStageName

func (s *ActionExecutionDetail) SetStageName(v string) *ActionExecutionDetail

SetStageName sets the StageName field's value.

func (*ActionExecutionDetail) SetStartTime

func (s *ActionExecutionDetail) SetStartTime(v time.Time) *ActionExecutionDetail

SetStartTime sets the StartTime field's value.

func (*ActionExecutionDetail) SetStatus

func (s *ActionExecutionDetail) SetStatus(v string) *ActionExecutionDetail

SetStatus sets the Status field's value.

func (*ActionExecutionDetail) SetUpdatedBy

func (s *ActionExecutionDetail) SetUpdatedBy(v string) *ActionExecutionDetail

SetUpdatedBy sets the UpdatedBy field's value.

func (ActionExecutionDetail) String

func (s ActionExecutionDetail) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionExecutionFilter

type ActionExecutionFilter struct {

    // The latest execution in the pipeline.
    //
    // Filtering on the latest execution is available for executions run on or after
    // February 08, 2024.
    LatestInPipelineExecution *LatestInPipelineExecutionFilter `locationName:"latestInPipelineExecution" type:"structure"`

    // The pipeline execution ID used to filter action execution history.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
    // contains filtered or unexported fields
}

Filter values for the action execution.

func (ActionExecutionFilter) GoString

func (s ActionExecutionFilter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecutionFilter) SetLatestInPipelineExecution

func (s *ActionExecutionFilter) SetLatestInPipelineExecution(v *LatestInPipelineExecutionFilter) *ActionExecutionFilter

SetLatestInPipelineExecution sets the LatestInPipelineExecution field's value.

func (*ActionExecutionFilter) SetPipelineExecutionId

func (s *ActionExecutionFilter) SetPipelineExecutionId(v string) *ActionExecutionFilter

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (ActionExecutionFilter) String

func (s ActionExecutionFilter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecutionFilter) Validate

func (s *ActionExecutionFilter) Validate() error

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

type ActionExecutionInput

type ActionExecutionInput struct {

    // Represents information about an action type.
    ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure"`

    // Configuration data for an action execution.
    Configuration map[string]*string `locationName:"configuration" type:"map"`

    // Details of input artifacts of the action that correspond to the action execution.
    InputArtifacts []*ArtifactDetail `locationName:"inputArtifacts" type:"list"`

    // The variable namespace associated with the action. All variables produced
    // as output by this action fall under this namespace.
    Namespace *string `locationName:"namespace" min:"1" type:"string"`

    // The Amazon Web Services Region for the action, such as us-east-1.
    Region *string `locationName:"region" min:"4" type:"string"`

    // Configuration data for an action execution with all variable references replaced
    // with their real values for the execution.
    ResolvedConfiguration map[string]*string `locationName:"resolvedConfiguration" type:"map"`

    // The ARN of the IAM service role that performs the declared action. This is
    // assumed through the roleArn for the pipeline.
    RoleArn *string `locationName:"roleArn" type:"string"`
    // contains filtered or unexported fields
}

Input information used for an action execution.

func (ActionExecutionInput) GoString

func (s ActionExecutionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecutionInput) SetActionTypeId

func (s *ActionExecutionInput) SetActionTypeId(v *ActionTypeId) *ActionExecutionInput

SetActionTypeId sets the ActionTypeId field's value.

func (*ActionExecutionInput) SetConfiguration

func (s *ActionExecutionInput) SetConfiguration(v map[string]*string) *ActionExecutionInput

SetConfiguration sets the Configuration field's value.

func (*ActionExecutionInput) SetInputArtifacts

func (s *ActionExecutionInput) SetInputArtifacts(v []*ArtifactDetail) *ActionExecutionInput

SetInputArtifacts sets the InputArtifacts field's value.

func (*ActionExecutionInput) SetNamespace

func (s *ActionExecutionInput) SetNamespace(v string) *ActionExecutionInput

SetNamespace sets the Namespace field's value.

func (*ActionExecutionInput) SetRegion

func (s *ActionExecutionInput) SetRegion(v string) *ActionExecutionInput

SetRegion sets the Region field's value.

func (*ActionExecutionInput) SetResolvedConfiguration

func (s *ActionExecutionInput) SetResolvedConfiguration(v map[string]*string) *ActionExecutionInput

SetResolvedConfiguration sets the ResolvedConfiguration field's value.

func (*ActionExecutionInput) SetRoleArn

func (s *ActionExecutionInput) SetRoleArn(v string) *ActionExecutionInput

SetRoleArn sets the RoleArn field's value.

func (ActionExecutionInput) String

func (s ActionExecutionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionExecutionOutput

type ActionExecutionOutput struct {

    // Execution result information listed in the output details for an action execution.
    ExecutionResult *ActionExecutionResult `locationName:"executionResult" type:"structure"`

    // Details of output artifacts of the action that correspond to the action execution.
    OutputArtifacts []*ArtifactDetail `locationName:"outputArtifacts" type:"list"`

    // The outputVariables field shows the key-value pairs that were output as part
    // of that execution.
    OutputVariables map[string]*string `locationName:"outputVariables" type:"map"`
    // contains filtered or unexported fields
}

Output details listed for an action execution, such as the action execution result.

func (ActionExecutionOutput) GoString

func (s ActionExecutionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecutionOutput) SetExecutionResult

func (s *ActionExecutionOutput) SetExecutionResult(v *ActionExecutionResult) *ActionExecutionOutput

SetExecutionResult sets the ExecutionResult field's value.

func (*ActionExecutionOutput) SetOutputArtifacts

func (s *ActionExecutionOutput) SetOutputArtifacts(v []*ArtifactDetail) *ActionExecutionOutput

SetOutputArtifacts sets the OutputArtifacts field's value.

func (*ActionExecutionOutput) SetOutputVariables

func (s *ActionExecutionOutput) SetOutputVariables(v map[string]*string) *ActionExecutionOutput

SetOutputVariables sets the OutputVariables field's value.

func (ActionExecutionOutput) String

func (s ActionExecutionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionExecutionResult

type ActionExecutionResult struct {

    // Represents information about an error in CodePipeline.
    ErrorDetails *ErrorDetails `locationName:"errorDetails" type:"structure"`

    // The action provider's external ID for the action execution.
    ExternalExecutionId *string `locationName:"externalExecutionId" type:"string"`

    // The action provider's summary for the action execution.
    ExternalExecutionSummary *string `locationName:"externalExecutionSummary" type:"string"`

    // The deepest external link to the external resource (for example, a repository
    // URL or deployment endpoint) that is used when running the action.
    ExternalExecutionUrl *string `locationName:"externalExecutionUrl" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Execution result information, such as the external execution ID.

func (ActionExecutionResult) GoString

func (s ActionExecutionResult) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionExecutionResult) SetErrorDetails

func (s *ActionExecutionResult) SetErrorDetails(v *ErrorDetails) *ActionExecutionResult

SetErrorDetails sets the ErrorDetails field's value.

func (*ActionExecutionResult) SetExternalExecutionId

func (s *ActionExecutionResult) SetExternalExecutionId(v string) *ActionExecutionResult

SetExternalExecutionId sets the ExternalExecutionId field's value.

func (*ActionExecutionResult) SetExternalExecutionSummary

func (s *ActionExecutionResult) SetExternalExecutionSummary(v string) *ActionExecutionResult

SetExternalExecutionSummary sets the ExternalExecutionSummary field's value.

func (*ActionExecutionResult) SetExternalExecutionUrl

func (s *ActionExecutionResult) SetExternalExecutionUrl(v string) *ActionExecutionResult

SetExternalExecutionUrl sets the ExternalExecutionUrl field's value.

func (ActionExecutionResult) String

func (s ActionExecutionResult) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionNotFoundException

type ActionNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified action cannot be found.

func (*ActionNotFoundException) Code

func (s *ActionNotFoundException) Code() string

Code returns the exception type name.

func (*ActionNotFoundException) Error

func (s *ActionNotFoundException) Error() string

func (ActionNotFoundException) GoString

func (s ActionNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionNotFoundException) Message

func (s *ActionNotFoundException) Message() string

Message returns the exception's message.

func (*ActionNotFoundException) OrigErr

func (s *ActionNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ActionNotFoundException) RequestID

func (s *ActionNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ActionNotFoundException) StatusCode

func (s *ActionNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ActionNotFoundException) String

func (s ActionNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionRevision

type ActionRevision struct {

    // The date and time when the most recent version of the action was created,
    // in timestamp format.
    //
    // Created is a required field
    Created *time.Time `locationName:"created" type:"timestamp" required:"true"`

    // The unique identifier of the change that set the state to this revision (for
    // example, a deployment ID or timestamp).
    //
    // RevisionChangeId is a required field
    RevisionChangeId *string `locationName:"revisionChangeId" min:"1" type:"string" required:"true"`

    // The system-generated unique ID that identifies the revision number of the
    // action.
    //
    // RevisionId is a required field
    RevisionId *string `locationName:"revisionId" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about the version (or revision) of an action.

func (ActionRevision) GoString

func (s ActionRevision) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionRevision) SetCreated

func (s *ActionRevision) SetCreated(v time.Time) *ActionRevision

SetCreated sets the Created field's value.

func (*ActionRevision) SetRevisionChangeId

func (s *ActionRevision) SetRevisionChangeId(v string) *ActionRevision

SetRevisionChangeId sets the RevisionChangeId field's value.

func (*ActionRevision) SetRevisionId

func (s *ActionRevision) SetRevisionId(v string) *ActionRevision

SetRevisionId sets the RevisionId field's value.

func (ActionRevision) String

func (s ActionRevision) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionRevision) Validate

func (s *ActionRevision) Validate() error

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

type ActionState

type ActionState struct {

    // The name of the action.
    ActionName *string `locationName:"actionName" min:"1" type:"string"`

    // Represents information about the version (or revision) of an action.
    CurrentRevision *ActionRevision `locationName:"currentRevision" type:"structure"`

    // A URL link for more information about the state of the action, such as a
    // deployment group details page.
    EntityUrl *string `locationName:"entityUrl" min:"1" type:"string"`

    // Represents information about the run of an action.
    LatestExecution *ActionExecution `locationName:"latestExecution" type:"structure"`

    // A URL link for more information about the revision, such as a commit details
    // page.
    RevisionUrl *string `locationName:"revisionUrl" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents information about the state of an action.

func (ActionState) GoString

func (s ActionState) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionState) SetActionName

func (s *ActionState) SetActionName(v string) *ActionState

SetActionName sets the ActionName field's value.

func (*ActionState) SetCurrentRevision

func (s *ActionState) SetCurrentRevision(v *ActionRevision) *ActionState

SetCurrentRevision sets the CurrentRevision field's value.

func (*ActionState) SetEntityUrl

func (s *ActionState) SetEntityUrl(v string) *ActionState

SetEntityUrl sets the EntityUrl field's value.

func (*ActionState) SetLatestExecution

func (s *ActionState) SetLatestExecution(v *ActionExecution) *ActionState

SetLatestExecution sets the LatestExecution field's value.

func (*ActionState) SetRevisionUrl

func (s *ActionState) SetRevisionUrl(v string) *ActionState

SetRevisionUrl sets the RevisionUrl field's value.

func (ActionState) String

func (s ActionState) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionType

type ActionType struct {

    // The configuration properties for the action type.
    ActionConfigurationProperties []*ActionConfigurationProperty `locationName:"actionConfigurationProperties" type:"list"`

    // Represents information about an action type.
    //
    // Id is a required field
    Id *ActionTypeId `locationName:"id" type:"structure" required:"true"`

    // The details of the input artifact for the action, such as its commit ID.
    //
    // InputArtifactDetails is a required field
    InputArtifactDetails *ArtifactDetails `locationName:"inputArtifactDetails" type:"structure" required:"true"`

    // The details of the output artifact of the action, such as its commit ID.
    //
    // OutputArtifactDetails is a required field
    OutputArtifactDetails *ArtifactDetails `locationName:"outputArtifactDetails" type:"structure" required:"true"`

    // The settings for the action type.
    Settings *ActionTypeSettings `locationName:"settings" type:"structure"`
    // contains filtered or unexported fields
}

Returns information about the details of an action type.

func (ActionType) GoString

func (s ActionType) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionType) SetActionConfigurationProperties

func (s *ActionType) SetActionConfigurationProperties(v []*ActionConfigurationProperty) *ActionType

SetActionConfigurationProperties sets the ActionConfigurationProperties field's value.

func (*ActionType) SetId

func (s *ActionType) SetId(v *ActionTypeId) *ActionType

SetId sets the Id field's value.

func (*ActionType) SetInputArtifactDetails

func (s *ActionType) SetInputArtifactDetails(v *ArtifactDetails) *ActionType

SetInputArtifactDetails sets the InputArtifactDetails field's value.

func (*ActionType) SetOutputArtifactDetails

func (s *ActionType) SetOutputArtifactDetails(v *ArtifactDetails) *ActionType

SetOutputArtifactDetails sets the OutputArtifactDetails field's value.

func (*ActionType) SetSettings

func (s *ActionType) SetSettings(v *ActionTypeSettings) *ActionType

SetSettings sets the Settings field's value.

func (ActionType) String

func (s ActionType) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionTypeArtifactDetails

type ActionTypeArtifactDetails struct {

    // The maximum number of artifacts that can be used with the actiontype. For
    // example, you should specify a minimum and maximum of zero input artifacts
    // for an action type with a category of source.
    //
    // MaximumCount is a required field
    MaximumCount *int64 `locationName:"maximumCount" type:"integer" required:"true"`

    // The minimum number of artifacts that can be used with the action type. For
    // example, you should specify a minimum and maximum of zero input artifacts
    // for an action type with a category of source.
    //
    // MinimumCount is a required field
    MinimumCount *int64 `locationName:"minimumCount" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

Information about parameters for artifacts associated with the action type, such as the minimum and maximum artifacts allowed.

func (ActionTypeArtifactDetails) GoString

func (s ActionTypeArtifactDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeArtifactDetails) SetMaximumCount

func (s *ActionTypeArtifactDetails) SetMaximumCount(v int64) *ActionTypeArtifactDetails

SetMaximumCount sets the MaximumCount field's value.

func (*ActionTypeArtifactDetails) SetMinimumCount

func (s *ActionTypeArtifactDetails) SetMinimumCount(v int64) *ActionTypeArtifactDetails

SetMinimumCount sets the MinimumCount field's value.

func (ActionTypeArtifactDetails) String

func (s ActionTypeArtifactDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeArtifactDetails) Validate

func (s *ActionTypeArtifactDetails) Validate() error

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

type ActionTypeDeclaration

type ActionTypeDeclaration struct {

    // The description for the action type to be updated.
    Description *string `locationName:"description" min:"1" type:"string"`

    // Information about the executor for an action type that was created with any
    // supported integration model.
    //
    // Executor is a required field
    Executor *ActionTypeExecutor `locationName:"executor" type:"structure" required:"true"`

    // The action category, owner, provider, and version of the action type to be
    // updated.
    //
    // Id is a required field
    Id *ActionTypeIdentifier `locationName:"id" type:"structure" required:"true"`

    // Details for the artifacts, such as application files, to be worked on by
    // the action. For example, the minimum and maximum number of input artifacts
    // allowed.
    //
    // InputArtifactDetails is a required field
    InputArtifactDetails *ActionTypeArtifactDetails `locationName:"inputArtifactDetails" type:"structure" required:"true"`

    // Details for the output artifacts, such as a built application, that are the
    // result of the action. For example, the minimum and maximum number of output
    // artifacts allowed.
    //
    // OutputArtifactDetails is a required field
    OutputArtifactDetails *ActionTypeArtifactDetails `locationName:"outputArtifactDetails" type:"structure" required:"true"`

    // Details identifying the accounts with permissions to use the action type.
    Permissions *ActionTypePermissions `locationName:"permissions" type:"structure"`

    // The properties of the action type to be updated.
    Properties []*ActionTypeProperty `locationName:"properties" type:"list"`

    // The links associated with the action type to be updated.
    Urls *ActionTypeUrls `locationName:"urls" type:"structure"`
    // contains filtered or unexported fields
}

The parameters for the action type definition that are provided when the action type is created or updated.

func (ActionTypeDeclaration) GoString

func (s ActionTypeDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeDeclaration) SetDescription

func (s *ActionTypeDeclaration) SetDescription(v string) *ActionTypeDeclaration

SetDescription sets the Description field's value.

func (*ActionTypeDeclaration) SetExecutor

func (s *ActionTypeDeclaration) SetExecutor(v *ActionTypeExecutor) *ActionTypeDeclaration

SetExecutor sets the Executor field's value.

func (*ActionTypeDeclaration) SetId

func (s *ActionTypeDeclaration) SetId(v *ActionTypeIdentifier) *ActionTypeDeclaration

SetId sets the Id field's value.

func (*ActionTypeDeclaration) SetInputArtifactDetails

func (s *ActionTypeDeclaration) SetInputArtifactDetails(v *ActionTypeArtifactDetails) *ActionTypeDeclaration

SetInputArtifactDetails sets the InputArtifactDetails field's value.

func (*ActionTypeDeclaration) SetOutputArtifactDetails

func (s *ActionTypeDeclaration) SetOutputArtifactDetails(v *ActionTypeArtifactDetails) *ActionTypeDeclaration

SetOutputArtifactDetails sets the OutputArtifactDetails field's value.

func (*ActionTypeDeclaration) SetPermissions

func (s *ActionTypeDeclaration) SetPermissions(v *ActionTypePermissions) *ActionTypeDeclaration

SetPermissions sets the Permissions field's value.

func (*ActionTypeDeclaration) SetProperties

func (s *ActionTypeDeclaration) SetProperties(v []*ActionTypeProperty) *ActionTypeDeclaration

SetProperties sets the Properties field's value.

func (*ActionTypeDeclaration) SetUrls

func (s *ActionTypeDeclaration) SetUrls(v *ActionTypeUrls) *ActionTypeDeclaration

SetUrls sets the Urls field's value.

func (ActionTypeDeclaration) String

func (s ActionTypeDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeDeclaration) Validate

func (s *ActionTypeDeclaration) Validate() error

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

type ActionTypeExecutor

type ActionTypeExecutor struct {

    // The action configuration properties for the action type. These properties
    // are specified in the action definition when the action type is created.
    //
    // Configuration is a required field
    Configuration *ExecutorConfiguration `locationName:"configuration" type:"structure" required:"true"`

    // The timeout in seconds for the job. An action execution can have multiple
    // jobs. This is the timeout for a single job, not the entire action execution.
    JobTimeout *int64 `locationName:"jobTimeout" min:"60" type:"integer"`

    // The policy statement that specifies the permissions in the CodePipeline customer
    // account that are needed to successfully run an action.
    //
    // To grant permission to another account, specify the account ID as the Principal,
    // a domain-style identifier defined by the service, for example codepipeline.amazonaws.com.
    //
    // The size of the passed JSON policy document cannot exceed 2048 characters.
    PolicyStatementsTemplate *string `locationName:"policyStatementsTemplate" min:"1" type:"string"`

    // The integration model used to create and update the action type, Lambda or
    // JobWorker.
    //
    // Type is a required field
    Type *string `locationName:"type" type:"string" required:"true" enum:"ExecutorType"`
    // contains filtered or unexported fields
}

The action engine, or executor, for an action type created for a provider, where the action is to be used by customers of the provider. The action engine is associated with the model used to create and update the action, such as the Lambda integration model.

func (ActionTypeExecutor) GoString

func (s ActionTypeExecutor) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeExecutor) SetConfiguration

func (s *ActionTypeExecutor) SetConfiguration(v *ExecutorConfiguration) *ActionTypeExecutor

SetConfiguration sets the Configuration field's value.

func (*ActionTypeExecutor) SetJobTimeout

func (s *ActionTypeExecutor) SetJobTimeout(v int64) *ActionTypeExecutor

SetJobTimeout sets the JobTimeout field's value.

func (*ActionTypeExecutor) SetPolicyStatementsTemplate

func (s *ActionTypeExecutor) SetPolicyStatementsTemplate(v string) *ActionTypeExecutor

SetPolicyStatementsTemplate sets the PolicyStatementsTemplate field's value.

func (*ActionTypeExecutor) SetType

func (s *ActionTypeExecutor) SetType(v string) *ActionTypeExecutor

SetType sets the Type field's value.

func (ActionTypeExecutor) String

func (s ActionTypeExecutor) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeExecutor) Validate

func (s *ActionTypeExecutor) Validate() error

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

type ActionTypeId

type ActionTypeId struct {

    // A category defines what kind of action can be taken in the stage, and constrains
    // the provider type for the action. Valid categories are limited to one of
    // the following values.
    //
    //    * Source
    //
    //    * Build
    //
    //    * Test
    //
    //    * Deploy
    //
    //    * Invoke
    //
    //    * Approval
    //
    // Category is a required field
    Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`

    // The creator of the action being called. There are three valid values for
    // the Owner field in the action category section within your pipeline structure:
    // AWS, ThirdParty, and Custom. For more information, see Valid Action Types
    // and Providers in CodePipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers).
    //
    // Owner is a required field
    Owner *string `locationName:"owner" type:"string" required:"true" enum:"ActionOwner"`

    // The provider of the service being called by the action. Valid providers are
    // determined by the action category. For example, an action in the Deploy category
    // type might have a provider of CodeDeploy, which would be specified as CodeDeploy.
    // For more information, see Valid Action Types and Providers in CodePipeline
    // (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#actions-valid-providers).
    //
    // Provider is a required field
    Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`

    // A string that describes the action version.
    //
    // Version is a required field
    Version *string `locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about an action type.

func (ActionTypeId) GoString

func (s ActionTypeId) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeId) SetCategory

func (s *ActionTypeId) SetCategory(v string) *ActionTypeId

SetCategory sets the Category field's value.

func (*ActionTypeId) SetOwner

func (s *ActionTypeId) SetOwner(v string) *ActionTypeId

SetOwner sets the Owner field's value.

func (*ActionTypeId) SetProvider

func (s *ActionTypeId) SetProvider(v string) *ActionTypeId

SetProvider sets the Provider field's value.

func (*ActionTypeId) SetVersion

func (s *ActionTypeId) SetVersion(v string) *ActionTypeId

SetVersion sets the Version field's value.

func (ActionTypeId) String

func (s ActionTypeId) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeId) Validate

func (s *ActionTypeId) Validate() error

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

type ActionTypeIdentifier

type ActionTypeIdentifier struct {

    // Defines what kind of action can be taken in the stage, one of the following:
    //
    //    * Source
    //
    //    * Build
    //
    //    * Test
    //
    //    * Deploy
    //
    //    * Approval
    //
    //    * Invoke
    //
    // Category is a required field
    Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`

    // The creator of the action type being called: AWS or ThirdParty.
    //
    // Owner is a required field
    Owner *string `locationName:"owner" type:"string" required:"true"`

    // The provider of the action type being called. The provider name is supplied
    // when the action type is created.
    //
    // Provider is a required field
    Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`

    // A string that describes the action type version.
    //
    // Version is a required field
    Version *string `locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Specifies the category, owner, provider, and version of the action type.

func (ActionTypeIdentifier) GoString

func (s ActionTypeIdentifier) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeIdentifier) SetCategory

func (s *ActionTypeIdentifier) SetCategory(v string) *ActionTypeIdentifier

SetCategory sets the Category field's value.

func (*ActionTypeIdentifier) SetOwner

func (s *ActionTypeIdentifier) SetOwner(v string) *ActionTypeIdentifier

SetOwner sets the Owner field's value.

func (*ActionTypeIdentifier) SetProvider

func (s *ActionTypeIdentifier) SetProvider(v string) *ActionTypeIdentifier

SetProvider sets the Provider field's value.

func (*ActionTypeIdentifier) SetVersion

func (s *ActionTypeIdentifier) SetVersion(v string) *ActionTypeIdentifier

SetVersion sets the Version field's value.

func (ActionTypeIdentifier) String

func (s ActionTypeIdentifier) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeIdentifier) Validate

func (s *ActionTypeIdentifier) Validate() error

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

type ActionTypeNotFoundException

type ActionTypeNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified action type cannot be found.

func (*ActionTypeNotFoundException) Code

func (s *ActionTypeNotFoundException) Code() string

Code returns the exception type name.

func (*ActionTypeNotFoundException) Error

func (s *ActionTypeNotFoundException) Error() string

func (ActionTypeNotFoundException) GoString

func (s ActionTypeNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeNotFoundException) Message

func (s *ActionTypeNotFoundException) Message() string

Message returns the exception's message.

func (*ActionTypeNotFoundException) OrigErr

func (s *ActionTypeNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ActionTypeNotFoundException) RequestID

func (s *ActionTypeNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ActionTypeNotFoundException) StatusCode

func (s *ActionTypeNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ActionTypeNotFoundException) String

func (s ActionTypeNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ActionTypePermissions

type ActionTypePermissions struct {

    // A list of Amazon Web Services account IDs with access to use the action type
    // in their pipelines.
    //
    // AllowedAccounts is a required field
    AllowedAccounts []*string `locationName:"allowedAccounts" min:"1" type:"list" required:"true"`
    // contains filtered or unexported fields
}

Details identifying the users with permissions to use the action type.

func (ActionTypePermissions) GoString

func (s ActionTypePermissions) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypePermissions) SetAllowedAccounts

func (s *ActionTypePermissions) SetAllowedAccounts(v []*string) *ActionTypePermissions

SetAllowedAccounts sets the AllowedAccounts field's value.

func (ActionTypePermissions) String

func (s ActionTypePermissions) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypePermissions) Validate

func (s *ActionTypePermissions) Validate() error

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

type ActionTypeProperty

type ActionTypeProperty struct {

    // The description of the property that is displayed to users.
    Description *string `locationName:"description" min:"1" type:"string"`

    // Whether the configuration property is a key.
    //
    // Key is a required field
    Key *bool `locationName:"key" type:"boolean" required:"true"`

    // The property name that is displayed to users.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // Whether to omit the field value entered by the customer in the log. If true,
    // the value is not saved in CloudTrail logs for the action execution.
    //
    // NoEcho is a required field
    NoEcho *bool `locationName:"noEcho" type:"boolean" required:"true"`

    // Whether the configuration property is an optional value.
    //
    // Optional is a required field
    Optional *bool `locationName:"optional" type:"boolean" required:"true"`

    // Indicates that the property is used with polling. An action type can have
    // up to one queryable property. If it has one, that property must be both required
    // and not secret.
    Queryable *bool `locationName:"queryable" type:"boolean"`
    // contains filtered or unexported fields
}

Represents information about each property specified in the action configuration, such as the description and key name that display for the customer using the action type.

func (ActionTypeProperty) GoString

func (s ActionTypeProperty) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeProperty) SetDescription

func (s *ActionTypeProperty) SetDescription(v string) *ActionTypeProperty

SetDescription sets the Description field's value.

func (*ActionTypeProperty) SetKey

func (s *ActionTypeProperty) SetKey(v bool) *ActionTypeProperty

SetKey sets the Key field's value.

func (*ActionTypeProperty) SetName

func (s *ActionTypeProperty) SetName(v string) *ActionTypeProperty

SetName sets the Name field's value.

func (*ActionTypeProperty) SetNoEcho

func (s *ActionTypeProperty) SetNoEcho(v bool) *ActionTypeProperty

SetNoEcho sets the NoEcho field's value.

func (*ActionTypeProperty) SetOptional

func (s *ActionTypeProperty) SetOptional(v bool) *ActionTypeProperty

SetOptional sets the Optional field's value.

func (*ActionTypeProperty) SetQueryable

func (s *ActionTypeProperty) SetQueryable(v bool) *ActionTypeProperty

SetQueryable sets the Queryable field's value.

func (ActionTypeProperty) String

func (s ActionTypeProperty) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeProperty) Validate

func (s *ActionTypeProperty) Validate() error

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

type ActionTypeSettings

type ActionTypeSettings struct {

    // The URL returned to the CodePipeline console that provides a deep link to
    // the resources of the external system, such as the configuration page for
    // a CodeDeploy deployment group. This link is provided as part of the action
    // display in the pipeline.
    EntityUrlTemplate *string `locationName:"entityUrlTemplate" min:"1" type:"string"`

    // The URL returned to the CodePipeline console that contains a link to the
    // top-level landing page for the external system, such as the console page
    // for CodeDeploy. This link is shown on the pipeline view page in the CodePipeline
    // console and provides a link to the execution entity of the external action.
    ExecutionUrlTemplate *string `locationName:"executionUrlTemplate" min:"1" type:"string"`

    // The URL returned to the CodePipeline console that contains a link to the
    // page where customers can update or change the configuration of the external
    // action.
    RevisionUrlTemplate *string `locationName:"revisionUrlTemplate" min:"1" type:"string"`

    // The URL of a sign-up page where users can sign up for an external service
    // and perform initial configuration of the action provided by that service.
    ThirdPartyConfigurationUrl *string `locationName:"thirdPartyConfigurationUrl" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Returns information about the settings for an action type.

func (ActionTypeSettings) GoString

func (s ActionTypeSettings) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeSettings) SetEntityUrlTemplate

func (s *ActionTypeSettings) SetEntityUrlTemplate(v string) *ActionTypeSettings

SetEntityUrlTemplate sets the EntityUrlTemplate field's value.

func (*ActionTypeSettings) SetExecutionUrlTemplate

func (s *ActionTypeSettings) SetExecutionUrlTemplate(v string) *ActionTypeSettings

SetExecutionUrlTemplate sets the ExecutionUrlTemplate field's value.

func (*ActionTypeSettings) SetRevisionUrlTemplate

func (s *ActionTypeSettings) SetRevisionUrlTemplate(v string) *ActionTypeSettings

SetRevisionUrlTemplate sets the RevisionUrlTemplate field's value.

func (*ActionTypeSettings) SetThirdPartyConfigurationUrl

func (s *ActionTypeSettings) SetThirdPartyConfigurationUrl(v string) *ActionTypeSettings

SetThirdPartyConfigurationUrl sets the ThirdPartyConfigurationUrl field's value.

func (ActionTypeSettings) String

func (s ActionTypeSettings) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeSettings) Validate

func (s *ActionTypeSettings) Validate() error

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

type ActionTypeUrls

type ActionTypeUrls struct {

    // The URL returned to the CodePipeline console that contains a link to the
    // page where customers can configure the external action.
    ConfigurationUrl *string `locationName:"configurationUrl" min:"1" type:"string"`

    // The URL returned to the CodePipeline console that provides a deep link to
    // the resources of the external system, such as a status page. This link is
    // provided as part of the action display in the pipeline.
    EntityUrlTemplate *string `locationName:"entityUrlTemplate" min:"1" type:"string"`

    // The link to an execution page for the action type in progress. For example,
    // for a CodeDeploy action, this link is shown on the pipeline view page in
    // the CodePipeline console, and it links to a CodeDeploy status page.
    ExecutionUrlTemplate *string `locationName:"executionUrlTemplate" min:"1" type:"string"`

    // The URL returned to the CodePipeline console that contains a link to the
    // page where customers can update or change the configuration of the external
    // action.
    RevisionUrlTemplate *string `locationName:"revisionUrlTemplate" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Returns information about URLs for web pages that display to customers as links on the pipeline view, such as an external configuration page for the action type.

func (ActionTypeUrls) GoString

func (s ActionTypeUrls) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeUrls) SetConfigurationUrl

func (s *ActionTypeUrls) SetConfigurationUrl(v string) *ActionTypeUrls

SetConfigurationUrl sets the ConfigurationUrl field's value.

func (*ActionTypeUrls) SetEntityUrlTemplate

func (s *ActionTypeUrls) SetEntityUrlTemplate(v string) *ActionTypeUrls

SetEntityUrlTemplate sets the EntityUrlTemplate field's value.

func (*ActionTypeUrls) SetExecutionUrlTemplate

func (s *ActionTypeUrls) SetExecutionUrlTemplate(v string) *ActionTypeUrls

SetExecutionUrlTemplate sets the ExecutionUrlTemplate field's value.

func (*ActionTypeUrls) SetRevisionUrlTemplate

func (s *ActionTypeUrls) SetRevisionUrlTemplate(v string) *ActionTypeUrls

SetRevisionUrlTemplate sets the RevisionUrlTemplate field's value.

func (ActionTypeUrls) String

func (s ActionTypeUrls) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ActionTypeUrls) Validate

func (s *ActionTypeUrls) Validate() error

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

type ApprovalAlreadyCompletedException

type ApprovalAlreadyCompletedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The approval action has already been approved or rejected.

func (*ApprovalAlreadyCompletedException) Code

func (s *ApprovalAlreadyCompletedException) Code() string

Code returns the exception type name.

func (*ApprovalAlreadyCompletedException) Error

func (s *ApprovalAlreadyCompletedException) Error() string

func (ApprovalAlreadyCompletedException) GoString

func (s ApprovalAlreadyCompletedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApprovalAlreadyCompletedException) Message

func (s *ApprovalAlreadyCompletedException) Message() string

Message returns the exception's message.

func (*ApprovalAlreadyCompletedException) OrigErr

func (s *ApprovalAlreadyCompletedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ApprovalAlreadyCompletedException) RequestID

func (s *ApprovalAlreadyCompletedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ApprovalAlreadyCompletedException) StatusCode

func (s *ApprovalAlreadyCompletedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ApprovalAlreadyCompletedException) String

func (s ApprovalAlreadyCompletedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ApprovalResult

type ApprovalResult struct {

    // The response submitted by a reviewer assigned to an approval action request.
    //
    // Status is a required field
    Status *string `locationName:"status" type:"string" required:"true" enum:"ApprovalStatus"`

    // The summary of the current status of the approval request.
    //
    // Summary is a required field
    Summary *string `locationName:"summary" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about the result of an approval request.

func (ApprovalResult) GoString

func (s ApprovalResult) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApprovalResult) SetStatus

func (s *ApprovalResult) SetStatus(v string) *ApprovalResult

SetStatus sets the Status field's value.

func (*ApprovalResult) SetSummary

func (s *ApprovalResult) SetSummary(v string) *ApprovalResult

SetSummary sets the Summary field's value.

func (ApprovalResult) String

func (s ApprovalResult) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ApprovalResult) Validate

func (s *ApprovalResult) Validate() error

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

type Artifact

type Artifact struct {

    // The location of an artifact.
    Location *ArtifactLocation `locationName:"location" type:"structure"`

    // The artifact's name.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The artifact's revision ID. Depending on the type of object, this could be
    // a commit ID (GitHub) or a revision ID (Amazon S3).
    Revision *string `locationName:"revision" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Artifacts are the files that are worked on by actions in the pipeline. See the action configuration for each action for details about artifact parameters. For example, the S3 source action artifact is a file name (or file path), and the files are generally provided as a ZIP file. Example artifact name: SampleApp_Windows.zip

func (Artifact) GoString

func (s Artifact) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Artifact) SetLocation

func (s *Artifact) SetLocation(v *ArtifactLocation) *Artifact

SetLocation sets the Location field's value.

func (*Artifact) SetName

func (s *Artifact) SetName(v string) *Artifact

SetName sets the Name field's value.

func (*Artifact) SetRevision

func (s *Artifact) SetRevision(v string) *Artifact

SetRevision sets the Revision field's value.

func (Artifact) String

func (s Artifact) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ArtifactDetail

type ArtifactDetail struct {

    // The artifact object name for the action execution.
    Name *string `locationName:"name" min:"1" type:"string"`

    // The Amazon S3 artifact location for the action execution.
    S3location *S3Location `locationName:"s3location" type:"structure"`
    // contains filtered or unexported fields
}

Artifact details for the action execution, such as the artifact location.

func (ArtifactDetail) GoString

func (s ArtifactDetail) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactDetail) SetName

func (s *ArtifactDetail) SetName(v string) *ArtifactDetail

SetName sets the Name field's value.

func (*ArtifactDetail) SetS3location

func (s *ArtifactDetail) SetS3location(v *S3Location) *ArtifactDetail

SetS3location sets the S3location field's value.

func (ArtifactDetail) String

func (s ArtifactDetail) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ArtifactDetails

type ArtifactDetails struct {

    // The maximum number of artifacts allowed for the action type.
    //
    // MaximumCount is a required field
    MaximumCount *int64 `locationName:"maximumCount" type:"integer" required:"true"`

    // The minimum number of artifacts allowed for the action type.
    //
    // MinimumCount is a required field
    MinimumCount *int64 `locationName:"minimumCount" type:"integer" required:"true"`
    // contains filtered or unexported fields
}

Returns information about the details of an artifact.

func (ArtifactDetails) GoString

func (s ArtifactDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactDetails) SetMaximumCount

func (s *ArtifactDetails) SetMaximumCount(v int64) *ArtifactDetails

SetMaximumCount sets the MaximumCount field's value.

func (*ArtifactDetails) SetMinimumCount

func (s *ArtifactDetails) SetMinimumCount(v int64) *ArtifactDetails

SetMinimumCount sets the MinimumCount field's value.

func (ArtifactDetails) String

func (s ArtifactDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactDetails) Validate

func (s *ArtifactDetails) Validate() error

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

type ArtifactLocation

type ArtifactLocation struct {

    // The S3 bucket that contains the artifact.
    S3Location *S3ArtifactLocation `locationName:"s3Location" type:"structure"`

    // The type of artifact in the location.
    Type *string `locationName:"type" type:"string" enum:"ArtifactLocationType"`
    // contains filtered or unexported fields
}

Represents information about the location of an artifact.

func (ArtifactLocation) GoString

func (s ArtifactLocation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactLocation) SetS3Location

func (s *ArtifactLocation) SetS3Location(v *S3ArtifactLocation) *ArtifactLocation

SetS3Location sets the S3Location field's value.

func (*ArtifactLocation) SetType

func (s *ArtifactLocation) SetType(v string) *ArtifactLocation

SetType sets the Type field's value.

func (ArtifactLocation) String

func (s ArtifactLocation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ArtifactRevision

type ArtifactRevision struct {

    // The date and time when the most recent revision of the artifact was created,
    // in timestamp format.
    Created *time.Time `locationName:"created" type:"timestamp"`

    // The name of an artifact. This name might be system-generated, such as "MyApp",
    // or defined by the user when an action is created.
    Name *string `locationName:"name" min:"1" type:"string"`

    // An additional identifier for a revision, such as a commit date or, for artifacts
    // stored in Amazon S3 buckets, the ETag value.
    RevisionChangeIdentifier *string `locationName:"revisionChangeIdentifier" min:"1" type:"string"`

    // The revision ID of the artifact.
    RevisionId *string `locationName:"revisionId" min:"1" type:"string"`

    // Summary information about the most recent revision of the artifact. For GitHub
    // and CodeCommit repositories, the commit message. For Amazon S3 buckets or
    // actions, the user-provided content of a codepipeline-artifact-revision-summary
    // key specified in the object metadata.
    RevisionSummary *string `locationName:"revisionSummary" min:"1" type:"string"`

    // The commit ID for the artifact revision. For artifacts stored in GitHub or
    // CodeCommit repositories, the commit ID is linked to a commit details page.
    RevisionUrl *string `locationName:"revisionUrl" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents revision details of an artifact.

func (ArtifactRevision) GoString

func (s ArtifactRevision) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactRevision) SetCreated

func (s *ArtifactRevision) SetCreated(v time.Time) *ArtifactRevision

SetCreated sets the Created field's value.

func (*ArtifactRevision) SetName

func (s *ArtifactRevision) SetName(v string) *ArtifactRevision

SetName sets the Name field's value.

func (*ArtifactRevision) SetRevisionChangeIdentifier

func (s *ArtifactRevision) SetRevisionChangeIdentifier(v string) *ArtifactRevision

SetRevisionChangeIdentifier sets the RevisionChangeIdentifier field's value.

func (*ArtifactRevision) SetRevisionId

func (s *ArtifactRevision) SetRevisionId(v string) *ArtifactRevision

SetRevisionId sets the RevisionId field's value.

func (*ArtifactRevision) SetRevisionSummary

func (s *ArtifactRevision) SetRevisionSummary(v string) *ArtifactRevision

SetRevisionSummary sets the RevisionSummary field's value.

func (*ArtifactRevision) SetRevisionUrl

func (s *ArtifactRevision) SetRevisionUrl(v string) *ArtifactRevision

SetRevisionUrl sets the RevisionUrl field's value.

func (ArtifactRevision) String

func (s ArtifactRevision) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ArtifactStore

type ArtifactStore struct {

    // The encryption key used to encrypt the data in the artifact store, such as
    // an Amazon Web Services Key Management Service key. If this is undefined,
    // the default key for Amazon S3 is used.
    EncryptionKey *EncryptionKey `locationName:"encryptionKey" type:"structure"`

    // The S3 bucket used for storing the artifacts for a pipeline. You can specify
    // the name of an S3 bucket but not a folder in the bucket. A folder to contain
    // the pipeline artifacts is created for you based on the name of the pipeline.
    // You can use any S3 bucket in the same Amazon Web Services Region as the pipeline
    // to store your pipeline artifacts.
    //
    // Location is a required field
    Location *string `locationName:"location" min:"3" type:"string" required:"true"`

    // The type of the artifact store, such as S3.
    //
    // Type is a required field
    Type *string `locationName:"type" type:"string" required:"true" enum:"ArtifactStoreType"`
    // contains filtered or unexported fields
}

The S3 bucket where artifacts for the pipeline are stored.

You must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores.

func (ArtifactStore) GoString

func (s ArtifactStore) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactStore) SetEncryptionKey

func (s *ArtifactStore) SetEncryptionKey(v *EncryptionKey) *ArtifactStore

SetEncryptionKey sets the EncryptionKey field's value.

func (*ArtifactStore) SetLocation

func (s *ArtifactStore) SetLocation(v string) *ArtifactStore

SetLocation sets the Location field's value.

func (*ArtifactStore) SetType

func (s *ArtifactStore) SetType(v string) *ArtifactStore

SetType sets the Type field's value.

func (ArtifactStore) String

func (s ArtifactStore) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ArtifactStore) Validate

func (s *ArtifactStore) Validate() error

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

type BlockerDeclaration

type BlockerDeclaration struct {

    // Reserved for future use.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // Reserved for future use.
    //
    // Type is a required field
    Type *string `locationName:"type" type:"string" required:"true" enum:"BlockerType"`
    // contains filtered or unexported fields
}

Reserved for future use.

func (BlockerDeclaration) GoString

func (s BlockerDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BlockerDeclaration) SetName

func (s *BlockerDeclaration) SetName(v string) *BlockerDeclaration

SetName sets the Name field's value.

func (*BlockerDeclaration) SetType

func (s *BlockerDeclaration) SetType(v string) *BlockerDeclaration

SetType sets the Type field's value.

func (BlockerDeclaration) String

func (s BlockerDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*BlockerDeclaration) Validate

func (s *BlockerDeclaration) Validate() error

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

type CodePipeline

type CodePipeline struct {
    *client.Client
}

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

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

func New

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

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

Example:

mySession := session.Must(session.NewSession())

// Create a CodePipeline client from just a session.
svc := codepipeline.New(mySession)

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

func (*CodePipeline) AcknowledgeJob

func (c *CodePipeline) AcknowledgeJob(input *AcknowledgeJobInput) (*AcknowledgeJobOutput, error)

AcknowledgeJob API operation for AWS CodePipeline.

Returns information about a specified job and whether that job has been received by the job worker. Used for custom actions only.

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

See the AWS API reference guide for AWS CodePipeline's API operation AcknowledgeJob for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeJob

func (*CodePipeline) AcknowledgeJobRequest

func (c *CodePipeline) AcknowledgeJobRequest(input *AcknowledgeJobInput) (req *request.Request, output *AcknowledgeJobOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeJob

func (*CodePipeline) AcknowledgeJobWithContext

func (c *CodePipeline) AcknowledgeJobWithContext(ctx aws.Context, input *AcknowledgeJobInput, opts ...request.Option) (*AcknowledgeJobOutput, error)

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

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

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

func (*CodePipeline) AcknowledgeThirdPartyJob

func (c *CodePipeline) AcknowledgeThirdPartyJob(input *AcknowledgeThirdPartyJobInput) (*AcknowledgeThirdPartyJobOutput, error)

AcknowledgeThirdPartyJob API operation for AWS CodePipeline.

Confirms a job worker has received the specified job. Used for partner actions only.

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

See the AWS API reference guide for AWS CodePipeline's API operation AcknowledgeThirdPartyJob for usage and error information.

Returned Error Types:

  • 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 format

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeThirdPartyJob

func (*CodePipeline) AcknowledgeThirdPartyJobRequest

func (c *CodePipeline) AcknowledgeThirdPartyJobRequest(input *AcknowledgeThirdPartyJobInput) (req *request.Request, output *AcknowledgeThirdPartyJobOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/AcknowledgeThirdPartyJob

func (*CodePipeline) AcknowledgeThirdPartyJobWithContext

func (c *CodePipeline) AcknowledgeThirdPartyJobWithContext(ctx aws.Context, input *AcknowledgeThirdPartyJobInput, opts ...request.Option) (*AcknowledgeThirdPartyJobOutput, error)

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

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

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

func (*CodePipeline) CreateCustomActionType

func (c *CodePipeline) CreateCustomActionType(input *CreateCustomActionTypeInput) (*CreateCustomActionTypeOutput, error)

CreateCustomActionType API operation for AWS CodePipeline.

Creates a new custom action that can be used in all pipelines associated with the Amazon Web Services account. Only used for custom actions.

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

See the AWS API reference guide for AWS CodePipeline's API operation CreateCustomActionType for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreateCustomActionType

func (*CodePipeline) CreateCustomActionTypeRequest

func (c *CodePipeline) CreateCustomActionTypeRequest(input *CreateCustomActionTypeInput) (req *request.Request, output *CreateCustomActionTypeOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreateCustomActionType

func (*CodePipeline) CreateCustomActionTypeWithContext

func (c *CodePipeline) CreateCustomActionTypeWithContext(ctx aws.Context, input *CreateCustomActionTypeInput, opts ...request.Option) (*CreateCustomActionTypeOutput, error)

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

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

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

func (*CodePipeline) CreatePipeline

func (c *CodePipeline) CreatePipeline(input *CreatePipelineInput) (*CreatePipelineOutput, error)

CreatePipeline API operation for AWS CodePipeline.

Creates a pipeline.

In the pipeline structure, you must include either artifactStore or artifactStores in your pipeline, but you cannot use both. If you create a cross-region action in your pipeline, you must use artifactStores.

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

See the AWS API reference guide for AWS CodePipeline's API operation CreatePipeline for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreatePipeline

func (*CodePipeline) CreatePipelineRequest

func (c *CodePipeline) CreatePipelineRequest(input *CreatePipelineInput) (req *request.Request, output *CreatePipelineOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/CreatePipeline

func (*CodePipeline) CreatePipelineWithContext

func (c *CodePipeline) CreatePipelineWithContext(ctx aws.Context, input *CreatePipelineInput, opts ...request.Option) (*CreatePipelineOutput, error)

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

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

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

func (*CodePipeline) DeleteCustomActionType

func (c *CodePipeline) DeleteCustomActionType(input *DeleteCustomActionTypeInput) (*DeleteCustomActionTypeOutput, error)

DeleteCustomActionType API operation for AWS CodePipeline.

Marks a custom action as deleted. PollForJobs for 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.

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

See the AWS API reference guide for AWS CodePipeline's API operation DeleteCustomActionType for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • ConcurrentModificationException Unable to modify the tag due to a simultaneous update request.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeleteCustomActionType

func (*CodePipeline) DeleteCustomActionTypeRequest

func (c *CodePipeline) DeleteCustomActionTypeRequest(input *DeleteCustomActionTypeInput) (req *request.Request, output *DeleteCustomActionTypeOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeleteCustomActionType

func (*CodePipeline) DeleteCustomActionTypeWithContext

func (c *CodePipeline) DeleteCustomActionTypeWithContext(ctx aws.Context, input *DeleteCustomActionTypeInput, opts ...request.Option) (*DeleteCustomActionTypeOutput, error)

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

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

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

func (*CodePipeline) DeletePipeline

func (c *CodePipeline) DeletePipeline(input *DeletePipelineInput) (*DeletePipelineOutput, error)

DeletePipeline API operation for AWS CodePipeline.

Deletes the specified pipeline.

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

See the AWS API reference guide for AWS CodePipeline's API operation DeletePipeline for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • ConcurrentModificationException Unable to modify the tag due to a simultaneous update request.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeletePipeline

func (*CodePipeline) DeletePipelineRequest

func (c *CodePipeline) DeletePipelineRequest(input *DeletePipelineInput) (req *request.Request, output *DeletePipelineOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeletePipeline

func (*CodePipeline) DeletePipelineWithContext

func (c *CodePipeline) DeletePipelineWithContext(ctx aws.Context, input *DeletePipelineInput, opts ...request.Option) (*DeletePipelineOutput, error)

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

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

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

func (*CodePipeline) DeleteWebhook

func (c *CodePipeline) DeleteWebhook(input *DeleteWebhookInput) (*DeleteWebhookOutput, error)

DeleteWebhook API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation DeleteWebhook for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • ConcurrentModificationException Unable to modify the tag due to a simultaneous update request.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeleteWebhook

func (*CodePipeline) DeleteWebhookRequest

func (c *CodePipeline) DeleteWebhookRequest(input *DeleteWebhookInput) (req *request.Request, output *DeleteWebhookOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeleteWebhook

func (*CodePipeline) DeleteWebhookWithContext

func (c *CodePipeline) DeleteWebhookWithContext(ctx aws.Context, input *DeleteWebhookInput, opts ...request.Option) (*DeleteWebhookOutput, error)

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

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

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

func (*CodePipeline) DeregisterWebhookWithThirdParty

func (c *CodePipeline) DeregisterWebhookWithThirdParty(input *DeregisterWebhookWithThirdPartyInput) (*DeregisterWebhookWithThirdPartyOutput, error)

DeregisterWebhookWithThirdParty API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation DeregisterWebhookWithThirdParty for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • WebhookNotFoundException The specified webhook was entered in an invalid format or cannot be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeregisterWebhookWithThirdParty

func (*CodePipeline) DeregisterWebhookWithThirdPartyRequest

func (c *CodePipeline) DeregisterWebhookWithThirdPartyRequest(input *DeregisterWebhookWithThirdPartyInput) (req *request.Request, output *DeregisterWebhookWithThirdPartyOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DeregisterWebhookWithThirdParty

func (*CodePipeline) DeregisterWebhookWithThirdPartyWithContext

func (c *CodePipeline) DeregisterWebhookWithThirdPartyWithContext(ctx aws.Context, input *DeregisterWebhookWithThirdPartyInput, opts ...request.Option) (*DeregisterWebhookWithThirdPartyOutput, error)

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

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

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

func (*CodePipeline) DisableStageTransition

func (c *CodePipeline) DisableStageTransition(input *DisableStageTransitionInput) (*DisableStageTransitionOutput, error)

DisableStageTransition API operation for AWS CodePipeline.

Prevents artifacts in a pipeline from transitioning to the next stage in the pipeline.

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

See the AWS API reference guide for AWS CodePipeline's API operation DisableStageTransition for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DisableStageTransition

func (*CodePipeline) DisableStageTransitionRequest

func (c *CodePipeline) DisableStageTransitionRequest(input *DisableStageTransitionInput) (req *request.Request, output *DisableStageTransitionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/DisableStageTransition

func (*CodePipeline) DisableStageTransitionWithContext

func (c *CodePipeline) DisableStageTransitionWithContext(ctx aws.Context, input *DisableStageTransitionInput, opts ...request.Option) (*DisableStageTransitionOutput, error)

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

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

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

func (*CodePipeline) EnableStageTransition

func (c *CodePipeline) EnableStageTransition(input *EnableStageTransitionInput) (*EnableStageTransitionOutput, error)

EnableStageTransition API operation for AWS CodePipeline.

Enables artifacts in a pipeline to transition to a stage in a pipeline.

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

See the AWS API reference guide for AWS CodePipeline's API operation EnableStageTransition for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/EnableStageTransition

func (*CodePipeline) EnableStageTransitionRequest

func (c *CodePipeline) EnableStageTransitionRequest(input *EnableStageTransitionInput) (req *request.Request, output *EnableStageTransitionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/EnableStageTransition

func (*CodePipeline) EnableStageTransitionWithContext

func (c *CodePipeline) EnableStageTransitionWithContext(ctx aws.Context, input *EnableStageTransitionInput, opts ...request.Option) (*EnableStageTransitionOutput, error)

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

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

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

func (*CodePipeline) GetActionType

func (c *CodePipeline) GetActionType(input *GetActionTypeInput) (*GetActionTypeOutput, error)

GetActionType API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation GetActionType for usage and error information.

Returned Error Types:

  • ActionTypeNotFoundException The specified action type cannot be found.

  • ValidationException The validation was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetActionType

func (*CodePipeline) GetActionTypeRequest

func (c *CodePipeline) GetActionTypeRequest(input *GetActionTypeInput) (req *request.Request, output *GetActionTypeOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetActionType

func (*CodePipeline) GetActionTypeWithContext

func (c *CodePipeline) GetActionTypeWithContext(ctx aws.Context, input *GetActionTypeInput, opts ...request.Option) (*GetActionTypeOutput, error)

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

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

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

func (*CodePipeline) GetJobDetails

func (c *CodePipeline) GetJobDetails(input *GetJobDetailsInput) (*GetJobDetailsOutput, error)

GetJobDetails API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation GetJobDetails for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • JobNotFoundException The job was specified in an invalid format or cannot be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetJobDetails

func (*CodePipeline) GetJobDetailsRequest

func (c *CodePipeline) GetJobDetailsRequest(input *GetJobDetailsInput) (req *request.Request, output *GetJobDetailsOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetJobDetails

func (*CodePipeline) GetJobDetailsWithContext

func (c *CodePipeline) GetJobDetailsWithContext(ctx aws.Context, input *GetJobDetailsInput, opts ...request.Option) (*GetJobDetailsOutput, error)

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

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

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

func (*CodePipeline) GetPipeline

func (c *CodePipeline) GetPipeline(input *GetPipelineInput) (*GetPipelineOutput, error)

GetPipeline API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation GetPipeline for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipeline

func (*CodePipeline) GetPipelineExecution

func (c *CodePipeline) GetPipelineExecution(input *GetPipelineExecutionInput) (*GetPipelineExecutionOutput, error)

GetPipelineExecution API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation GetPipelineExecution for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineExecution

func (*CodePipeline) GetPipelineExecutionRequest

func (c *CodePipeline) GetPipelineExecutionRequest(input *GetPipelineExecutionInput) (req *request.Request, output *GetPipelineExecutionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineExecution

func (*CodePipeline) GetPipelineExecutionWithContext

func (c *CodePipeline) GetPipelineExecutionWithContext(ctx aws.Context, input *GetPipelineExecutionInput, opts ...request.Option) (*GetPipelineExecutionOutput, error)

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

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

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

func (*CodePipeline) GetPipelineRequest

func (c *CodePipeline) GetPipelineRequest(input *GetPipelineInput) (req *request.Request, output *GetPipelineOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipeline

func (*CodePipeline) GetPipelineState

func (c *CodePipeline) GetPipelineState(input *GetPipelineStateInput) (*GetPipelineStateOutput, error)

GetPipelineState API operation for AWS CodePipeline.

Returns information about the state of a pipeline, including the stages and actions.

Values returned in the revisionId and revisionUrl fields indicate the source revision information, such as the commit ID, for the current state.

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

See the AWS API reference guide for AWS CodePipeline's API operation GetPipelineState for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • PipelineNotFoundException The pipeline was specified in an invalid format or cannot be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineState

func (*CodePipeline) GetPipelineStateRequest

func (c *CodePipeline) GetPipelineStateRequest(input *GetPipelineStateInput) (req *request.Request, output *GetPipelineStateOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetPipelineState

func (*CodePipeline) GetPipelineStateWithContext

func (c *CodePipeline) GetPipelineStateWithContext(ctx aws.Context, input *GetPipelineStateInput, opts ...request.Option) (*GetPipelineStateOutput, error)

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

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

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

func (*CodePipeline) GetPipelineWithContext

func (c *CodePipeline) GetPipelineWithContext(ctx aws.Context, input *GetPipelineInput, opts ...request.Option) (*GetPipelineOutput, error)

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

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

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

func (*CodePipeline) GetThirdPartyJobDetails

func (c *CodePipeline) GetThirdPartyJobDetails(input *GetThirdPartyJobDetailsInput) (*GetThirdPartyJobDetailsOutput, error)

GetThirdPartyJobDetails API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation GetThirdPartyJobDetails for usage and error information.

Returned Error Types:

  • 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 format

  • InvalidJobException The job was specified in an invalid format or cannot be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetThirdPartyJobDetails

func (*CodePipeline) GetThirdPartyJobDetailsRequest

func (c *CodePipeline) GetThirdPartyJobDetailsRequest(input *GetThirdPartyJobDetailsInput) (req *request.Request, output *GetThirdPartyJobDetailsOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/GetThirdPartyJobDetails

func (*CodePipeline) GetThirdPartyJobDetailsWithContext

func (c *CodePipeline) GetThirdPartyJobDetailsWithContext(ctx aws.Context, input *GetThirdPartyJobDetailsInput, opts ...request.Option) (*GetThirdPartyJobDetailsOutput, error)

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

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

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

func (*CodePipeline) ListActionExecutions

func (c *CodePipeline) ListActionExecutions(input *ListActionExecutionsInput) (*ListActionExecutionsOutput, error)

ListActionExecutions API operation for AWS CodePipeline.

Lists the action executions that have occurred in a pipeline.

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

See the AWS API reference guide for AWS CodePipeline's API operation ListActionExecutions for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListActionExecutions

func (*CodePipeline) ListActionExecutionsPages

func (c *CodePipeline) ListActionExecutionsPages(input *ListActionExecutionsInput, fn func(*ListActionExecutionsOutput, bool) bool) error

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

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

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

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

func (*CodePipeline) ListActionExecutionsPagesWithContext

func (c *CodePipeline) ListActionExecutionsPagesWithContext(ctx aws.Context, input *ListActionExecutionsInput, fn func(*ListActionExecutionsOutput, bool) bool, opts ...request.Option) error

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

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

func (*CodePipeline) ListActionExecutionsRequest

func (c *CodePipeline) ListActionExecutionsRequest(input *ListActionExecutionsInput) (req *request.Request, output *ListActionExecutionsOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListActionExecutions

func (*CodePipeline) ListActionExecutionsWithContext

func (c *CodePipeline) ListActionExecutionsWithContext(ctx aws.Context, input *ListActionExecutionsInput, opts ...request.Option) (*ListActionExecutionsOutput, error)

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

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

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

func (*CodePipeline) ListActionTypes

func (c *CodePipeline) ListActionTypes(input *ListActionTypesInput) (*ListActionTypesOutput, error)

ListActionTypes API operation for AWS CodePipeline.

Gets a summary of all CodePipeline action types associated with your account.

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

See the AWS API reference guide for AWS CodePipeline's API operation ListActionTypes for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListActionTypes

func (*CodePipeline) ListActionTypesPages

func (c *CodePipeline) ListActionTypesPages(input *ListActionTypesInput, fn func(*ListActionTypesOutput, bool) bool) error

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

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

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

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

func (*CodePipeline) ListActionTypesPagesWithContext

func (c *CodePipeline) ListActionTypesPagesWithContext(ctx aws.Context, input *ListActionTypesInput, fn func(*ListActionTypesOutput, bool) bool, opts ...request.Option) error

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

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

func (*CodePipeline) ListActionTypesRequest

func (c *CodePipeline) ListActionTypesRequest(input *ListActionTypesInput) (req *request.Request, output *ListActionTypesOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListActionTypes

func (*CodePipeline) ListActionTypesWithContext

func (c *CodePipeline) ListActionTypesWithContext(ctx aws.Context, input *ListActionTypesInput, opts ...request.Option) (*ListActionTypesOutput, error)

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

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

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

func (*CodePipeline) ListPipelineExecutions

func (c *CodePipeline) ListPipelineExecutions(input *ListPipelineExecutionsInput) (*ListPipelineExecutionsOutput, error)

ListPipelineExecutions API operation for AWS CodePipeline.

Gets a summary of the most recent executions for a pipeline.

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

See the AWS API reference guide for AWS CodePipeline's API operation ListPipelineExecutions for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelineExecutions

func (*CodePipeline) ListPipelineExecutionsPages

func (c *CodePipeline) ListPipelineExecutionsPages(input *ListPipelineExecutionsInput, fn func(*ListPipelineExecutionsOutput, bool) bool) error

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

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

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

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

func (*CodePipeline) ListPipelineExecutionsPagesWithContext

func (c *CodePipeline) ListPipelineExecutionsPagesWithContext(ctx aws.Context, input *ListPipelineExecutionsInput, fn func(*ListPipelineExecutionsOutput, bool) bool, opts ...request.Option) error

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

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

func (*CodePipeline) ListPipelineExecutionsRequest

func (c *CodePipeline) ListPipelineExecutionsRequest(input *ListPipelineExecutionsInput) (req *request.Request, output *ListPipelineExecutionsOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelineExecutions

func (*CodePipeline) ListPipelineExecutionsWithContext

func (c *CodePipeline) ListPipelineExecutionsWithContext(ctx aws.Context, input *ListPipelineExecutionsInput, opts ...request.Option) (*ListPipelineExecutionsOutput, error)

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

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

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

func (*CodePipeline) ListPipelines

func (c *CodePipeline) ListPipelines(input *ListPipelinesInput) (*ListPipelinesOutput, error)

ListPipelines API operation for AWS CodePipeline.

Gets a summary of all of the pipelines associated with your account.

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

See the AWS API reference guide for AWS CodePipeline's API operation ListPipelines for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelines

func (*CodePipeline) ListPipelinesPages

func (c *CodePipeline) ListPipelinesPages(input *ListPipelinesInput, fn func(*ListPipelinesOutput, bool) bool) error

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

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

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

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

func (*CodePipeline) ListPipelinesPagesWithContext

func (c *CodePipeline) ListPipelinesPagesWithContext(ctx aws.Context, input *ListPipelinesInput, fn func(*ListPipelinesOutput, bool) bool, opts ...request.Option) error

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

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

func (*CodePipeline) ListPipelinesRequest

func (c *CodePipeline) ListPipelinesRequest(input *ListPipelinesInput) (req *request.Request, output *ListPipelinesOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListPipelines

func (*CodePipeline) ListPipelinesWithContext

func (c *CodePipeline) ListPipelinesWithContext(ctx aws.Context, input *ListPipelinesInput, opts ...request.Option) (*ListPipelinesOutput, error)

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

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

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

func (*CodePipeline) ListTagsForResource

func (c *CodePipeline) ListTagsForResource(input *ListTagsForResourceInput) (*ListTagsForResourceOutput, error)

ListTagsForResource API operation for AWS CodePipeline.

Gets the set of key-value pairs (metadata) that are used to manage the resource.

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

See the AWS API reference guide for AWS CodePipeline's API operation ListTagsForResource for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListTagsForResource

func (*CodePipeline) ListTagsForResourcePages

func (c *CodePipeline) ListTagsForResourcePages(input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool) error

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

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

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

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

func (*CodePipeline) ListTagsForResourcePagesWithContext

func (c *CodePipeline) ListTagsForResourcePagesWithContext(ctx aws.Context, input *ListTagsForResourceInput, fn func(*ListTagsForResourceOutput, bool) bool, opts ...request.Option) error

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

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

func (*CodePipeline) ListTagsForResourceRequest

func (c *CodePipeline) ListTagsForResourceRequest(input *ListTagsForResourceInput) (req *request.Request, output *ListTagsForResourceOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListTagsForResource

func (*CodePipeline) ListTagsForResourceWithContext

func (c *CodePipeline) ListTagsForResourceWithContext(ctx aws.Context, input *ListTagsForResourceInput, opts ...request.Option) (*ListTagsForResourceOutput, error)

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

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

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

func (*CodePipeline) ListWebhooks

func (c *CodePipeline) ListWebhooks(input *ListWebhooksInput) (*ListWebhooksOutput, error)

ListWebhooks API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation ListWebhooks for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListWebhooks

func (*CodePipeline) ListWebhooksPages

func (c *CodePipeline) ListWebhooksPages(input *ListWebhooksInput, fn func(*ListWebhooksOutput, bool) bool) error

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

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

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

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

func (*CodePipeline) ListWebhooksPagesWithContext

func (c *CodePipeline) ListWebhooksPagesWithContext(ctx aws.Context, input *ListWebhooksInput, fn func(*ListWebhooksOutput, bool) bool, opts ...request.Option) error

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

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

func (*CodePipeline) ListWebhooksRequest

func (c *CodePipeline) ListWebhooksRequest(input *ListWebhooksInput) (req *request.Request, output *ListWebhooksOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/ListWebhooks

func (*CodePipeline) ListWebhooksWithContext

func (c *CodePipeline) ListWebhooksWithContext(ctx aws.Context, input *ListWebhooksInput, opts ...request.Option) (*ListWebhooksOutput, error)

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

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

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

func (*CodePipeline) PollForJobs

func (c *CodePipeline) PollForJobs(input *PollForJobsInput) (*PollForJobsOutput, error)

PollForJobs API operation for AWS CodePipeline.

Returns information about any jobs for CodePipeline to act on. PollForJobs is valid only for action types with "Custom" in the owner field. If the action type contains AWS or ThirdParty in the owner field, the PollForJobs action 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.

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

See the AWS API reference guide for AWS CodePipeline's API operation PollForJobs for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • ActionTypeNotFoundException The specified action type cannot be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PollForJobs

func (*CodePipeline) PollForJobsRequest

func (c *CodePipeline) PollForJobsRequest(input *PollForJobsInput) (req *request.Request, output *PollForJobsOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PollForJobs

func (*CodePipeline) PollForJobsWithContext

func (c *CodePipeline) PollForJobsWithContext(ctx aws.Context, input *PollForJobsInput, opts ...request.Option) (*PollForJobsOutput, error)

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

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

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

func (*CodePipeline) PollForThirdPartyJobs

func (c *CodePipeline) PollForThirdPartyJobs(input *PollForThirdPartyJobsInput) (*PollForThirdPartyJobsOutput, error)

PollForThirdPartyJobs API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation PollForThirdPartyJobs for usage and error information.

Returned Error Types:

  • ActionTypeNotFoundException The specified action type cannot be found.

  • ValidationException The validation was specified in an invalid format.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PollForThirdPartyJobs

func (*CodePipeline) PollForThirdPartyJobsRequest

func (c *CodePipeline) PollForThirdPartyJobsRequest(input *PollForThirdPartyJobsInput) (req *request.Request, output *PollForThirdPartyJobsOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PollForThirdPartyJobs

func (*CodePipeline) PollForThirdPartyJobsWithContext

func (c *CodePipeline) PollForThirdPartyJobsWithContext(ctx aws.Context, input *PollForThirdPartyJobsInput, opts ...request.Option) (*PollForThirdPartyJobsOutput, error)

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

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

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

func (*CodePipeline) PutActionRevision

func (c *CodePipeline) PutActionRevision(input *PutActionRevisionInput) (*PutActionRevisionOutput, error)

PutActionRevision API operation for AWS CodePipeline.

Provides information to CodePipeline about new revisions to a source.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutActionRevision for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutActionRevision

func (*CodePipeline) PutActionRevisionRequest

func (c *CodePipeline) PutActionRevisionRequest(input *PutActionRevisionInput) (req *request.Request, output *PutActionRevisionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutActionRevision

func (*CodePipeline) PutActionRevisionWithContext

func (c *CodePipeline) PutActionRevisionWithContext(ctx aws.Context, input *PutActionRevisionInput, opts ...request.Option) (*PutActionRevisionOutput, error)

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

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

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

func (*CodePipeline) PutApprovalResult

func (c *CodePipeline) PutApprovalResult(input *PutApprovalResultInput) (*PutApprovalResultOutput, error)

PutApprovalResult API operation for AWS CodePipeline.

Provides the response to a manual approval request to CodePipeline. Valid responses include Approved and Rejected.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutApprovalResult for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutApprovalResult

func (*CodePipeline) PutApprovalResultRequest

func (c *CodePipeline) PutApprovalResultRequest(input *PutApprovalResultInput) (req *request.Request, output *PutApprovalResultOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutApprovalResult

func (*CodePipeline) PutApprovalResultWithContext

func (c *CodePipeline) PutApprovalResultWithContext(ctx aws.Context, input *PutApprovalResultInput, opts ...request.Option) (*PutApprovalResultOutput, error)

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

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

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

func (*CodePipeline) PutJobFailureResult

func (c *CodePipeline) PutJobFailureResult(input *PutJobFailureResultInput) (*PutJobFailureResultOutput, error)

PutJobFailureResult API operation for AWS CodePipeline.

Represents the failure of a job as returned to the pipeline by a job worker. Used for custom actions only.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutJobFailureResult for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobFailureResult

func (*CodePipeline) PutJobFailureResultRequest

func (c *CodePipeline) PutJobFailureResultRequest(input *PutJobFailureResultInput) (req *request.Request, output *PutJobFailureResultOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobFailureResult

func (*CodePipeline) PutJobFailureResultWithContext

func (c *CodePipeline) PutJobFailureResultWithContext(ctx aws.Context, input *PutJobFailureResultInput, opts ...request.Option) (*PutJobFailureResultOutput, error)

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

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

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

func (*CodePipeline) PutJobSuccessResult

func (c *CodePipeline) PutJobSuccessResult(input *PutJobSuccessResultInput) (*PutJobSuccessResultOutput, error)

PutJobSuccessResult API operation for AWS CodePipeline.

Represents the success of a job as returned to the pipeline by a job worker. Used for custom actions only.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutJobSuccessResult for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobSuccessResult

func (*CodePipeline) PutJobSuccessResultRequest

func (c *CodePipeline) PutJobSuccessResultRequest(input *PutJobSuccessResultInput) (req *request.Request, output *PutJobSuccessResultOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutJobSuccessResult

func (*CodePipeline) PutJobSuccessResultWithContext

func (c *CodePipeline) PutJobSuccessResultWithContext(ctx aws.Context, input *PutJobSuccessResultInput, opts ...request.Option) (*PutJobSuccessResultOutput, error)

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

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

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

func (*CodePipeline) PutThirdPartyJobFailureResult

func (c *CodePipeline) PutThirdPartyJobFailureResult(input *PutThirdPartyJobFailureResultInput) (*PutThirdPartyJobFailureResultOutput, error)

PutThirdPartyJobFailureResult API operation for AWS CodePipeline.

Represents the failure of a third party job as returned to the pipeline by a job worker. Used for partner actions only.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutThirdPartyJobFailureResult for usage and error information.

Returned Error Types:

  • 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 format

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutThirdPartyJobFailureResult

func (*CodePipeline) PutThirdPartyJobFailureResultRequest

func (c *CodePipeline) PutThirdPartyJobFailureResultRequest(input *PutThirdPartyJobFailureResultInput) (req *request.Request, output *PutThirdPartyJobFailureResultOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutThirdPartyJobFailureResult

func (*CodePipeline) PutThirdPartyJobFailureResultWithContext

func (c *CodePipeline) PutThirdPartyJobFailureResultWithContext(ctx aws.Context, input *PutThirdPartyJobFailureResultInput, opts ...request.Option) (*PutThirdPartyJobFailureResultOutput, error)

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

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

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

func (*CodePipeline) PutThirdPartyJobSuccessResult

func (c *CodePipeline) PutThirdPartyJobSuccessResult(input *PutThirdPartyJobSuccessResultInput) (*PutThirdPartyJobSuccessResultOutput, error)

PutThirdPartyJobSuccessResult API operation for AWS CodePipeline.

Represents the success of a third party job as returned to the pipeline by a job worker. Used for partner actions only.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutThirdPartyJobSuccessResult for usage and error information.

Returned Error Types:

  • 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 format

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutThirdPartyJobSuccessResult

func (*CodePipeline) PutThirdPartyJobSuccessResultRequest

func (c *CodePipeline) PutThirdPartyJobSuccessResultRequest(input *PutThirdPartyJobSuccessResultInput) (req *request.Request, output *PutThirdPartyJobSuccessResultOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutThirdPartyJobSuccessResult

func (*CodePipeline) PutThirdPartyJobSuccessResultWithContext

func (c *CodePipeline) PutThirdPartyJobSuccessResultWithContext(ctx aws.Context, input *PutThirdPartyJobSuccessResultInput, opts ...request.Option) (*PutThirdPartyJobSuccessResultOutput, error)

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

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

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

func (*CodePipeline) PutWebhook

func (c *CodePipeline) PutWebhook(input *PutWebhookInput) (*PutWebhookOutput, error)

PutWebhook API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation PutWebhook for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutWebhook

func (*CodePipeline) PutWebhookRequest

func (c *CodePipeline) PutWebhookRequest(input *PutWebhookInput) (req *request.Request, output *PutWebhookOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/PutWebhook

func (*CodePipeline) PutWebhookWithContext

func (c *CodePipeline) PutWebhookWithContext(ctx aws.Context, input *PutWebhookInput, opts ...request.Option) (*PutWebhookOutput, error)

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

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

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

func (*CodePipeline) RegisterWebhookWithThirdParty

func (c *CodePipeline) RegisterWebhookWithThirdParty(input *RegisterWebhookWithThirdPartyInput) (*RegisterWebhookWithThirdPartyOutput, error)

RegisterWebhookWithThirdParty API operation for AWS CodePipeline.

Configures a connection between the webhook that was created and the external tool with events to be detected.

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

See the AWS API reference guide for AWS CodePipeline's API operation RegisterWebhookWithThirdParty for usage and error information.

Returned Error Types:

  • ValidationException The validation was specified in an invalid format.

  • WebhookNotFoundException The specified webhook was entered in an invalid format or cannot be found.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/RegisterWebhookWithThirdParty

func (*CodePipeline) RegisterWebhookWithThirdPartyRequest

func (c *CodePipeline) RegisterWebhookWithThirdPartyRequest(input *RegisterWebhookWithThirdPartyInput) (req *request.Request, output *RegisterWebhookWithThirdPartyOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/RegisterWebhookWithThirdParty

func (*CodePipeline) RegisterWebhookWithThirdPartyWithContext

func (c *CodePipeline) RegisterWebhookWithThirdPartyWithContext(ctx aws.Context, input *RegisterWebhookWithThirdPartyInput, opts ...request.Option) (*RegisterWebhookWithThirdPartyOutput, error)

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

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

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

func (*CodePipeline) RetryStageExecution

func (c *CodePipeline) RetryStageExecution(input *RetryStageExecutionInput) (*RetryStageExecutionOutput, error)

RetryStageExecution API operation for AWS CodePipeline.

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.

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

See the AWS API reference guide for AWS CodePipeline's API operation RetryStageExecution for usage and error information.

Returned Error Types:

  • 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 the pipelineExecutionId associated with the request is out of date.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/RetryStageExecution

func (*CodePipeline) RetryStageExecutionRequest

func (c *CodePipeline) RetryStageExecutionRequest(input *RetryStageExecutionInput) (req *request.Request, output *RetryStageExecutionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/RetryStageExecution

func (*CodePipeline) RetryStageExecutionWithContext

func (c *CodePipeline) RetryStageExecutionWithContext(ctx aws.Context, input *RetryStageExecutionInput, opts ...request.Option) (*RetryStageExecutionOutput, error)

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

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

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

func (*CodePipeline) StartPipelineExecution

func (c *CodePipeline) StartPipelineExecution(input *StartPipelineExecutionInput) (*StartPipelineExecutionOutput, error)

StartPipelineExecution API operation for AWS CodePipeline.

Starts the specified pipeline. Specifically, it begins processing the latest commit to the source location specified as part of the pipeline.

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

See the AWS API reference guide for AWS CodePipeline's API operation StartPipelineExecution for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/StartPipelineExecution

func (*CodePipeline) StartPipelineExecutionRequest

func (c *CodePipeline) StartPipelineExecutionRequest(input *StartPipelineExecutionInput) (req *request.Request, output *StartPipelineExecutionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/StartPipelineExecution

func (*CodePipeline) StartPipelineExecutionWithContext

func (c *CodePipeline) StartPipelineExecutionWithContext(ctx aws.Context, input *StartPipelineExecutionInput, opts ...request.Option) (*StartPipelineExecutionOutput, error)

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

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

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

func (*CodePipeline) StopPipelineExecution

func (c *CodePipeline) StopPipelineExecution(input *StopPipelineExecutionInput) (*StopPipelineExecutionOutput, error)

StopPipelineExecution API operation for AWS CodePipeline.

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 Stopping state. After all in-progress actions are completed or abandoned, the pipeline execution is in a Stopped state.

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

See the AWS API reference guide for AWS CodePipeline's API operation StopPipelineExecution for usage and error information.

Returned Error Types:

  • 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 a Stopped state, or it might no longer be in progress.

  • DuplicatedStopRequestException The pipeline execution is already in a Stopping state. 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.

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/StopPipelineExecution

func (*CodePipeline) StopPipelineExecutionRequest

func (c *CodePipeline) StopPipelineExecutionRequest(input *StopPipelineExecutionInput) (req *request.Request, output *StopPipelineExecutionOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/StopPipelineExecution

func (*CodePipeline) StopPipelineExecutionWithContext

func (c *CodePipeline) StopPipelineExecutionWithContext(ctx aws.Context, input *StopPipelineExecutionInput, opts ...request.Option) (*StopPipelineExecutionOutput, error)

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

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

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

func (*CodePipeline) TagResource

func (c *CodePipeline) TagResource(input *TagResourceInput) (*TagResourceOutput, error)

TagResource API operation for AWS CodePipeline.

Adds to or modifies the tags of the given resource. Tags are metadata that can be used to manage a resource.

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

See the AWS API reference guide for AWS CodePipeline's API operation TagResource for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/TagResource

func (*CodePipeline) TagResourceRequest

func (c *CodePipeline) TagResourceRequest(input *TagResourceInput) (req *request.Request, output *TagResourceOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/TagResource

func (*CodePipeline) TagResourceWithContext

func (c *CodePipeline) TagResourceWithContext(ctx aws.Context, input *TagResourceInput, opts ...request.Option) (*TagResourceOutput, error)

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

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

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

func (*CodePipeline) UntagResource

func (c *CodePipeline) UntagResource(input *UntagResourceInput) (*UntagResourceOutput, error)

UntagResource API operation for AWS CodePipeline.

Removes tags from an Amazon Web Services resource.

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

See the AWS API reference guide for AWS CodePipeline's API operation UntagResource for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UntagResource

func (*CodePipeline) UntagResourceRequest

func (c *CodePipeline) UntagResourceRequest(input *UntagResourceInput) (req *request.Request, output *UntagResourceOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UntagResource

func (*CodePipeline) UntagResourceWithContext

func (c *CodePipeline) UntagResourceWithContext(ctx aws.Context, input *UntagResourceInput, opts ...request.Option) (*UntagResourceOutput, error)

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

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

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

func (*CodePipeline) UpdateActionType

func (c *CodePipeline) UpdateActionType(input *UpdateActionTypeInput) (*UpdateActionTypeOutput, error)

UpdateActionType API operation for AWS CodePipeline.

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 UpdateActionType to provide the full structure.

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

See the AWS API reference guide for AWS CodePipeline's API operation UpdateActionType for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdateActionType

func (*CodePipeline) UpdateActionTypeRequest

func (c *CodePipeline) UpdateActionTypeRequest(input *UpdateActionTypeInput) (req *request.Request, output *UpdateActionTypeOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdateActionType

func (*CodePipeline) UpdateActionTypeWithContext

func (c *CodePipeline) UpdateActionTypeWithContext(ctx aws.Context, input *UpdateActionTypeInput, opts ...request.Option) (*UpdateActionTypeOutput, error)

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

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

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

func (*CodePipeline) UpdatePipeline

func (c *CodePipeline) UpdatePipeline(input *UpdatePipelineInput) (*UpdatePipelineOutput, error)

UpdatePipeline API operation for AWS CodePipeline.

Updates a specified pipeline with edits or changes to its structure. Use a JSON file with the pipeline structure and UpdatePipeline to provide the full structure of the pipeline. Updating the pipeline increases the version number of the pipeline by 1.

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

See the AWS API reference guide for AWS CodePipeline's API operation UpdatePipeline for usage and error information.

Returned Error Types:

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdatePipeline

func (*CodePipeline) UpdatePipelineRequest

func (c *CodePipeline) UpdatePipelineRequest(input *UpdatePipelineInput) (req *request.Request, output *UpdatePipelineOutput)

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

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

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

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

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

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

See also, https://docs.aws.amazon.com/goto/WebAPI/codepipeline-2015-07-09/UpdatePipeline

func (*CodePipeline) UpdatePipelineWithContext

func (c *CodePipeline) UpdatePipelineWithContext(ctx aws.Context, input *UpdatePipelineInput, opts ...request.Option) (*UpdatePipelineOutput, error)

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

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

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

type ConcurrentModificationException

type ConcurrentModificationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Unable to modify the tag due to a simultaneous update request.

func (*ConcurrentModificationException) Code

func (s *ConcurrentModificationException) Code() string

Code returns the exception type name.

func (*ConcurrentModificationException) Error

func (s *ConcurrentModificationException) Error() string

func (ConcurrentModificationException) GoString

func (s ConcurrentModificationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConcurrentModificationException) Message

func (s *ConcurrentModificationException) Message() string

Message returns the exception's message.

func (*ConcurrentModificationException) OrigErr

func (s *ConcurrentModificationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ConcurrentModificationException) RequestID

func (s *ConcurrentModificationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ConcurrentModificationException) StatusCode

func (s *ConcurrentModificationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ConcurrentModificationException) String

func (s ConcurrentModificationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConcurrentPipelineExecutionsLimitExceededException

type ConcurrentPipelineExecutionsLimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The pipeline has reached the limit for concurrent pipeline executions.

func (*ConcurrentPipelineExecutionsLimitExceededException) Code

func (s *ConcurrentPipelineExecutionsLimitExceededException) Code() string

Code returns the exception type name.

func (*ConcurrentPipelineExecutionsLimitExceededException) Error

func (s *ConcurrentPipelineExecutionsLimitExceededException) Error() string

func (ConcurrentPipelineExecutionsLimitExceededException) GoString

func (s ConcurrentPipelineExecutionsLimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConcurrentPipelineExecutionsLimitExceededException) Message

func (s *ConcurrentPipelineExecutionsLimitExceededException) Message() string

Message returns the exception's message.

func (*ConcurrentPipelineExecutionsLimitExceededException) OrigErr

func (s *ConcurrentPipelineExecutionsLimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ConcurrentPipelineExecutionsLimitExceededException) RequestID

func (s *ConcurrentPipelineExecutionsLimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ConcurrentPipelineExecutionsLimitExceededException) StatusCode

func (s *ConcurrentPipelineExecutionsLimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ConcurrentPipelineExecutionsLimitExceededException) String

func (s ConcurrentPipelineExecutionsLimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ConflictException

type ConflictException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.

func (*ConflictException) Code

func (s *ConflictException) Code() string

Code returns the exception type name.

func (*ConflictException) Error

func (s *ConflictException) Error() string

func (ConflictException) GoString

func (s ConflictException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ConflictException) Message

func (s *ConflictException) Message() string

Message returns the exception's message.

func (*ConflictException) OrigErr

func (s *ConflictException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ConflictException) RequestID

func (s *ConflictException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ConflictException) StatusCode

func (s *ConflictException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ConflictException) String

func (s ConflictException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreateCustomActionTypeInput

type CreateCustomActionTypeInput struct {

    // The category of the custom action, such as a build action or a test action.
    //
    // Category is a required field
    Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`

    // The configuration properties for the custom action.
    //
    // You can refer to a name in the configuration properties of the custom action
    // within the URL templates by following the format of {Config:name}, as long
    // as the configuration property is both required and not secret. For more information,
    // see Create a Custom Action for a Pipeline (https://docs.aws.amazon.com/codepipeline/latest/userguide/how-to-create-custom-action.html).
    ConfigurationProperties []*ActionConfigurationProperty `locationName:"configurationProperties" type:"list"`

    // The details of the input artifact for the action, such as its commit ID.
    //
    // InputArtifactDetails is a required field
    InputArtifactDetails *ArtifactDetails `locationName:"inputArtifactDetails" type:"structure" required:"true"`

    // The details of the output artifact of the action, such as its commit ID.
    //
    // OutputArtifactDetails is a required field
    OutputArtifactDetails *ArtifactDetails `locationName:"outputArtifactDetails" type:"structure" required:"true"`

    // The provider of the service used in the custom action, such as CodeDeploy.
    //
    // Provider is a required field
    Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`

    // URLs that provide users information about this custom action.
    Settings *ActionTypeSettings `locationName:"settings" type:"structure"`

    // The tags for the custom action.
    Tags []*Tag `locationName:"tags" type:"list"`

    // The version identifier of the custom action.
    //
    // Version is a required field
    Version *string `locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a CreateCustomActionType operation.

func (CreateCustomActionTypeInput) GoString

func (s CreateCustomActionTypeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateCustomActionTypeInput) SetCategory

func (s *CreateCustomActionTypeInput) SetCategory(v string) *CreateCustomActionTypeInput

SetCategory sets the Category field's value.

func (*CreateCustomActionTypeInput) SetConfigurationProperties

func (s *CreateCustomActionTypeInput) SetConfigurationProperties(v []*ActionConfigurationProperty) *CreateCustomActionTypeInput

SetConfigurationProperties sets the ConfigurationProperties field's value.

func (*CreateCustomActionTypeInput) SetInputArtifactDetails

func (s *CreateCustomActionTypeInput) SetInputArtifactDetails(v *ArtifactDetails) *CreateCustomActionTypeInput

SetInputArtifactDetails sets the InputArtifactDetails field's value.

func (*CreateCustomActionTypeInput) SetOutputArtifactDetails

func (s *CreateCustomActionTypeInput) SetOutputArtifactDetails(v *ArtifactDetails) *CreateCustomActionTypeInput

SetOutputArtifactDetails sets the OutputArtifactDetails field's value.

func (*CreateCustomActionTypeInput) SetProvider

func (s *CreateCustomActionTypeInput) SetProvider(v string) *CreateCustomActionTypeInput

SetProvider sets the Provider field's value.

func (*CreateCustomActionTypeInput) SetSettings

func (s *CreateCustomActionTypeInput) SetSettings(v *ActionTypeSettings) *CreateCustomActionTypeInput

SetSettings sets the Settings field's value.

func (*CreateCustomActionTypeInput) SetTags

func (s *CreateCustomActionTypeInput) SetTags(v []*Tag) *CreateCustomActionTypeInput

SetTags sets the Tags field's value.

func (*CreateCustomActionTypeInput) SetVersion

func (s *CreateCustomActionTypeInput) SetVersion(v string) *CreateCustomActionTypeInput

SetVersion sets the Version field's value.

func (CreateCustomActionTypeInput) String

func (s CreateCustomActionTypeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateCustomActionTypeInput) Validate

func (s *CreateCustomActionTypeInput) Validate() error

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

type CreateCustomActionTypeOutput

type CreateCustomActionTypeOutput struct {

    // Returns information about the details of an action type.
    //
    // ActionType is a required field
    ActionType *ActionType `locationName:"actionType" type:"structure" required:"true"`

    // Specifies the tags applied to the custom action.
    Tags []*Tag `locationName:"tags" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a CreateCustomActionType operation.

func (CreateCustomActionTypeOutput) GoString

func (s CreateCustomActionTypeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreateCustomActionTypeOutput) SetActionType

func (s *CreateCustomActionTypeOutput) SetActionType(v *ActionType) *CreateCustomActionTypeOutput

SetActionType sets the ActionType field's value.

func (*CreateCustomActionTypeOutput) SetTags

func (s *CreateCustomActionTypeOutput) SetTags(v []*Tag) *CreateCustomActionTypeOutput

SetTags sets the Tags field's value.

func (CreateCustomActionTypeOutput) String

func (s CreateCustomActionTypeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CreatePipelineInput

type CreatePipelineInput struct {

    // Represents the structure of actions and stages to be performed in the pipeline.
    //
    // Pipeline is a required field
    Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure" required:"true"`

    // The tags for the pipeline.
    Tags []*Tag `locationName:"tags" type:"list"`
    // contains filtered or unexported fields
}

Represents the input of a CreatePipeline action.

func (CreatePipelineInput) GoString

func (s CreatePipelineInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreatePipelineInput) SetPipeline

func (s *CreatePipelineInput) SetPipeline(v *PipelineDeclaration) *CreatePipelineInput

SetPipeline sets the Pipeline field's value.

func (*CreatePipelineInput) SetTags

func (s *CreatePipelineInput) SetTags(v []*Tag) *CreatePipelineInput

SetTags sets the Tags field's value.

func (CreatePipelineInput) String

func (s CreatePipelineInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreatePipelineInput) Validate

func (s *CreatePipelineInput) Validate() error

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

type CreatePipelineOutput

type CreatePipelineOutput struct {

    // Represents the structure of actions and stages to be performed in the pipeline.
    Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"`

    // Specifies the tags applied to the pipeline.
    Tags []*Tag `locationName:"tags" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a CreatePipeline action.

func (CreatePipelineOutput) GoString

func (s CreatePipelineOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CreatePipelineOutput) SetPipeline

func (s *CreatePipelineOutput) SetPipeline(v *PipelineDeclaration) *CreatePipelineOutput

SetPipeline sets the Pipeline field's value.

func (*CreatePipelineOutput) SetTags

func (s *CreatePipelineOutput) SetTags(v []*Tag) *CreatePipelineOutput

SetTags sets the Tags field's value.

func (CreatePipelineOutput) String

func (s CreatePipelineOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type CurrentRevision

type CurrentRevision struct {

    // The change identifier for the current revision.
    //
    // ChangeIdentifier is a required field
    ChangeIdentifier *string `locationName:"changeIdentifier" min:"1" type:"string" required:"true"`

    // The date and time when the most recent revision of the artifact was created,
    // in timestamp format.
    Created *time.Time `locationName:"created" type:"timestamp"`

    // The revision ID of the current version of an artifact.
    //
    // Revision is a required field
    Revision *string `locationName:"revision" min:"1" type:"string" required:"true"`

    // The summary of the most recent revision of the artifact.
    RevisionSummary *string `locationName:"revisionSummary" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents information about a current revision.

func (CurrentRevision) GoString

func (s CurrentRevision) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CurrentRevision) SetChangeIdentifier

func (s *CurrentRevision) SetChangeIdentifier(v string) *CurrentRevision

SetChangeIdentifier sets the ChangeIdentifier field's value.

func (*CurrentRevision) SetCreated

func (s *CurrentRevision) SetCreated(v time.Time) *CurrentRevision

SetCreated sets the Created field's value.

func (*CurrentRevision) SetRevision

func (s *CurrentRevision) SetRevision(v string) *CurrentRevision

SetRevision sets the Revision field's value.

func (*CurrentRevision) SetRevisionSummary

func (s *CurrentRevision) SetRevisionSummary(v string) *CurrentRevision

SetRevisionSummary sets the RevisionSummary field's value.

func (CurrentRevision) String

func (s CurrentRevision) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*CurrentRevision) Validate

func (s *CurrentRevision) Validate() error

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

type DeleteCustomActionTypeInput

type DeleteCustomActionTypeInput struct {

    // The category of the custom action that you want to delete, such as source
    // or deploy.
    //
    // Category is a required field
    Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`

    // The provider of the service used in the custom action, such as CodeDeploy.
    //
    // Provider is a required field
    Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`

    // The version of the custom action to delete.
    //
    // Version is a required field
    Version *string `locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a DeleteCustomActionType operation. The custom action will be marked as deleted.

func (DeleteCustomActionTypeInput) GoString

func (s DeleteCustomActionTypeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteCustomActionTypeInput) SetCategory

func (s *DeleteCustomActionTypeInput) SetCategory(v string) *DeleteCustomActionTypeInput

SetCategory sets the Category field's value.

func (*DeleteCustomActionTypeInput) SetProvider

func (s *DeleteCustomActionTypeInput) SetProvider(v string) *DeleteCustomActionTypeInput

SetProvider sets the Provider field's value.

func (*DeleteCustomActionTypeInput) SetVersion

func (s *DeleteCustomActionTypeInput) SetVersion(v string) *DeleteCustomActionTypeInput

SetVersion sets the Version field's value.

func (DeleteCustomActionTypeInput) String

func (s DeleteCustomActionTypeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteCustomActionTypeInput) Validate

func (s *DeleteCustomActionTypeInput) Validate() error

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

type DeleteCustomActionTypeOutput

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

func (DeleteCustomActionTypeOutput) GoString

func (s DeleteCustomActionTypeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteCustomActionTypeOutput) String

func (s DeleteCustomActionTypeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeletePipelineInput

type DeletePipelineInput struct {

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

Represents the input of a DeletePipeline action.

func (DeletePipelineInput) GoString

func (s DeletePipelineInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeletePipelineInput) SetName

func (s *DeletePipelineInput) SetName(v string) *DeletePipelineInput

SetName sets the Name field's value.

func (DeletePipelineInput) String

func (s DeletePipelineInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeletePipelineInput) Validate

func (s *DeletePipelineInput) Validate() error

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

type DeletePipelineOutput

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

func (DeletePipelineOutput) GoString

func (s DeletePipelineOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeletePipelineOutput) String

func (s DeletePipelineOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeleteWebhookInput

type DeleteWebhookInput struct {

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

func (DeleteWebhookInput) GoString

func (s DeleteWebhookInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteWebhookInput) SetName

func (s *DeleteWebhookInput) SetName(v string) *DeleteWebhookInput

SetName sets the Name field's value.

func (DeleteWebhookInput) String

func (s DeleteWebhookInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeleteWebhookInput) Validate

func (s *DeleteWebhookInput) Validate() error

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

type DeleteWebhookOutput

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

func (DeleteWebhookOutput) GoString

func (s DeleteWebhookOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeleteWebhookOutput) String

func (s DeleteWebhookOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DeregisterWebhookWithThirdPartyInput

type DeregisterWebhookWithThirdPartyInput struct {

    // The name of the webhook you want to deregister.
    WebhookName *string `locationName:"webhookName" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (DeregisterWebhookWithThirdPartyInput) GoString

func (s DeregisterWebhookWithThirdPartyInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeregisterWebhookWithThirdPartyInput) SetWebhookName

func (s *DeregisterWebhookWithThirdPartyInput) SetWebhookName(v string) *DeregisterWebhookWithThirdPartyInput

SetWebhookName sets the WebhookName field's value.

func (DeregisterWebhookWithThirdPartyInput) String

func (s DeregisterWebhookWithThirdPartyInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DeregisterWebhookWithThirdPartyInput) Validate

func (s *DeregisterWebhookWithThirdPartyInput) Validate() error

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

type DeregisterWebhookWithThirdPartyOutput

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

func (DeregisterWebhookWithThirdPartyOutput) GoString

func (s DeregisterWebhookWithThirdPartyOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DeregisterWebhookWithThirdPartyOutput) String

func (s DeregisterWebhookWithThirdPartyOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DisableStageTransitionInput

type DisableStageTransitionInput struct {

    // The name of the pipeline in which you want to disable the flow of artifacts
    // from one stage to another.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`

    // The reason given to the user that a stage is disabled, such as waiting for
    // manual approval or manual tests. This message is displayed in the pipeline
    // console UI.
    //
    // Reason is a required field
    Reason *string `locationName:"reason" min:"1" type:"string" required:"true"`

    // The name of the stage where you want to disable the inbound or outbound transition
    // of artifacts.
    //
    // StageName is a required field
    StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`

    // Specifies whether artifacts are prevented from transitioning into the stage
    // and being processed by the actions in that stage (inbound), or prevented
    // from transitioning from the stage after they have been processed by the actions
    // in that stage (outbound).
    //
    // TransitionType is a required field
    TransitionType *string `locationName:"transitionType" type:"string" required:"true" enum:"StageTransitionType"`
    // contains filtered or unexported fields
}

Represents the input of a DisableStageTransition action.

func (DisableStageTransitionInput) GoString

func (s DisableStageTransitionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DisableStageTransitionInput) SetPipelineName

func (s *DisableStageTransitionInput) SetPipelineName(v string) *DisableStageTransitionInput

SetPipelineName sets the PipelineName field's value.

func (*DisableStageTransitionInput) SetReason

func (s *DisableStageTransitionInput) SetReason(v string) *DisableStageTransitionInput

SetReason sets the Reason field's value.

func (*DisableStageTransitionInput) SetStageName

func (s *DisableStageTransitionInput) SetStageName(v string) *DisableStageTransitionInput

SetStageName sets the StageName field's value.

func (*DisableStageTransitionInput) SetTransitionType

func (s *DisableStageTransitionInput) SetTransitionType(v string) *DisableStageTransitionInput

SetTransitionType sets the TransitionType field's value.

func (DisableStageTransitionInput) String

func (s DisableStageTransitionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DisableStageTransitionInput) Validate

func (s *DisableStageTransitionInput) Validate() error

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

type DisableStageTransitionOutput

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

func (DisableStageTransitionOutput) GoString

func (s DisableStageTransitionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (DisableStageTransitionOutput) String

func (s DisableStageTransitionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type DuplicatedStopRequestException

type DuplicatedStopRequestException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The pipeline execution is already in a Stopping state. 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.

func (*DuplicatedStopRequestException) Code

func (s *DuplicatedStopRequestException) Code() string

Code returns the exception type name.

func (*DuplicatedStopRequestException) Error

func (s *DuplicatedStopRequestException) Error() string

func (DuplicatedStopRequestException) GoString

func (s DuplicatedStopRequestException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*DuplicatedStopRequestException) Message

func (s *DuplicatedStopRequestException) Message() string

Message returns the exception's message.

func (*DuplicatedStopRequestException) OrigErr

func (s *DuplicatedStopRequestException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*DuplicatedStopRequestException) RequestID

func (s *DuplicatedStopRequestException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*DuplicatedStopRequestException) StatusCode

func (s *DuplicatedStopRequestException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (DuplicatedStopRequestException) String

func (s DuplicatedStopRequestException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EnableStageTransitionInput

type EnableStageTransitionInput struct {

    // The name of the pipeline in which you want to enable the flow of artifacts
    // from one stage to another.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`

    // The name of the stage where you want to enable the transition of artifacts,
    // either into the stage (inbound) or from that stage to the next stage (outbound).
    //
    // StageName is a required field
    StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`

    // Specifies whether artifacts are allowed to enter the stage and be processed
    // by the actions in that stage (inbound) or whether already processed artifacts
    // are allowed to transition to the next stage (outbound).
    //
    // TransitionType is a required field
    TransitionType *string `locationName:"transitionType" type:"string" required:"true" enum:"StageTransitionType"`
    // contains filtered or unexported fields
}

Represents the input of an EnableStageTransition action.

func (EnableStageTransitionInput) GoString

func (s EnableStageTransitionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EnableStageTransitionInput) SetPipelineName

func (s *EnableStageTransitionInput) SetPipelineName(v string) *EnableStageTransitionInput

SetPipelineName sets the PipelineName field's value.

func (*EnableStageTransitionInput) SetStageName

func (s *EnableStageTransitionInput) SetStageName(v string) *EnableStageTransitionInput

SetStageName sets the StageName field's value.

func (*EnableStageTransitionInput) SetTransitionType

func (s *EnableStageTransitionInput) SetTransitionType(v string) *EnableStageTransitionInput

SetTransitionType sets the TransitionType field's value.

func (EnableStageTransitionInput) String

func (s EnableStageTransitionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EnableStageTransitionInput) Validate

func (s *EnableStageTransitionInput) Validate() error

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

type EnableStageTransitionOutput

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

func (EnableStageTransitionOutput) GoString

func (s EnableStageTransitionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (EnableStageTransitionOutput) String

func (s EnableStageTransitionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type EncryptionKey

type EncryptionKey struct {

    // The ID used to identify the key. For an Amazon Web Services KMS key, you
    // can use the key ID, the key ARN, or the alias ARN.
    //
    // Aliases are recognized only in the account that created the KMS key. For
    // cross-account actions, you can only use the key ID or key ARN to identify
    // the key. Cross-account actions involve using the role from the other account
    // (AccountB), so specifying the key ID will use the key from the other account
    // (AccountB).
    //
    // Id is a required field
    Id *string `locationName:"id" min:"1" type:"string" required:"true"`

    // The type of encryption key, such as an Amazon Web Services KMS key. When
    // creating or updating a pipeline, the value must be set to 'KMS'.
    //
    // Type is a required field
    Type *string `locationName:"type" type:"string" required:"true" enum:"EncryptionKeyType"`
    // contains filtered or unexported fields
}

Represents information about the key used to encrypt data in the artifact store, such as an Amazon Web Services Key Management Service (Key Management Service) key.

func (EncryptionKey) GoString

func (s EncryptionKey) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EncryptionKey) SetId

func (s *EncryptionKey) SetId(v string) *EncryptionKey

SetId sets the Id field's value.

func (*EncryptionKey) SetType

func (s *EncryptionKey) SetType(v string) *EncryptionKey

SetType sets the Type field's value.

func (EncryptionKey) String

func (s EncryptionKey) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*EncryptionKey) Validate

func (s *EncryptionKey) Validate() error

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

type ErrorDetails

type ErrorDetails struct {

    // The system ID or number code of the error.
    Code *string `locationName:"code" type:"string"`

    // The text of the error message.
    Message *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents information about an error in CodePipeline.

func (ErrorDetails) GoString

func (s ErrorDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ErrorDetails) SetCode

func (s *ErrorDetails) SetCode(v string) *ErrorDetails

SetCode sets the Code field's value.

func (*ErrorDetails) SetMessage

func (s *ErrorDetails) SetMessage(v string) *ErrorDetails

SetMessage sets the Message field's value.

func (ErrorDetails) String

func (s ErrorDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ExecutionDetails

type ExecutionDetails struct {

    // The system-generated unique ID of this action used to identify this job worker
    // in any external systems, such as CodeDeploy.
    ExternalExecutionId *string `locationName:"externalExecutionId" min:"1" type:"string"`

    // The percentage of work completed on the action, represented on a scale of
    // 0 to 100 percent.
    PercentComplete *int64 `locationName:"percentComplete" type:"integer"`

    // The summary of the current status of the actions.
    Summary *string `locationName:"summary" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The details of the actions taken and results produced on an artifact as it passes through stages in the pipeline.

func (ExecutionDetails) GoString

func (s ExecutionDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutionDetails) SetExternalExecutionId

func (s *ExecutionDetails) SetExternalExecutionId(v string) *ExecutionDetails

SetExternalExecutionId sets the ExternalExecutionId field's value.

func (*ExecutionDetails) SetPercentComplete

func (s *ExecutionDetails) SetPercentComplete(v int64) *ExecutionDetails

SetPercentComplete sets the PercentComplete field's value.

func (*ExecutionDetails) SetSummary

func (s *ExecutionDetails) SetSummary(v string) *ExecutionDetails

SetSummary sets the Summary field's value.

func (ExecutionDetails) String

func (s ExecutionDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutionDetails) Validate

func (s *ExecutionDetails) Validate() error

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

type ExecutionTrigger

type ExecutionTrigger struct {

    // Detail related to the event that started a pipeline execution, such as the
    // webhook ARN of the webhook that triggered the pipeline execution or the user
    // ARN for a user-initiated start-pipeline-execution CLI command.
    TriggerDetail *string `locationName:"triggerDetail" type:"string"`

    // The type of change-detection method, command, or user interaction that started
    // a pipeline execution.
    TriggerType *string `locationName:"triggerType" type:"string" enum:"TriggerType"`
    // contains filtered or unexported fields
}

The interaction or event that started a pipeline execution.

func (ExecutionTrigger) GoString

func (s ExecutionTrigger) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutionTrigger) SetTriggerDetail

func (s *ExecutionTrigger) SetTriggerDetail(v string) *ExecutionTrigger

SetTriggerDetail sets the TriggerDetail field's value.

func (*ExecutionTrigger) SetTriggerType

func (s *ExecutionTrigger) SetTriggerType(v string) *ExecutionTrigger

SetTriggerType sets the TriggerType field's value.

func (ExecutionTrigger) String

func (s ExecutionTrigger) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ExecutorConfiguration

type ExecutorConfiguration struct {

    // Details about the JobWorker executor of the action type.
    JobWorkerExecutorConfiguration *JobWorkerExecutorConfiguration `locationName:"jobWorkerExecutorConfiguration" type:"structure"`

    // Details about the Lambda executor of the action type.
    LambdaExecutorConfiguration *LambdaExecutorConfiguration `locationName:"lambdaExecutorConfiguration" type:"structure"`
    // contains filtered or unexported fields
}

The action engine, or executor, related to the supported integration model used to create and update the action type. The available executor types are Lambda and JobWorker.

func (ExecutorConfiguration) GoString

func (s ExecutorConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutorConfiguration) SetJobWorkerExecutorConfiguration

func (s *ExecutorConfiguration) SetJobWorkerExecutorConfiguration(v *JobWorkerExecutorConfiguration) *ExecutorConfiguration

SetJobWorkerExecutorConfiguration sets the JobWorkerExecutorConfiguration field's value.

func (*ExecutorConfiguration) SetLambdaExecutorConfiguration

func (s *ExecutorConfiguration) SetLambdaExecutorConfiguration(v *LambdaExecutorConfiguration) *ExecutorConfiguration

SetLambdaExecutorConfiguration sets the LambdaExecutorConfiguration field's value.

func (ExecutorConfiguration) String

func (s ExecutorConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ExecutorConfiguration) Validate

func (s *ExecutorConfiguration) Validate() error

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

type FailureDetails

type FailureDetails struct {

    // The external ID of the run of the action that failed.
    ExternalExecutionId *string `locationName:"externalExecutionId" min:"1" type:"string"`

    // The message about the failure.
    //
    // Message is a required field
    Message *string `locationName:"message" min:"1" type:"string" required:"true"`

    // The type of the failure.
    //
    // Type is a required field
    Type *string `locationName:"type" type:"string" required:"true" enum:"FailureType"`
    // contains filtered or unexported fields
}

Represents information about failure details.

func (FailureDetails) GoString

func (s FailureDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailureDetails) SetExternalExecutionId

func (s *FailureDetails) SetExternalExecutionId(v string) *FailureDetails

SetExternalExecutionId sets the ExternalExecutionId field's value.

func (*FailureDetails) SetMessage

func (s *FailureDetails) SetMessage(v string) *FailureDetails

SetMessage sets the Message field's value.

func (*FailureDetails) SetType

func (s *FailureDetails) SetType(v string) *FailureDetails

SetType sets the Type field's value.

func (FailureDetails) String

func (s FailureDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*FailureDetails) Validate

func (s *FailureDetails) Validate() error

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

type GetActionTypeInput

type GetActionTypeInput struct {

    // Defines what kind of action can be taken in the stage. The following are
    // the valid values:
    //
    //    * Source
    //
    //    * Build
    //
    //    * Test
    //
    //    * Deploy
    //
    //    * Approval
    //
    //    * Invoke
    //
    // Category is a required field
    Category *string `locationName:"category" type:"string" required:"true" enum:"ActionCategory"`

    // The creator of an action type that was created with any supported integration
    // model. There are two valid values: AWS and ThirdParty.
    //
    // Owner is a required field
    Owner *string `locationName:"owner" type:"string" required:"true"`

    // The provider of the action type being called. The provider name is specified
    // when the action type is created.
    //
    // Provider is a required field
    Provider *string `locationName:"provider" min:"1" type:"string" required:"true"`

    // A string that describes the action type version.
    //
    // Version is a required field
    Version *string `locationName:"version" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (GetActionTypeInput) GoString

func (s GetActionTypeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetActionTypeInput) SetCategory

func (s *GetActionTypeInput) SetCategory(v string) *GetActionTypeInput

SetCategory sets the Category field's value.

func (*GetActionTypeInput) SetOwner

func (s *GetActionTypeInput) SetOwner(v string) *GetActionTypeInput

SetOwner sets the Owner field's value.

func (*GetActionTypeInput) SetProvider

func (s *GetActionTypeInput) SetProvider(v string) *GetActionTypeInput

SetProvider sets the Provider field's value.

func (*GetActionTypeInput) SetVersion

func (s *GetActionTypeInput) SetVersion(v string) *GetActionTypeInput

SetVersion sets the Version field's value.

func (GetActionTypeInput) String

func (s GetActionTypeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetActionTypeInput) Validate

func (s *GetActionTypeInput) Validate() error

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

type GetActionTypeOutput

type GetActionTypeOutput struct {

    // The action type information for the requested action type, such as the action
    // type ID.
    ActionType *ActionTypeDeclaration `locationName:"actionType" type:"structure"`
    // contains filtered or unexported fields
}

func (GetActionTypeOutput) GoString

func (s GetActionTypeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetActionTypeOutput) SetActionType

func (s *GetActionTypeOutput) SetActionType(v *ActionTypeDeclaration) *GetActionTypeOutput

SetActionType sets the ActionType field's value.

func (GetActionTypeOutput) String

func (s GetActionTypeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetJobDetailsInput

type GetJobDetailsInput struct {

    // The unique system-generated ID for the job.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetJobDetails action.

func (GetJobDetailsInput) GoString

func (s GetJobDetailsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetJobDetailsInput) SetJobId

func (s *GetJobDetailsInput) SetJobId(v string) *GetJobDetailsInput

SetJobId sets the JobId field's value.

func (GetJobDetailsInput) String

func (s GetJobDetailsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetJobDetailsInput) Validate

func (s *GetJobDetailsInput) Validate() error

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

type GetJobDetailsOutput

type GetJobDetailsOutput struct {

    // The details of the job.
    //
    // If AWSSessionCredentials is used, a long-running job can call GetJobDetails
    // again to obtain new credentials.
    JobDetails *JobDetails `locationName:"jobDetails" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetJobDetails action.

func (GetJobDetailsOutput) GoString

func (s GetJobDetailsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetJobDetailsOutput) SetJobDetails

func (s *GetJobDetailsOutput) SetJobDetails(v *JobDetails) *GetJobDetailsOutput

SetJobDetails sets the JobDetails field's value.

func (GetJobDetailsOutput) String

func (s GetJobDetailsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetPipelineExecutionInput

type GetPipelineExecutionInput struct {

    // The ID of the pipeline execution about which you want to get execution details.
    //
    // PipelineExecutionId is a required field
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string" required:"true"`

    // The name of the pipeline about which you want to get execution details.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetPipelineExecution action.

func (GetPipelineExecutionInput) GoString

func (s GetPipelineExecutionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineExecutionInput) SetPipelineExecutionId

func (s *GetPipelineExecutionInput) SetPipelineExecutionId(v string) *GetPipelineExecutionInput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*GetPipelineExecutionInput) SetPipelineName

func (s *GetPipelineExecutionInput) SetPipelineName(v string) *GetPipelineExecutionInput

SetPipelineName sets the PipelineName field's value.

func (GetPipelineExecutionInput) String

func (s GetPipelineExecutionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineExecutionInput) Validate

func (s *GetPipelineExecutionInput) Validate() error

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

type GetPipelineExecutionOutput

type GetPipelineExecutionOutput struct {

    // Represents information about the execution of a pipeline.
    PipelineExecution *PipelineExecution `locationName:"pipelineExecution" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetPipelineExecution action.

func (GetPipelineExecutionOutput) GoString

func (s GetPipelineExecutionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineExecutionOutput) SetPipelineExecution

func (s *GetPipelineExecutionOutput) SetPipelineExecution(v *PipelineExecution) *GetPipelineExecutionOutput

SetPipelineExecution sets the PipelineExecution field's value.

func (GetPipelineExecutionOutput) String

func (s GetPipelineExecutionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetPipelineInput

type GetPipelineInput struct {

    // The name of the pipeline for which you want to get information. Pipeline
    // names must be unique in an Amazon Web Services account.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // The version number of the pipeline. If you do not specify a version, defaults
    // to the current version.
    Version *int64 `locationName:"version" min:"1" type:"integer"`
    // contains filtered or unexported fields
}

Represents the input of a GetPipeline action.

func (GetPipelineInput) GoString

func (s GetPipelineInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineInput) SetName

func (s *GetPipelineInput) SetName(v string) *GetPipelineInput

SetName sets the Name field's value.

func (*GetPipelineInput) SetVersion

func (s *GetPipelineInput) SetVersion(v int64) *GetPipelineInput

SetVersion sets the Version field's value.

func (GetPipelineInput) String

func (s GetPipelineInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineInput) Validate

func (s *GetPipelineInput) Validate() error

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

type GetPipelineOutput

type GetPipelineOutput struct {

    // Represents the pipeline metadata information returned as part of the output
    // of a GetPipeline action.
    Metadata *PipelineMetadata `locationName:"metadata" type:"structure"`

    // Represents the structure of actions and stages to be performed in the pipeline.
    Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetPipeline action.

func (GetPipelineOutput) GoString

func (s GetPipelineOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineOutput) SetMetadata

func (s *GetPipelineOutput) SetMetadata(v *PipelineMetadata) *GetPipelineOutput

SetMetadata sets the Metadata field's value.

func (*GetPipelineOutput) SetPipeline

func (s *GetPipelineOutput) SetPipeline(v *PipelineDeclaration) *GetPipelineOutput

SetPipeline sets the Pipeline field's value.

func (GetPipelineOutput) String

func (s GetPipelineOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetPipelineStateInput

type GetPipelineStateInput struct {

    // The name of the pipeline about which you want to get information.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetPipelineState action.

func (GetPipelineStateInput) GoString

func (s GetPipelineStateInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineStateInput) SetName

func (s *GetPipelineStateInput) SetName(v string) *GetPipelineStateInput

SetName sets the Name field's value.

func (GetPipelineStateInput) String

func (s GetPipelineStateInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineStateInput) Validate

func (s *GetPipelineStateInput) Validate() error

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

type GetPipelineStateOutput

type GetPipelineStateOutput struct {

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

    // The name of the pipeline for which you want to get the state.
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string"`

    // The version number of the pipeline.
    //
    // A newly created pipeline is always assigned a version number of 1.
    PipelineVersion *int64 `locationName:"pipelineVersion" min:"1" type:"integer"`

    // A list of the pipeline stage output information, including stage name, state,
    // most recent run details, whether the stage is disabled, and other data.
    StageStates []*StageState `locationName:"stageStates" type:"list"`

    // The date and time the pipeline was last updated, in timestamp format.
    Updated *time.Time `locationName:"updated" type:"timestamp"`
    // contains filtered or unexported fields
}

Represents the output of a GetPipelineState action.

func (GetPipelineStateOutput) GoString

func (s GetPipelineStateOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetPipelineStateOutput) SetCreated

func (s *GetPipelineStateOutput) SetCreated(v time.Time) *GetPipelineStateOutput

SetCreated sets the Created field's value.

func (*GetPipelineStateOutput) SetPipelineName

func (s *GetPipelineStateOutput) SetPipelineName(v string) *GetPipelineStateOutput

SetPipelineName sets the PipelineName field's value.

func (*GetPipelineStateOutput) SetPipelineVersion

func (s *GetPipelineStateOutput) SetPipelineVersion(v int64) *GetPipelineStateOutput

SetPipelineVersion sets the PipelineVersion field's value.

func (*GetPipelineStateOutput) SetStageStates

func (s *GetPipelineStateOutput) SetStageStates(v []*StageState) *GetPipelineStateOutput

SetStageStates sets the StageStates field's value.

func (*GetPipelineStateOutput) SetUpdated

func (s *GetPipelineStateOutput) SetUpdated(v time.Time) *GetPipelineStateOutput

SetUpdated sets the Updated field's value.

func (GetPipelineStateOutput) String

func (s GetPipelineStateOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GetThirdPartyJobDetailsInput

type GetThirdPartyJobDetailsInput struct {

    // The clientToken portion of the clientId and clientToken pair used to verify
    // that the calling entity is allowed access to the job and its details.
    //
    // ClientToken is a required field
    ClientToken *string `locationName:"clientToken" min:"1" type:"string" required:"true"`

    // The unique system-generated ID used for identifying the job.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a GetThirdPartyJobDetails action.

func (GetThirdPartyJobDetailsInput) GoString

func (s GetThirdPartyJobDetailsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetThirdPartyJobDetailsInput) SetClientToken

func (s *GetThirdPartyJobDetailsInput) SetClientToken(v string) *GetThirdPartyJobDetailsInput

SetClientToken sets the ClientToken field's value.

func (*GetThirdPartyJobDetailsInput) SetJobId

func (s *GetThirdPartyJobDetailsInput) SetJobId(v string) *GetThirdPartyJobDetailsInput

SetJobId sets the JobId field's value.

func (GetThirdPartyJobDetailsInput) String

func (s GetThirdPartyJobDetailsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetThirdPartyJobDetailsInput) Validate

func (s *GetThirdPartyJobDetailsInput) Validate() error

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

type GetThirdPartyJobDetailsOutput

type GetThirdPartyJobDetailsOutput struct {

    // The details of the job, including any protected values defined for the job.
    JobDetails *ThirdPartyJobDetails `locationName:"jobDetails" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of a GetThirdPartyJobDetails action.

func (GetThirdPartyJobDetailsOutput) GoString

func (s GetThirdPartyJobDetailsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GetThirdPartyJobDetailsOutput) SetJobDetails

func (s *GetThirdPartyJobDetailsOutput) SetJobDetails(v *ThirdPartyJobDetails) *GetThirdPartyJobDetailsOutput

SetJobDetails sets the JobDetails field's value.

func (GetThirdPartyJobDetailsOutput) String

func (s GetThirdPartyJobDetailsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type GitBranchFilterCriteria

type GitBranchFilterCriteria struct {

    // The list of patterns of Git branches that, when a commit is pushed, are to
    // be excluded from starting the pipeline.
    Excludes []*string `locationName:"excludes" min:"1" type:"list"`

    // The list of patterns of Git branches that, when a commit is pushed, are to
    // be included as criteria that starts the pipeline.
    Includes []*string `locationName:"includes" min:"1" type:"list"`
    // contains filtered or unexported fields
}

The Git repository branches specified as filter criteria to start the pipeline.

func (GitBranchFilterCriteria) GoString

func (s GitBranchFilterCriteria) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitBranchFilterCriteria) SetExcludes

func (s *GitBranchFilterCriteria) SetExcludes(v []*string) *GitBranchFilterCriteria

SetExcludes sets the Excludes field's value.

func (*GitBranchFilterCriteria) SetIncludes

func (s *GitBranchFilterCriteria) SetIncludes(v []*string) *GitBranchFilterCriteria

SetIncludes sets the Includes field's value.

func (GitBranchFilterCriteria) String

func (s GitBranchFilterCriteria) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitBranchFilterCriteria) Validate

func (s *GitBranchFilterCriteria) Validate() error

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

type GitConfiguration

type GitConfiguration struct {

    // The field where the repository event that will start the pipeline is specified
    // as pull requests.
    PullRequest []*GitPullRequestFilter `locationName:"pullRequest" min:"1" type:"list"`

    // The field where the repository event that will start the pipeline, such as
    // pushing Git tags, is specified with details.
    Push []*GitPushFilter `locationName:"push" min:"1" type:"list"`

    // The name of the pipeline source action where the trigger configuration, such
    // as Git tags, is specified. The trigger configuration will start the pipeline
    // upon the specified change only.
    //
    // You can only specify one trigger configuration per source action.
    //
    // SourceActionName is a required field
    SourceActionName *string `locationName:"sourceActionName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

A type of trigger configuration for Git-based source actions.

You can specify the Git configuration trigger type for all third-party Git-based source actions that are supported by the CodeStarSourceConnection action type.

func (GitConfiguration) GoString

func (s GitConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitConfiguration) SetPullRequest

func (s *GitConfiguration) SetPullRequest(v []*GitPullRequestFilter) *GitConfiguration

SetPullRequest sets the PullRequest field's value.

func (*GitConfiguration) SetPush

func (s *GitConfiguration) SetPush(v []*GitPushFilter) *GitConfiguration

SetPush sets the Push field's value.

func (*GitConfiguration) SetSourceActionName

func (s *GitConfiguration) SetSourceActionName(v string) *GitConfiguration

SetSourceActionName sets the SourceActionName field's value.

func (GitConfiguration) String

func (s GitConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitConfiguration) Validate

func (s *GitConfiguration) Validate() error

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

type GitFilePathFilterCriteria

type GitFilePathFilterCriteria struct {

    // The list of patterns of Git repository file paths that, when a commit is
    // pushed, are to be excluded from starting the pipeline.
    Excludes []*string `locationName:"excludes" min:"1" type:"list"`

    // The list of patterns of Git repository file paths that, when a commit is
    // pushed, are to be included as criteria that starts the pipeline.
    Includes []*string `locationName:"includes" min:"1" type:"list"`
    // contains filtered or unexported fields
}

The Git repository file paths specified as filter criteria to start the pipeline.

func (GitFilePathFilterCriteria) GoString

func (s GitFilePathFilterCriteria) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitFilePathFilterCriteria) SetExcludes

func (s *GitFilePathFilterCriteria) SetExcludes(v []*string) *GitFilePathFilterCriteria

SetExcludes sets the Excludes field's value.

func (*GitFilePathFilterCriteria) SetIncludes

func (s *GitFilePathFilterCriteria) SetIncludes(v []*string) *GitFilePathFilterCriteria

SetIncludes sets the Includes field's value.

func (GitFilePathFilterCriteria) String

func (s GitFilePathFilterCriteria) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitFilePathFilterCriteria) Validate

func (s *GitFilePathFilterCriteria) Validate() error

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

type GitPullRequestFilter

type GitPullRequestFilter struct {

    // The field that specifies to filter on branches for the pull request trigger
    // configuration.
    Branches *GitBranchFilterCriteria `locationName:"branches" type:"structure"`

    // The field that specifies which pull request events to filter on (opened,
    // updated, closed) for the trigger configuration.
    Events []*string `locationName:"events" min:"1" type:"list" enum:"GitPullRequestEventType"`

    // The field that specifies to filter on file paths for the pull request trigger
    // configuration.
    FilePaths *GitFilePathFilterCriteria `locationName:"filePaths" type:"structure"`
    // contains filtered or unexported fields
}

The event criteria for the pull request trigger configuration, such as the lists of branches or file paths to include and exclude.

func (GitPullRequestFilter) GoString

func (s GitPullRequestFilter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitPullRequestFilter) SetBranches

func (s *GitPullRequestFilter) SetBranches(v *GitBranchFilterCriteria) *GitPullRequestFilter

SetBranches sets the Branches field's value.

func (*GitPullRequestFilter) SetEvents

func (s *GitPullRequestFilter) SetEvents(v []*string) *GitPullRequestFilter

SetEvents sets the Events field's value.

func (*GitPullRequestFilter) SetFilePaths

func (s *GitPullRequestFilter) SetFilePaths(v *GitFilePathFilterCriteria) *GitPullRequestFilter

SetFilePaths sets the FilePaths field's value.

func (GitPullRequestFilter) String

func (s GitPullRequestFilter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitPullRequestFilter) Validate

func (s *GitPullRequestFilter) Validate() error

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

type GitPushFilter

type GitPushFilter struct {

    // The field that specifies to filter on branches for the push trigger configuration.
    Branches *GitBranchFilterCriteria `locationName:"branches" type:"structure"`

    // The field that specifies to filter on file paths for the push trigger configuration.
    FilePaths *GitFilePathFilterCriteria `locationName:"filePaths" type:"structure"`

    // The field that contains the details for the Git tags trigger configuration.
    Tags *GitTagFilterCriteria `locationName:"tags" type:"structure"`
    // contains filtered or unexported fields
}

The event criteria that specify when a specified repository event will start the pipeline for the specified trigger configuration, such as the lists of Git tags to include and exclude.

func (GitPushFilter) GoString

func (s GitPushFilter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitPushFilter) SetBranches

func (s *GitPushFilter) SetBranches(v *GitBranchFilterCriteria) *GitPushFilter

SetBranches sets the Branches field's value.

func (*GitPushFilter) SetFilePaths

func (s *GitPushFilter) SetFilePaths(v *GitFilePathFilterCriteria) *GitPushFilter

SetFilePaths sets the FilePaths field's value.

func (*GitPushFilter) SetTags

func (s *GitPushFilter) SetTags(v *GitTagFilterCriteria) *GitPushFilter

SetTags sets the Tags field's value.

func (GitPushFilter) String

func (s GitPushFilter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitPushFilter) Validate

func (s *GitPushFilter) Validate() error

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

type GitTagFilterCriteria

type GitTagFilterCriteria struct {

    // The list of patterns of Git tags that, when pushed, are to be excluded from
    // starting the pipeline.
    Excludes []*string `locationName:"excludes" min:"1" type:"list"`

    // The list of patterns of Git tags that, when pushed, are to be included as
    // criteria that starts the pipeline.
    Includes []*string `locationName:"includes" min:"1" type:"list"`
    // contains filtered or unexported fields
}

The Git tags specified as filter criteria for whether a Git tag repository event will start the pipeline.

func (GitTagFilterCriteria) GoString

func (s GitTagFilterCriteria) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitTagFilterCriteria) SetExcludes

func (s *GitTagFilterCriteria) SetExcludes(v []*string) *GitTagFilterCriteria

SetExcludes sets the Excludes field's value.

func (*GitTagFilterCriteria) SetIncludes

func (s *GitTagFilterCriteria) SetIncludes(v []*string) *GitTagFilterCriteria

SetIncludes sets the Includes field's value.

func (GitTagFilterCriteria) String

func (s GitTagFilterCriteria) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*GitTagFilterCriteria) Validate

func (s *GitTagFilterCriteria) Validate() error

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

type InputArtifact

type InputArtifact struct {

    // The name of the artifact to be worked on (for example, "My App").
    //
    // Artifacts are the files that are worked on by actions in the pipeline. See
    // the action configuration for each action for details about artifact parameters.
    // For example, the S3 source action input artifact is a file name (or file
    // path), and the files are generally provided as a ZIP file. Example artifact
    // name: SampleApp_Windows.zip
    //
    // The input artifact of an action must exactly match the output artifact declared
    // in a preceding action, but the input artifact does not have to be the next
    // action in strict sequence from the action that provided the output artifact.
    // Actions in parallel can declare different output artifacts, which are in
    // turn consumed by different following actions.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about an artifact to be worked on, such as a test or build artifact.

func (InputArtifact) GoString

func (s InputArtifact) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InputArtifact) SetName

func (s *InputArtifact) SetName(v string) *InputArtifact

SetName sets the Name field's value.

func (InputArtifact) String

func (s InputArtifact) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InputArtifact) Validate

func (s *InputArtifact) Validate() error

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

type InvalidActionDeclarationException

type InvalidActionDeclarationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The action declaration was specified in an invalid format.

func (*InvalidActionDeclarationException) Code

func (s *InvalidActionDeclarationException) Code() string

Code returns the exception type name.

func (*InvalidActionDeclarationException) Error

func (s *InvalidActionDeclarationException) Error() string

func (InvalidActionDeclarationException) GoString

func (s InvalidActionDeclarationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidActionDeclarationException) Message

func (s *InvalidActionDeclarationException) Message() string

Message returns the exception's message.

func (*InvalidActionDeclarationException) OrigErr

func (s *InvalidActionDeclarationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidActionDeclarationException) RequestID

func (s *InvalidActionDeclarationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidActionDeclarationException) StatusCode

func (s *InvalidActionDeclarationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidActionDeclarationException) String

func (s InvalidActionDeclarationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidApprovalTokenException

type InvalidApprovalTokenException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The approval request already received a response or has expired.

func (*InvalidApprovalTokenException) Code

func (s *InvalidApprovalTokenException) Code() string

Code returns the exception type name.

func (*InvalidApprovalTokenException) Error

func (s *InvalidApprovalTokenException) Error() string

func (InvalidApprovalTokenException) GoString

func (s InvalidApprovalTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidApprovalTokenException) Message

func (s *InvalidApprovalTokenException) Message() string

Message returns the exception's message.

func (*InvalidApprovalTokenException) OrigErr

func (s *InvalidApprovalTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidApprovalTokenException) RequestID

func (s *InvalidApprovalTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidApprovalTokenException) StatusCode

func (s *InvalidApprovalTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidApprovalTokenException) String

func (s InvalidApprovalTokenException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidArnException

type InvalidArnException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The specified resource ARN is invalid.

func (*InvalidArnException) Code

func (s *InvalidArnException) Code() string

Code returns the exception type name.

func (*InvalidArnException) Error

func (s *InvalidArnException) Error() string

func (InvalidArnException) GoString

func (s InvalidArnException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidArnException) Message

func (s *InvalidArnException) Message() string

Message returns the exception's message.

func (*InvalidArnException) OrigErr

func (s *InvalidArnException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidArnException) RequestID

func (s *InvalidArnException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidArnException) StatusCode

func (s *InvalidArnException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidArnException) String

func (s InvalidArnException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidBlockerDeclarationException

type InvalidBlockerDeclarationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

Reserved for future use.

func (*InvalidBlockerDeclarationException) Code

func (s *InvalidBlockerDeclarationException) Code() string

Code returns the exception type name.

func (*InvalidBlockerDeclarationException) Error

func (s *InvalidBlockerDeclarationException) Error() string

func (InvalidBlockerDeclarationException) GoString

func (s InvalidBlockerDeclarationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidBlockerDeclarationException) Message

func (s *InvalidBlockerDeclarationException) Message() string

Message returns the exception's message.

func (*InvalidBlockerDeclarationException) OrigErr

func (s *InvalidBlockerDeclarationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidBlockerDeclarationException) RequestID

func (s *InvalidBlockerDeclarationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidBlockerDeclarationException) StatusCode

func (s *InvalidBlockerDeclarationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidBlockerDeclarationException) String

func (s InvalidBlockerDeclarationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidClientTokenException

type InvalidClientTokenException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The client token was specified in an invalid format

func (*InvalidClientTokenException) Code

func (s *InvalidClientTokenException) Code() string

Code returns the exception type name.

func (*InvalidClientTokenException) Error

func (s *InvalidClientTokenException) Error() string

func (InvalidClientTokenException) GoString

func (s InvalidClientTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidClientTokenException) Message

func (s *InvalidClientTokenException) Message() string

Message returns the exception's message.

func (*InvalidClientTokenException) OrigErr

func (s *InvalidClientTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidClientTokenException) RequestID

func (s *InvalidClientTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidClientTokenException) StatusCode

func (s *InvalidClientTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidClientTokenException) String

func (s InvalidClientTokenException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidJobException

type InvalidJobException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The job was specified in an invalid format or cannot be found.

func (*InvalidJobException) Code

func (s *InvalidJobException) Code() string

Code returns the exception type name.

func (*InvalidJobException) Error

func (s *InvalidJobException) Error() string

func (InvalidJobException) GoString

func (s InvalidJobException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidJobException) Message

func (s *InvalidJobException) Message() string

Message returns the exception's message.

func (*InvalidJobException) OrigErr

func (s *InvalidJobException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidJobException) RequestID

func (s *InvalidJobException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidJobException) StatusCode

func (s *InvalidJobException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidJobException) String

func (s InvalidJobException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidJobStateException

type InvalidJobStateException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The job state was specified in an invalid format.

func (*InvalidJobStateException) Code

func (s *InvalidJobStateException) Code() string

Code returns the exception type name.

func (*InvalidJobStateException) Error

func (s *InvalidJobStateException) Error() string

func (InvalidJobStateException) GoString

func (s InvalidJobStateException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidJobStateException) Message

func (s *InvalidJobStateException) Message() string

Message returns the exception's message.

func (*InvalidJobStateException) OrigErr

func (s *InvalidJobStateException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidJobStateException) RequestID

func (s *InvalidJobStateException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidJobStateException) StatusCode

func (s *InvalidJobStateException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidJobStateException) String

func (s InvalidJobStateException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidNextTokenException

type InvalidNextTokenException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

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.

func (*InvalidNextTokenException) Code

func (s *InvalidNextTokenException) Code() string

Code returns the exception type name.

func (*InvalidNextTokenException) Error

func (s *InvalidNextTokenException) Error() string

func (InvalidNextTokenException) GoString

func (s InvalidNextTokenException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidNextTokenException) Message

func (s *InvalidNextTokenException) Message() string

Message returns the exception's message.

func (*InvalidNextTokenException) OrigErr

func (s *InvalidNextTokenException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidNextTokenException) RequestID

func (s *InvalidNextTokenException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidNextTokenException) StatusCode

func (s *InvalidNextTokenException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidNextTokenException) String

func (s InvalidNextTokenException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidNonceException

type InvalidNonceException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The nonce was specified in an invalid format.

func (*InvalidNonceException) Code

func (s *InvalidNonceException) Code() string

Code returns the exception type name.

func (*InvalidNonceException) Error

func (s *InvalidNonceException) Error() string

func (InvalidNonceException) GoString

func (s InvalidNonceException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidNonceException) Message

func (s *InvalidNonceException) Message() string

Message returns the exception's message.

func (*InvalidNonceException) OrigErr

func (s *InvalidNonceException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidNonceException) RequestID

func (s *InvalidNonceException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidNonceException) StatusCode

func (s *InvalidNonceException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidNonceException) String

func (s InvalidNonceException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidStageDeclarationException

type InvalidStageDeclarationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The stage declaration was specified in an invalid format.

func (*InvalidStageDeclarationException) Code

func (s *InvalidStageDeclarationException) Code() string

Code returns the exception type name.

func (*InvalidStageDeclarationException) Error

func (s *InvalidStageDeclarationException) Error() string

func (InvalidStageDeclarationException) GoString

func (s InvalidStageDeclarationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidStageDeclarationException) Message

func (s *InvalidStageDeclarationException) Message() string

Message returns the exception's message.

func (*InvalidStageDeclarationException) OrigErr

func (s *InvalidStageDeclarationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidStageDeclarationException) RequestID

func (s *InvalidStageDeclarationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidStageDeclarationException) StatusCode

func (s *InvalidStageDeclarationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidStageDeclarationException) String

func (s InvalidStageDeclarationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidStructureException

type InvalidStructureException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The structure was specified in an invalid format.

func (*InvalidStructureException) Code

func (s *InvalidStructureException) Code() string

Code returns the exception type name.

func (*InvalidStructureException) Error

func (s *InvalidStructureException) Error() string

func (InvalidStructureException) GoString

func (s InvalidStructureException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidStructureException) Message

func (s *InvalidStructureException) Message() string

Message returns the exception's message.

func (*InvalidStructureException) OrigErr

func (s *InvalidStructureException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidStructureException) RequestID

func (s *InvalidStructureException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidStructureException) StatusCode

func (s *InvalidStructureException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidStructureException) String

func (s InvalidStructureException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidTagsException

type InvalidTagsException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The specified resource tags are invalid.

func (*InvalidTagsException) Code

func (s *InvalidTagsException) Code() string

Code returns the exception type name.

func (*InvalidTagsException) Error

func (s *InvalidTagsException) Error() string

func (InvalidTagsException) GoString

func (s InvalidTagsException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidTagsException) Message

func (s *InvalidTagsException) Message() string

Message returns the exception's message.

func (*InvalidTagsException) OrigErr

func (s *InvalidTagsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidTagsException) RequestID

func (s *InvalidTagsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidTagsException) StatusCode

func (s *InvalidTagsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidTagsException) String

func (s InvalidTagsException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidWebhookAuthenticationParametersException

type InvalidWebhookAuthenticationParametersException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified authentication type is in an invalid format.

func (*InvalidWebhookAuthenticationParametersException) Code

func (s *InvalidWebhookAuthenticationParametersException) Code() string

Code returns the exception type name.

func (*InvalidWebhookAuthenticationParametersException) Error

func (s *InvalidWebhookAuthenticationParametersException) Error() string

func (InvalidWebhookAuthenticationParametersException) GoString

func (s InvalidWebhookAuthenticationParametersException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidWebhookAuthenticationParametersException) Message

func (s *InvalidWebhookAuthenticationParametersException) Message() string

Message returns the exception's message.

func (*InvalidWebhookAuthenticationParametersException) OrigErr

func (s *InvalidWebhookAuthenticationParametersException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidWebhookAuthenticationParametersException) RequestID

func (s *InvalidWebhookAuthenticationParametersException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidWebhookAuthenticationParametersException) StatusCode

func (s *InvalidWebhookAuthenticationParametersException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidWebhookAuthenticationParametersException) String

func (s InvalidWebhookAuthenticationParametersException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type InvalidWebhookFilterPatternException

type InvalidWebhookFilterPatternException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified event filter rule is in an invalid format.

func (*InvalidWebhookFilterPatternException) Code

func (s *InvalidWebhookFilterPatternException) Code() string

Code returns the exception type name.

func (*InvalidWebhookFilterPatternException) Error

func (s *InvalidWebhookFilterPatternException) Error() string

func (InvalidWebhookFilterPatternException) GoString

func (s InvalidWebhookFilterPatternException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*InvalidWebhookFilterPatternException) Message

func (s *InvalidWebhookFilterPatternException) Message() string

Message returns the exception's message.

func (*InvalidWebhookFilterPatternException) OrigErr

func (s *InvalidWebhookFilterPatternException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*InvalidWebhookFilterPatternException) RequestID

func (s *InvalidWebhookFilterPatternException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*InvalidWebhookFilterPatternException) StatusCode

func (s *InvalidWebhookFilterPatternException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (InvalidWebhookFilterPatternException) String

func (s InvalidWebhookFilterPatternException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Job

type Job struct {

    // The ID of the Amazon Web Services account to use when performing the job.
    AccountId *string `locationName:"accountId" type:"string"`

    // Other data about a job.
    Data *JobData `locationName:"data" type:"structure"`

    // The unique system-generated ID of the job.
    Id *string `locationName:"id" type:"string"`

    // A system-generated random number that CodePipeline uses to ensure that the
    // job is being worked on by only one job worker. Use this number in an AcknowledgeJob
    // request.
    Nonce *string `locationName:"nonce" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents information about a job.

func (Job) GoString

func (s Job) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Job) SetAccountId

func (s *Job) SetAccountId(v string) *Job

SetAccountId sets the AccountId field's value.

func (*Job) SetData

func (s *Job) SetData(v *JobData) *Job

SetData sets the Data field's value.

func (*Job) SetId

func (s *Job) SetId(v string) *Job

SetId sets the Id field's value.

func (*Job) SetNonce

func (s *Job) SetNonce(v string) *Job

SetNonce sets the Nonce field's value.

func (Job) String

func (s Job) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type JobData

type JobData struct {

    // Represents information about an action configuration.
    ActionConfiguration *ActionConfiguration `locationName:"actionConfiguration" type:"structure"`

    // Represents information about an action type.
    ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure"`

    // Represents an Amazon Web Services session credentials object. These credentials
    // are temporary credentials that are issued by Amazon Web Services Secure Token
    // Service (STS). They can be used to access input and output artifacts in the
    // S3 bucket used to store artifacts for the pipeline in CodePipeline.
    //
    // ArtifactCredentials is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by JobData's
    // String and GoString methods.
    ArtifactCredentials *AWSSessionCredentials `locationName:"artifactCredentials" type:"structure" sensitive:"true"`

    // A system-generated token, such as a deployment ID, required by a job to continue
    // the job asynchronously.
    ContinuationToken *string `locationName:"continuationToken" min:"1" type:"string"`

    // Represents information about the key used to encrypt data in the artifact
    // store, such as an KMS key.
    EncryptionKey *EncryptionKey `locationName:"encryptionKey" type:"structure"`

    // The artifact supplied to the job.
    InputArtifacts []*Artifact `locationName:"inputArtifacts" type:"list"`

    // The output of the job.
    OutputArtifacts []*Artifact `locationName:"outputArtifacts" type:"list"`

    // Represents information about a pipeline to a job worker.
    //
    // Includes pipelineArn and pipelineExecutionId for custom jobs.
    PipelineContext *PipelineContext `locationName:"pipelineContext" type:"structure"`
    // contains filtered or unexported fields
}

Represents other information about a job required for a job worker to complete the job.

func (JobData) GoString

func (s JobData) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*JobData) SetActionConfiguration

func (s *JobData) SetActionConfiguration(v *ActionConfiguration) *JobData

SetActionConfiguration sets the ActionConfiguration field's value.

func (*JobData) SetActionTypeId

func (s *JobData) SetActionTypeId(v *ActionTypeId) *JobData

SetActionTypeId sets the ActionTypeId field's value.

func (*JobData) SetArtifactCredentials

func (s *JobData) SetArtifactCredentials(v *AWSSessionCredentials) *JobData

SetArtifactCredentials sets the ArtifactCredentials field's value.

func (*JobData) SetContinuationToken

func (s *JobData) SetContinuationToken(v string) *JobData

SetContinuationToken sets the ContinuationToken field's value.

func (*JobData) SetEncryptionKey

func (s *JobData) SetEncryptionKey(v *EncryptionKey) *JobData

SetEncryptionKey sets the EncryptionKey field's value.

func (*JobData) SetInputArtifacts

func (s *JobData) SetInputArtifacts(v []*Artifact) *JobData

SetInputArtifacts sets the InputArtifacts field's value.

func (*JobData) SetOutputArtifacts

func (s *JobData) SetOutputArtifacts(v []*Artifact) *JobData

SetOutputArtifacts sets the OutputArtifacts field's value.

func (*JobData) SetPipelineContext

func (s *JobData) SetPipelineContext(v *PipelineContext) *JobData

SetPipelineContext sets the PipelineContext field's value.

func (JobData) String

func (s JobData) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type JobDetails

type JobDetails struct {

    // The Amazon Web Services account ID associated with the job.
    AccountId *string `locationName:"accountId" type:"string"`

    // Represents other information about a job required for a job worker to complete
    // the job.
    Data *JobData `locationName:"data" type:"structure"`

    // The unique system-generated ID of the job.
    Id *string `locationName:"id" type:"string"`
    // contains filtered or unexported fields
}

Represents information about the details of a job.

func (JobDetails) GoString

func (s JobDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*JobDetails) SetAccountId

func (s *JobDetails) SetAccountId(v string) *JobDetails

SetAccountId sets the AccountId field's value.

func (*JobDetails) SetData

func (s *JobDetails) SetData(v *JobData) *JobDetails

SetData sets the Data field's value.

func (*JobDetails) SetId

func (s *JobDetails) SetId(v string) *JobDetails

SetId sets the Id field's value.

func (JobDetails) String

func (s JobDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type JobNotFoundException

type JobNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The job was specified in an invalid format or cannot be found.

func (*JobNotFoundException) Code

func (s *JobNotFoundException) Code() string

Code returns the exception type name.

func (*JobNotFoundException) Error

func (s *JobNotFoundException) Error() string

func (JobNotFoundException) GoString

func (s JobNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*JobNotFoundException) Message

func (s *JobNotFoundException) Message() string

Message returns the exception's message.

func (*JobNotFoundException) OrigErr

func (s *JobNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*JobNotFoundException) RequestID

func (s *JobNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*JobNotFoundException) StatusCode

func (s *JobNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (JobNotFoundException) String

func (s JobNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type JobWorkerExecutorConfiguration

type JobWorkerExecutorConfiguration struct {

    // The accounts in which the job worker is configured and might poll for jobs
    // as part of the action execution.
    PollingAccounts []*string `locationName:"pollingAccounts" min:"1" type:"list"`

    // The service Principals in which the job worker is configured and might poll
    // for jobs as part of the action execution.
    PollingServicePrincipals []*string `locationName:"pollingServicePrincipals" min:"1" type:"list"`
    // contains filtered or unexported fields
}

Details about the polling configuration for the JobWorker action engine, or executor.

func (JobWorkerExecutorConfiguration) GoString

func (s JobWorkerExecutorConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*JobWorkerExecutorConfiguration) SetPollingAccounts

func (s *JobWorkerExecutorConfiguration) SetPollingAccounts(v []*string) *JobWorkerExecutorConfiguration

SetPollingAccounts sets the PollingAccounts field's value.

func (*JobWorkerExecutorConfiguration) SetPollingServicePrincipals

func (s *JobWorkerExecutorConfiguration) SetPollingServicePrincipals(v []*string) *JobWorkerExecutorConfiguration

SetPollingServicePrincipals sets the PollingServicePrincipals field's value.

func (JobWorkerExecutorConfiguration) String

func (s JobWorkerExecutorConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*JobWorkerExecutorConfiguration) Validate

func (s *JobWorkerExecutorConfiguration) Validate() error

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

type LambdaExecutorConfiguration

type LambdaExecutorConfiguration struct {

    // The ARN of the Lambda function used by the action engine.
    //
    // LambdaFunctionArn is a required field
    LambdaFunctionArn *string `locationName:"lambdaFunctionArn" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Details about the configuration for the Lambda action engine, or executor.

func (LambdaExecutorConfiguration) GoString

func (s LambdaExecutorConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LambdaExecutorConfiguration) SetLambdaFunctionArn

func (s *LambdaExecutorConfiguration) SetLambdaFunctionArn(v string) *LambdaExecutorConfiguration

SetLambdaFunctionArn sets the LambdaFunctionArn field's value.

func (LambdaExecutorConfiguration) String

func (s LambdaExecutorConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LambdaExecutorConfiguration) Validate

func (s *LambdaExecutorConfiguration) Validate() error

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

type LatestInPipelineExecutionFilter

type LatestInPipelineExecutionFilter struct {

    // The execution ID for the latest execution in the pipeline.
    //
    // PipelineExecutionId is a required field
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string" required:"true"`

    // The start time to filter on for the latest execution in the pipeline. Valid
    // options:
    //
    //    * All
    //
    //    * Latest
    //
    // StartTimeRange is a required field
    StartTimeRange *string `locationName:"startTimeRange" type:"string" required:"true" enum:"StartTimeRange"`
    // contains filtered or unexported fields
}

The field that specifies to filter on the latest execution in the pipeline.

Filtering on the latest execution is available for executions run on or after February 08, 2024.

func (LatestInPipelineExecutionFilter) GoString

func (s LatestInPipelineExecutionFilter) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LatestInPipelineExecutionFilter) SetPipelineExecutionId

func (s *LatestInPipelineExecutionFilter) SetPipelineExecutionId(v string) *LatestInPipelineExecutionFilter

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*LatestInPipelineExecutionFilter) SetStartTimeRange

func (s *LatestInPipelineExecutionFilter) SetStartTimeRange(v string) *LatestInPipelineExecutionFilter

SetStartTimeRange sets the StartTimeRange field's value.

func (LatestInPipelineExecutionFilter) String

func (s LatestInPipelineExecutionFilter) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LatestInPipelineExecutionFilter) Validate

func (s *LatestInPipelineExecutionFilter) Validate() error

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

type LimitExceededException

type LimitExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The number of pipelines associated with the Amazon Web Services account has exceeded the limit allowed for the account.

func (*LimitExceededException) Code

func (s *LimitExceededException) Code() string

Code returns the exception type name.

func (*LimitExceededException) Error

func (s *LimitExceededException) Error() string

func (LimitExceededException) GoString

func (s LimitExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*LimitExceededException) Message

func (s *LimitExceededException) Message() string

Message returns the exception's message.

func (*LimitExceededException) OrigErr

func (s *LimitExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*LimitExceededException) RequestID

func (s *LimitExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*LimitExceededException) StatusCode

func (s *LimitExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (LimitExceededException) String

func (s LimitExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListActionExecutionsInput

type ListActionExecutionsInput struct {

    // Input information used to filter action execution history.
    Filter *ActionExecutionFilter `locationName:"filter" type:"structure"`

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned nextToken value. Action
    // execution history is retained for up to 12 months, based on action execution
    // start times. Default value is 100.
    //
    // Detailed execution history is available for executions run on or after February
    // 21, 2019.
    MaxResults *int64 `locationName:"maxResults" min:"1" type:"integer"`

    // The token that was returned from the previous ListActionExecutions call,
    // which can be used to return the next set of action executions in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // The name of the pipeline for which you want to list action execution history.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListActionExecutionsInput) GoString

func (s ListActionExecutionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListActionExecutionsInput) SetFilter

func (s *ListActionExecutionsInput) SetFilter(v *ActionExecutionFilter) *ListActionExecutionsInput

SetFilter sets the Filter field's value.

func (*ListActionExecutionsInput) SetMaxResults

func (s *ListActionExecutionsInput) SetMaxResults(v int64) *ListActionExecutionsInput

SetMaxResults sets the MaxResults field's value.

func (*ListActionExecutionsInput) SetNextToken

func (s *ListActionExecutionsInput) SetNextToken(v string) *ListActionExecutionsInput

SetNextToken sets the NextToken field's value.

func (*ListActionExecutionsInput) SetPipelineName

func (s *ListActionExecutionsInput) SetPipelineName(v string) *ListActionExecutionsInput

SetPipelineName sets the PipelineName field's value.

func (ListActionExecutionsInput) String

func (s ListActionExecutionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListActionExecutionsInput) Validate

func (s *ListActionExecutionsInput) Validate() error

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

type ListActionExecutionsOutput

type ListActionExecutionsOutput struct {

    // The details for a list of recent executions, such as action execution ID.
    ActionExecutionDetails []*ActionExecutionDetail `locationName:"actionExecutionDetails" type:"list"`

    // If the amount of returned information is significantly large, an identifier
    // is also returned and can be used in a subsequent ListActionExecutions call
    // to return the next set of action executions in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (ListActionExecutionsOutput) GoString

func (s ListActionExecutionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListActionExecutionsOutput) SetActionExecutionDetails

func (s *ListActionExecutionsOutput) SetActionExecutionDetails(v []*ActionExecutionDetail) *ListActionExecutionsOutput

SetActionExecutionDetails sets the ActionExecutionDetails field's value.

func (*ListActionExecutionsOutput) SetNextToken

func (s *ListActionExecutionsOutput) SetNextToken(v string) *ListActionExecutionsOutput

SetNextToken sets the NextToken field's value.

func (ListActionExecutionsOutput) String

func (s ListActionExecutionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListActionTypesInput

type ListActionTypesInput struct {

    // Filters the list of action types to those created by a specified entity.
    ActionOwnerFilter *string `locationName:"actionOwnerFilter" type:"string" enum:"ActionOwner"`

    // An identifier that was returned from the previous list action types call,
    // which can be used to return the next set of action types in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // The Region to filter on for the list of action types.
    RegionFilter *string `locationName:"regionFilter" min:"4" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListActionTypes action.

func (ListActionTypesInput) GoString

func (s ListActionTypesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListActionTypesInput) SetActionOwnerFilter

func (s *ListActionTypesInput) SetActionOwnerFilter(v string) *ListActionTypesInput

SetActionOwnerFilter sets the ActionOwnerFilter field's value.

func (*ListActionTypesInput) SetNextToken

func (s *ListActionTypesInput) SetNextToken(v string) *ListActionTypesInput

SetNextToken sets the NextToken field's value.

func (*ListActionTypesInput) SetRegionFilter

func (s *ListActionTypesInput) SetRegionFilter(v string) *ListActionTypesInput

SetRegionFilter sets the RegionFilter field's value.

func (ListActionTypesInput) String

func (s ListActionTypesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListActionTypesInput) Validate

func (s *ListActionTypesInput) Validate() error

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

type ListActionTypesOutput

type ListActionTypesOutput struct {

    // Provides details of the action types.
    //
    // ActionTypes is a required field
    ActionTypes []*ActionType `locationName:"actionTypes" type:"list" required:"true"`

    // If the amount of returned information is significantly large, an identifier
    // is also returned. It can be used in a subsequent list action types call to
    // return the next set of action types in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a ListActionTypes action.

func (ListActionTypesOutput) GoString

func (s ListActionTypesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListActionTypesOutput) SetActionTypes

func (s *ListActionTypesOutput) SetActionTypes(v []*ActionType) *ListActionTypesOutput

SetActionTypes sets the ActionTypes field's value.

func (*ListActionTypesOutput) SetNextToken

func (s *ListActionTypesOutput) SetNextToken(v string) *ListActionTypesOutput

SetNextToken sets the NextToken field's value.

func (ListActionTypesOutput) String

func (s ListActionTypesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListPipelineExecutionsInput

type ListPipelineExecutionsInput struct {

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned nextToken value. Pipeline
    // history is limited to the most recent 12 months, based on pipeline execution
    // start times. Default value is 100.
    MaxResults *int64 `locationName:"maxResults" min:"1" type:"integer"`

    // The token that was returned from the previous ListPipelineExecutions call,
    // which can be used to return the next set of pipeline executions in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // The name of the pipeline for which you want to get execution summary information.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a ListPipelineExecutions action.

func (ListPipelineExecutionsInput) GoString

func (s ListPipelineExecutionsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListPipelineExecutionsInput) SetMaxResults

func (s *ListPipelineExecutionsInput) SetMaxResults(v int64) *ListPipelineExecutionsInput

SetMaxResults sets the MaxResults field's value.

func (*ListPipelineExecutionsInput) SetNextToken

func (s *ListPipelineExecutionsInput) SetNextToken(v string) *ListPipelineExecutionsInput

SetNextToken sets the NextToken field's value.

func (*ListPipelineExecutionsInput) SetPipelineName

func (s *ListPipelineExecutionsInput) SetPipelineName(v string) *ListPipelineExecutionsInput

SetPipelineName sets the PipelineName field's value.

func (ListPipelineExecutionsInput) String

func (s ListPipelineExecutionsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListPipelineExecutionsInput) Validate

func (s *ListPipelineExecutionsInput) Validate() error

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

type ListPipelineExecutionsOutput

type ListPipelineExecutionsOutput struct {

    // A token that can be used in the next ListPipelineExecutions call. To view
    // all items in the list, continue to call this operation with each subsequent
    // token until no more nextToken values are returned.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // A list of executions in the history of a pipeline.
    PipelineExecutionSummaries []*PipelineExecutionSummary `locationName:"pipelineExecutionSummaries" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a ListPipelineExecutions action.

func (ListPipelineExecutionsOutput) GoString

func (s ListPipelineExecutionsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListPipelineExecutionsOutput) SetNextToken

func (s *ListPipelineExecutionsOutput) SetNextToken(v string) *ListPipelineExecutionsOutput

SetNextToken sets the NextToken field's value.

func (*ListPipelineExecutionsOutput) SetPipelineExecutionSummaries

func (s *ListPipelineExecutionsOutput) SetPipelineExecutionSummaries(v []*PipelineExecutionSummary) *ListPipelineExecutionsOutput

SetPipelineExecutionSummaries sets the PipelineExecutionSummaries field's value.

func (ListPipelineExecutionsOutput) String

func (s ListPipelineExecutionsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListPipelinesInput

type ListPipelinesInput struct {

    // The maximum number of pipelines to return in a single call. To retrieve the
    // remaining pipelines, make another call with the returned nextToken value.
    // The minimum value you can specify is 1. The maximum accepted value is 1000.
    MaxResults *int64 `locationName:"maxResults" min:"1" type:"integer"`

    // An identifier that was returned from the previous list pipelines call. It
    // can be used to return the next set of pipelines in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents the input of a ListPipelines action.

func (ListPipelinesInput) GoString

func (s ListPipelinesInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListPipelinesInput) SetMaxResults

func (s *ListPipelinesInput) SetMaxResults(v int64) *ListPipelinesInput

SetMaxResults sets the MaxResults field's value.

func (*ListPipelinesInput) SetNextToken

func (s *ListPipelinesInput) SetNextToken(v string) *ListPipelinesInput

SetNextToken sets the NextToken field's value.

func (ListPipelinesInput) String

func (s ListPipelinesInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListPipelinesInput) Validate

func (s *ListPipelinesInput) Validate() error

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

type ListPipelinesOutput

type ListPipelinesOutput struct {

    // If the amount of returned information is significantly large, an identifier
    // is also returned. It can be used in a subsequent list pipelines call to return
    // the next set of pipelines in the list.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // The list of pipelines.
    Pipelines []*PipelineSummary `locationName:"pipelines" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a ListPipelines action.

func (ListPipelinesOutput) GoString

func (s ListPipelinesOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListPipelinesOutput) SetNextToken

func (s *ListPipelinesOutput) SetNextToken(v string) *ListPipelinesOutput

SetNextToken sets the NextToken field's value.

func (*ListPipelinesOutput) SetPipelines

func (s *ListPipelinesOutput) SetPipelines(v []*PipelineSummary) *ListPipelinesOutput

SetPipelines sets the Pipelines field's value.

func (ListPipelinesOutput) String

func (s ListPipelinesOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListTagsForResourceInput

type ListTagsForResourceInput struct {

    // The maximum number of results to return in a single call.
    MaxResults *int64 `locationName:"maxResults" min:"1" type:"integer"`

    // The token that was returned from the previous API call, which would be used
    // to return the next page of the list. The ListTagsforResource call lists all
    // available tags in one call and does not use pagination.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // The Amazon Resource Name (ARN) of the resource to get tags for.
    //
    // ResourceArn is a required field
    ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceInput) GoString

func (s ListTagsForResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) SetMaxResults

func (s *ListTagsForResourceInput) SetMaxResults(v int64) *ListTagsForResourceInput

SetMaxResults sets the MaxResults field's value.

func (*ListTagsForResourceInput) SetNextToken

func (s *ListTagsForResourceInput) SetNextToken(v string) *ListTagsForResourceInput

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceInput) SetResourceArn

func (s *ListTagsForResourceInput) SetResourceArn(v string) *ListTagsForResourceInput

SetResourceArn sets the ResourceArn field's value.

func (ListTagsForResourceInput) String

func (s ListTagsForResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceInput) Validate

func (s *ListTagsForResourceInput) Validate() error

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

type ListTagsForResourceOutput

type ListTagsForResourceOutput struct {

    // If the amount of returned information is significantly large, an identifier
    // is also returned and can be used in a subsequent API call to return the next
    // page of the list. The ListTagsforResource call lists all available tags in
    // one call and does not use pagination.
    NextToken *string `locationName:"nextToken" min:"1" type:"string"`

    // The tags for the resource.
    Tags []*Tag `locationName:"tags" type:"list"`
    // contains filtered or unexported fields
}

func (ListTagsForResourceOutput) GoString

func (s ListTagsForResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListTagsForResourceOutput) SetNextToken

func (s *ListTagsForResourceOutput) SetNextToken(v string) *ListTagsForResourceOutput

SetNextToken sets the NextToken field's value.

func (*ListTagsForResourceOutput) SetTags

func (s *ListTagsForResourceOutput) SetTags(v []*Tag) *ListTagsForResourceOutput

SetTags sets the Tags field's value.

func (ListTagsForResourceOutput) String

func (s ListTagsForResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListWebhookItem

type ListWebhookItem struct {

    // The Amazon Resource Name (ARN) of the webhook.
    Arn *string `locationName:"arn" type:"string"`

    // The detail returned for each webhook, such as the webhook authentication
    // type and filter rules.
    //
    // Definition is a required field
    Definition *WebhookDefinition `locationName:"definition" type:"structure" required:"true"`

    // The number code of the error.
    ErrorCode *string `locationName:"errorCode" type:"string"`

    // The text of the error message about the webhook.
    ErrorMessage *string `locationName:"errorMessage" type:"string"`

    // The date and time a webhook was last successfully triggered, in timestamp
    // format.
    LastTriggered *time.Time `locationName:"lastTriggered" type:"timestamp"`

    // Specifies the tags applied to the webhook.
    Tags []*Tag `locationName:"tags" type:"list"`

    // A unique URL generated by CodePipeline. When a POST request is made to this
    // URL, the defined pipeline is started as long as the body of the post request
    // satisfies the defined authentication and filtering conditions. Deleting and
    // re-creating a webhook makes the old URL invalid and generates a new one.
    //
    // Url is a required field
    Url *string `locationName:"url" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

The detail returned for each webhook after listing webhooks, such as the webhook URL, the webhook name, and the webhook ARN.

func (ListWebhookItem) GoString

func (s ListWebhookItem) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListWebhookItem) SetArn

func (s *ListWebhookItem) SetArn(v string) *ListWebhookItem

SetArn sets the Arn field's value.

func (*ListWebhookItem) SetDefinition

func (s *ListWebhookItem) SetDefinition(v *WebhookDefinition) *ListWebhookItem

SetDefinition sets the Definition field's value.

func (*ListWebhookItem) SetErrorCode

func (s *ListWebhookItem) SetErrorCode(v string) *ListWebhookItem

SetErrorCode sets the ErrorCode field's value.

func (*ListWebhookItem) SetErrorMessage

func (s *ListWebhookItem) SetErrorMessage(v string) *ListWebhookItem

SetErrorMessage sets the ErrorMessage field's value.

func (*ListWebhookItem) SetLastTriggered

func (s *ListWebhookItem) SetLastTriggered(v time.Time) *ListWebhookItem

SetLastTriggered sets the LastTriggered field's value.

func (*ListWebhookItem) SetTags

func (s *ListWebhookItem) SetTags(v []*Tag) *ListWebhookItem

SetTags sets the Tags field's value.

func (*ListWebhookItem) SetUrl

func (s *ListWebhookItem) SetUrl(v string) *ListWebhookItem

SetUrl sets the Url field's value.

func (ListWebhookItem) String

func (s ListWebhookItem) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ListWebhooksInput

type ListWebhooksInput struct {

    // The maximum number of results to return in a single call. To retrieve the
    // remaining results, make another call with the returned nextToken value.
    MaxResults *int64 `min:"1" type:"integer"`

    // The token that was returned from the previous ListWebhooks call, which can
    // be used to return the next set of webhooks in the list.
    NextToken *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (ListWebhooksInput) GoString

func (s ListWebhooksInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListWebhooksInput) SetMaxResults

func (s *ListWebhooksInput) SetMaxResults(v int64) *ListWebhooksInput

SetMaxResults sets the MaxResults field's value.

func (*ListWebhooksInput) SetNextToken

func (s *ListWebhooksInput) SetNextToken(v string) *ListWebhooksInput

SetNextToken sets the NextToken field's value.

func (ListWebhooksInput) String

func (s ListWebhooksInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListWebhooksInput) Validate

func (s *ListWebhooksInput) Validate() error

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

type ListWebhooksOutput

type ListWebhooksOutput struct {

    // If the amount of returned information is significantly large, an identifier
    // is also returned and can be used in a subsequent ListWebhooks call to return
    // the next set of webhooks in the list.
    NextToken *string `min:"1" type:"string"`

    // The JSON detail returned for each webhook in the list output for the ListWebhooks
    // call.
    Webhooks []*ListWebhookItem `locationName:"webhooks" type:"list"`
    // contains filtered or unexported fields
}

func (ListWebhooksOutput) GoString

func (s ListWebhooksOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ListWebhooksOutput) SetNextToken

func (s *ListWebhooksOutput) SetNextToken(v string) *ListWebhooksOutput

SetNextToken sets the NextToken field's value.

func (*ListWebhooksOutput) SetWebhooks

func (s *ListWebhooksOutput) SetWebhooks(v []*ListWebhookItem) *ListWebhooksOutput

SetWebhooks sets the Webhooks field's value.

func (ListWebhooksOutput) String

func (s ListWebhooksOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type NotLatestPipelineExecutionException

type NotLatestPipelineExecutionException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The stage has failed in a later run of the pipeline and the pipelineExecutionId associated with the request is out of date.

func (*NotLatestPipelineExecutionException) Code

func (s *NotLatestPipelineExecutionException) Code() string

Code returns the exception type name.

func (*NotLatestPipelineExecutionException) Error

func (s *NotLatestPipelineExecutionException) Error() string

func (NotLatestPipelineExecutionException) GoString

func (s NotLatestPipelineExecutionException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*NotLatestPipelineExecutionException) Message

func (s *NotLatestPipelineExecutionException) Message() string

Message returns the exception's message.

func (*NotLatestPipelineExecutionException) OrigErr

func (s *NotLatestPipelineExecutionException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*NotLatestPipelineExecutionException) RequestID

func (s *NotLatestPipelineExecutionException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*NotLatestPipelineExecutionException) StatusCode

func (s *NotLatestPipelineExecutionException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (NotLatestPipelineExecutionException) String

func (s NotLatestPipelineExecutionException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type OutputArtifact

type OutputArtifact struct {

    // The name of the output of an artifact, such as "My App".
    //
    // The input artifact of an action must exactly match the output artifact declared
    // in a preceding action, but the input artifact does not have to be the next
    // action in strict sequence from the action that provided the output artifact.
    // Actions in parallel can declare different output artifacts, which are in
    // turn consumed by different following actions.
    //
    // Output artifact names must be unique within a pipeline.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about the output of an action.

func (OutputArtifact) GoString

func (s OutputArtifact) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OutputArtifact) SetName

func (s *OutputArtifact) SetName(v string) *OutputArtifact

SetName sets the Name field's value.

func (OutputArtifact) String

func (s OutputArtifact) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OutputArtifact) Validate

func (s *OutputArtifact) Validate() error

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

type OutputVariablesSizeExceededException

type OutputVariablesSizeExceededException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Exceeded the total size limit for all variables in the pipeline.

func (*OutputVariablesSizeExceededException) Code

func (s *OutputVariablesSizeExceededException) Code() string

Code returns the exception type name.

func (*OutputVariablesSizeExceededException) Error

func (s *OutputVariablesSizeExceededException) Error() string

func (OutputVariablesSizeExceededException) GoString

func (s OutputVariablesSizeExceededException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*OutputVariablesSizeExceededException) Message

func (s *OutputVariablesSizeExceededException) Message() string

Message returns the exception's message.

func (*OutputVariablesSizeExceededException) OrigErr

func (s *OutputVariablesSizeExceededException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*OutputVariablesSizeExceededException) RequestID

func (s *OutputVariablesSizeExceededException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*OutputVariablesSizeExceededException) StatusCode

func (s *OutputVariablesSizeExceededException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (OutputVariablesSizeExceededException) String

func (s OutputVariablesSizeExceededException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineContext

type PipelineContext struct {

    // The context of an action to a job worker in the stage of a pipeline.
    Action *ActionContext `locationName:"action" type:"structure"`

    // The Amazon Resource Name (ARN) of the pipeline.
    PipelineArn *string `locationName:"pipelineArn" type:"string"`

    // The execution ID of the pipeline.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`

    // The name of the pipeline. This is a user-specified value. Pipeline names
    // must be unique across all pipeline names under an Amazon Web Services account.
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string"`

    // The stage of the pipeline.
    Stage *StageContext `locationName:"stage" type:"structure"`
    // contains filtered or unexported fields
}

Represents information about a pipeline to a job worker.

PipelineContext contains pipelineArn and pipelineExecutionId for custom action jobs. The pipelineArn and pipelineExecutionId fields are not populated for ThirdParty action jobs.

func (PipelineContext) GoString

func (s PipelineContext) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineContext) SetAction

func (s *PipelineContext) SetAction(v *ActionContext) *PipelineContext

SetAction sets the Action field's value.

func (*PipelineContext) SetPipelineArn

func (s *PipelineContext) SetPipelineArn(v string) *PipelineContext

SetPipelineArn sets the PipelineArn field's value.

func (*PipelineContext) SetPipelineExecutionId

func (s *PipelineContext) SetPipelineExecutionId(v string) *PipelineContext

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*PipelineContext) SetPipelineName

func (s *PipelineContext) SetPipelineName(v string) *PipelineContext

SetPipelineName sets the PipelineName field's value.

func (*PipelineContext) SetStage

func (s *PipelineContext) SetStage(v *StageContext) *PipelineContext

SetStage sets the Stage field's value.

func (PipelineContext) String

func (s PipelineContext) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineDeclaration

type PipelineDeclaration struct {

    // Represents information about the S3 bucket where artifacts are stored for
    // the pipeline.
    //
    // You must include either artifactStore or artifactStores in your pipeline,
    // but you cannot use both. If you create a cross-region action in your pipeline,
    // you must use artifactStores.
    ArtifactStore *ArtifactStore `locationName:"artifactStore" type:"structure"`

    // A mapping of artifactStore objects and their corresponding Amazon Web Services
    // Regions. There must be an artifact store for the pipeline Region and for
    // each cross-region action in the pipeline.
    //
    // You must include either artifactStore or artifactStores in your pipeline,
    // but you cannot use both. If you create a cross-region action in your pipeline,
    // you must use artifactStores.
    ArtifactStores map[string]*ArtifactStore `locationName:"artifactStores" type:"map"`

    // The method that the pipeline will use to handle multiple executions. The
    // default mode is SUPERSEDED.
    ExecutionMode *string `locationName:"executionMode" type:"string" enum:"ExecutionMode"`

    // The name of the pipeline.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // CodePipeline provides the following pipeline types, which differ in characteristics
    // and price, so that you can tailor your pipeline features and cost to the
    // needs of your applications.
    //
    //    * V1 type pipelines have a JSON structure that contains standard pipeline,
    //    stage, and action-level parameters.
    //
    //    * V2 type pipelines have the same structure as a V1 type, along with additional
    //    parameters for release safety and trigger configuration.
    //
    // Including V2 parameters, such as triggers on Git tags, in the pipeline JSON
    // when creating or updating a pipeline will result in the pipeline having the
    // V2 type of pipeline and the associated costs.
    //
    // For information about pricing for CodePipeline, see Pricing (http://aws.amazon.com/codepipeline/pricing/).
    //
    // For information about which type of pipeline to choose, see What type of
    // pipeline is right for me? (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html).
    PipelineType *string `locationName:"pipelineType" type:"string" enum:"PipelineType"`

    // The Amazon Resource Name (ARN) for CodePipeline to use to either perform
    // actions with no actionRoleArn, or to use to assume roles for actions with
    // an actionRoleArn.
    //
    // RoleArn is a required field
    RoleArn *string `locationName:"roleArn" type:"string" required:"true"`

    // The stage in which to perform the action.
    //
    // Stages is a required field
    Stages []*StageDeclaration `locationName:"stages" type:"list" required:"true"`

    // The trigger configuration specifying a type of event, such as Git tags, that
    // starts the pipeline.
    //
    // When a trigger configuration is specified, default change detection for repository
    // and branch commits is disabled.
    Triggers []*PipelineTriggerDeclaration `locationName:"triggers" type:"list"`

    // A list that defines the pipeline variables for a pipeline resource. Variable
    // names can have alphanumeric and underscore characters, and the values must
    // match [A-Za-z0-9@\-_]+.
    Variables []*PipelineVariableDeclaration `locationName:"variables" type:"list"`

    // The version number of the pipeline. A new pipeline always has a version number
    // of 1. This number is incremented when a pipeline is updated.
    Version *int64 `locationName:"version" min:"1" type:"integer"`
    // contains filtered or unexported fields
}

Represents the structure of actions and stages to be performed in the pipeline.

func (PipelineDeclaration) GoString

func (s PipelineDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineDeclaration) SetArtifactStore

func (s *PipelineDeclaration) SetArtifactStore(v *ArtifactStore) *PipelineDeclaration

SetArtifactStore sets the ArtifactStore field's value.

func (*PipelineDeclaration) SetArtifactStores

func (s *PipelineDeclaration) SetArtifactStores(v map[string]*ArtifactStore) *PipelineDeclaration

SetArtifactStores sets the ArtifactStores field's value.

func (*PipelineDeclaration) SetExecutionMode

func (s *PipelineDeclaration) SetExecutionMode(v string) *PipelineDeclaration

SetExecutionMode sets the ExecutionMode field's value.

func (*PipelineDeclaration) SetName

func (s *PipelineDeclaration) SetName(v string) *PipelineDeclaration

SetName sets the Name field's value.

func (*PipelineDeclaration) SetPipelineType

func (s *PipelineDeclaration) SetPipelineType(v string) *PipelineDeclaration

SetPipelineType sets the PipelineType field's value.

func (*PipelineDeclaration) SetRoleArn

func (s *PipelineDeclaration) SetRoleArn(v string) *PipelineDeclaration

SetRoleArn sets the RoleArn field's value.

func (*PipelineDeclaration) SetStages

func (s *PipelineDeclaration) SetStages(v []*StageDeclaration) *PipelineDeclaration

SetStages sets the Stages field's value.

func (*PipelineDeclaration) SetTriggers

func (s *PipelineDeclaration) SetTriggers(v []*PipelineTriggerDeclaration) *PipelineDeclaration

SetTriggers sets the Triggers field's value.

func (*PipelineDeclaration) SetVariables

func (s *PipelineDeclaration) SetVariables(v []*PipelineVariableDeclaration) *PipelineDeclaration

SetVariables sets the Variables field's value.

func (*PipelineDeclaration) SetVersion

func (s *PipelineDeclaration) SetVersion(v int64) *PipelineDeclaration

SetVersion sets the Version field's value.

func (PipelineDeclaration) String

func (s PipelineDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineDeclaration) Validate

func (s *PipelineDeclaration) Validate() error

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

type PipelineExecution

type PipelineExecution struct {

    // A list of ArtifactRevision objects included in a pipeline execution.
    ArtifactRevisions []*ArtifactRevision `locationName:"artifactRevisions" type:"list"`

    // The method that the pipeline will use to handle multiple executions. The
    // default mode is SUPERSEDED.
    ExecutionMode *string `locationName:"executionMode" type:"string" enum:"ExecutionMode"`

    // The ID of the pipeline execution.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`

    // The name of the pipeline with the specified pipeline execution.
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string"`

    // The version number of the pipeline with the specified pipeline execution.
    PipelineVersion *int64 `locationName:"pipelineVersion" min:"1" type:"integer"`

    // The status of the pipeline execution.
    //
    //    * Cancelled: The pipeline’s definition was updated before the pipeline
    //    execution could be completed.
    //
    //    * InProgress: The pipeline execution is currently running.
    //
    //    * Stopped: The pipeline execution was manually stopped. For more information,
    //    see Stopped Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped).
    //
    //    * Stopping: The pipeline execution received a request to be manually stopped.
    //    Depending on the selected stop mode, the execution is either completing
    //    or abandoning in-progress actions. For more information, see Stopped Executions
    //    (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped).
    //
    //    * Succeeded: The pipeline execution was completed successfully.
    //
    //    * Superseded: While this pipeline execution was waiting for the next stage
    //    to be completed, a newer pipeline execution advanced and continued through
    //    the pipeline instead. For more information, see Superseded Executions
    //    (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded).
    //
    //    * Failed: The pipeline execution was not completed successfully.
    Status *string `locationName:"status" type:"string" enum:"PipelineExecutionStatus"`

    // A summary that contains a description of the pipeline execution status.
    StatusSummary *string `locationName:"statusSummary" type:"string"`

    // The interaction or event that started a pipeline execution.
    Trigger *ExecutionTrigger `locationName:"trigger" type:"structure"`

    // A list of pipeline variables used for the pipeline execution.
    Variables []*ResolvedPipelineVariable `locationName:"variables" type:"list"`
    // contains filtered or unexported fields
}

Represents information about an execution of a pipeline.

func (PipelineExecution) GoString

func (s PipelineExecution) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineExecution) SetArtifactRevisions

func (s *PipelineExecution) SetArtifactRevisions(v []*ArtifactRevision) *PipelineExecution

SetArtifactRevisions sets the ArtifactRevisions field's value.

func (*PipelineExecution) SetExecutionMode

func (s *PipelineExecution) SetExecutionMode(v string) *PipelineExecution

SetExecutionMode sets the ExecutionMode field's value.

func (*PipelineExecution) SetPipelineExecutionId

func (s *PipelineExecution) SetPipelineExecutionId(v string) *PipelineExecution

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*PipelineExecution) SetPipelineName

func (s *PipelineExecution) SetPipelineName(v string) *PipelineExecution

SetPipelineName sets the PipelineName field's value.

func (*PipelineExecution) SetPipelineVersion

func (s *PipelineExecution) SetPipelineVersion(v int64) *PipelineExecution

SetPipelineVersion sets the PipelineVersion field's value.

func (*PipelineExecution) SetStatus

func (s *PipelineExecution) SetStatus(v string) *PipelineExecution

SetStatus sets the Status field's value.

func (*PipelineExecution) SetStatusSummary

func (s *PipelineExecution) SetStatusSummary(v string) *PipelineExecution

SetStatusSummary sets the StatusSummary field's value.

func (*PipelineExecution) SetTrigger

func (s *PipelineExecution) SetTrigger(v *ExecutionTrigger) *PipelineExecution

SetTrigger sets the Trigger field's value.

func (*PipelineExecution) SetVariables

func (s *PipelineExecution) SetVariables(v []*ResolvedPipelineVariable) *PipelineExecution

SetVariables sets the Variables field's value.

func (PipelineExecution) String

func (s PipelineExecution) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineExecutionNotFoundException

type PipelineExecutionNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The pipeline execution was specified in an invalid format or cannot be found, or an execution ID does not belong to the specified pipeline.

func (*PipelineExecutionNotFoundException) Code

func (s *PipelineExecutionNotFoundException) Code() string

Code returns the exception type name.

func (*PipelineExecutionNotFoundException) Error

func (s *PipelineExecutionNotFoundException) Error() string

func (PipelineExecutionNotFoundException) GoString

func (s PipelineExecutionNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineExecutionNotFoundException) Message

func (s *PipelineExecutionNotFoundException) Message() string

Message returns the exception's message.

func (*PipelineExecutionNotFoundException) OrigErr

func (s *PipelineExecutionNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*PipelineExecutionNotFoundException) RequestID

func (s *PipelineExecutionNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*PipelineExecutionNotFoundException) StatusCode

func (s *PipelineExecutionNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (PipelineExecutionNotFoundException) String

func (s PipelineExecutionNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineExecutionNotStoppableException

type PipelineExecutionNotStoppableException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Unable to stop the pipeline execution. The execution might already be in a Stopped state, or it might no longer be in progress.

func (*PipelineExecutionNotStoppableException) Code

func (s *PipelineExecutionNotStoppableException) Code() string

Code returns the exception type name.

func (*PipelineExecutionNotStoppableException) Error

func (s *PipelineExecutionNotStoppableException) Error() string

func (PipelineExecutionNotStoppableException) GoString

func (s PipelineExecutionNotStoppableException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineExecutionNotStoppableException) Message

func (s *PipelineExecutionNotStoppableException) Message() string

Message returns the exception's message.

func (*PipelineExecutionNotStoppableException) OrigErr

func (s *PipelineExecutionNotStoppableException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*PipelineExecutionNotStoppableException) RequestID

func (s *PipelineExecutionNotStoppableException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*PipelineExecutionNotStoppableException) StatusCode

func (s *PipelineExecutionNotStoppableException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (PipelineExecutionNotStoppableException) String

func (s PipelineExecutionNotStoppableException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineExecutionSummary

type PipelineExecutionSummary struct {

    // The method that the pipeline will use to handle multiple executions. The
    // default mode is SUPERSEDED.
    ExecutionMode *string `locationName:"executionMode" type:"string" enum:"ExecutionMode"`

    // The date and time of the last change to the pipeline execution, in timestamp
    // format.
    LastUpdateTime *time.Time `locationName:"lastUpdateTime" type:"timestamp"`

    // The ID of the pipeline execution.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`

    // A list of the source artifact revisions that initiated a pipeline execution.
    SourceRevisions []*SourceRevision `locationName:"sourceRevisions" type:"list"`

    // The date and time when the pipeline execution began, in timestamp format.
    StartTime *time.Time `locationName:"startTime" type:"timestamp"`

    // The status of the pipeline execution.
    //
    //    * InProgress: The pipeline execution is currently running.
    //
    //    * Stopped: The pipeline execution was manually stopped. For more information,
    //    see Stopped Executions (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped).
    //
    //    * Stopping: The pipeline execution received a request to be manually stopped.
    //    Depending on the selected stop mode, the execution is either completing
    //    or abandoning in-progress actions. For more information, see Stopped Executions
    //    (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-executions-stopped).
    //
    //    * Succeeded: The pipeline execution was completed successfully.
    //
    //    * Superseded: While this pipeline execution was waiting for the next stage
    //    to be completed, a newer pipeline execution advanced and continued through
    //    the pipeline instead. For more information, see Superseded Executions
    //    (https://docs.aws.amazon.com/codepipeline/latest/userguide/concepts.html#concepts-superseded).
    //
    //    * Failed: The pipeline execution was not completed successfully.
    Status *string `locationName:"status" type:"string" enum:"PipelineExecutionStatus"`

    // The interaction that stopped a pipeline execution.
    StopTrigger *StopExecutionTrigger `locationName:"stopTrigger" type:"structure"`

    // The interaction or event that started a pipeline execution, such as automated
    // change detection or a StartPipelineExecution API call.
    Trigger *ExecutionTrigger `locationName:"trigger" type:"structure"`
    // contains filtered or unexported fields
}

Summary information about a pipeline execution.

func (PipelineExecutionSummary) GoString

func (s PipelineExecutionSummary) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineExecutionSummary) SetExecutionMode

func (s *PipelineExecutionSummary) SetExecutionMode(v string) *PipelineExecutionSummary

SetExecutionMode sets the ExecutionMode field's value.

func (*PipelineExecutionSummary) SetLastUpdateTime

func (s *PipelineExecutionSummary) SetLastUpdateTime(v time.Time) *PipelineExecutionSummary

SetLastUpdateTime sets the LastUpdateTime field's value.

func (*PipelineExecutionSummary) SetPipelineExecutionId

func (s *PipelineExecutionSummary) SetPipelineExecutionId(v string) *PipelineExecutionSummary

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*PipelineExecutionSummary) SetSourceRevisions

func (s *PipelineExecutionSummary) SetSourceRevisions(v []*SourceRevision) *PipelineExecutionSummary

SetSourceRevisions sets the SourceRevisions field's value.

func (*PipelineExecutionSummary) SetStartTime

func (s *PipelineExecutionSummary) SetStartTime(v time.Time) *PipelineExecutionSummary

SetStartTime sets the StartTime field's value.

func (*PipelineExecutionSummary) SetStatus

func (s *PipelineExecutionSummary) SetStatus(v string) *PipelineExecutionSummary

SetStatus sets the Status field's value.

func (*PipelineExecutionSummary) SetStopTrigger

func (s *PipelineExecutionSummary) SetStopTrigger(v *StopExecutionTrigger) *PipelineExecutionSummary

SetStopTrigger sets the StopTrigger field's value.

func (*PipelineExecutionSummary) SetTrigger

func (s *PipelineExecutionSummary) SetTrigger(v *ExecutionTrigger) *PipelineExecutionSummary

SetTrigger sets the Trigger field's value.

func (PipelineExecutionSummary) String

func (s PipelineExecutionSummary) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineMetadata

type PipelineMetadata struct {

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

    // The Amazon Resource Name (ARN) of the pipeline.
    PipelineArn *string `locationName:"pipelineArn" type:"string"`

    // The date and time that polling for source changes (periodic checks) was stopped
    // for the pipeline, in timestamp format. You can migrate (update) a polling
    // pipeline to use event-based change detection. For example, for a pipeline
    // with a CodeCommit source, we recommend you migrate (update) your pipeline
    // to use CloudWatch Events. To learn more, see Migrate polling pipelines to
    // use event-based change detection (https://docs.aws.amazon.com/codepipeline/latest/userguide/update-change-detection.html)
    // in the CodePipeline User Guide.
    PollingDisabledAt *time.Time `locationName:"pollingDisabledAt" type:"timestamp"`

    // The date and time the pipeline was last updated, in timestamp format.
    Updated *time.Time `locationName:"updated" type:"timestamp"`
    // contains filtered or unexported fields
}

Information about a pipeline.

func (PipelineMetadata) GoString

func (s PipelineMetadata) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineMetadata) SetCreated

func (s *PipelineMetadata) SetCreated(v time.Time) *PipelineMetadata

SetCreated sets the Created field's value.

func (*PipelineMetadata) SetPipelineArn

func (s *PipelineMetadata) SetPipelineArn(v string) *PipelineMetadata

SetPipelineArn sets the PipelineArn field's value.

func (*PipelineMetadata) SetPollingDisabledAt

func (s *PipelineMetadata) SetPollingDisabledAt(v time.Time) *PipelineMetadata

SetPollingDisabledAt sets the PollingDisabledAt field's value.

func (*PipelineMetadata) SetUpdated

func (s *PipelineMetadata) SetUpdated(v time.Time) *PipelineMetadata

SetUpdated sets the Updated field's value.

func (PipelineMetadata) String

func (s PipelineMetadata) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineNameInUseException

type PipelineNameInUseException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified pipeline name is already in use.

func (*PipelineNameInUseException) Code

func (s *PipelineNameInUseException) Code() string

Code returns the exception type name.

func (*PipelineNameInUseException) Error

func (s *PipelineNameInUseException) Error() string

func (PipelineNameInUseException) GoString

func (s PipelineNameInUseException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineNameInUseException) Message

func (s *PipelineNameInUseException) Message() string

Message returns the exception's message.

func (*PipelineNameInUseException) OrigErr

func (s *PipelineNameInUseException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*PipelineNameInUseException) RequestID

func (s *PipelineNameInUseException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*PipelineNameInUseException) StatusCode

func (s *PipelineNameInUseException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (PipelineNameInUseException) String

func (s PipelineNameInUseException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineNotFoundException

type PipelineNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The pipeline was specified in an invalid format or cannot be found.

func (*PipelineNotFoundException) Code

func (s *PipelineNotFoundException) Code() string

Code returns the exception type name.

func (*PipelineNotFoundException) Error

func (s *PipelineNotFoundException) Error() string

func (PipelineNotFoundException) GoString

func (s PipelineNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineNotFoundException) Message

func (s *PipelineNotFoundException) Message() string

Message returns the exception's message.

func (*PipelineNotFoundException) OrigErr

func (s *PipelineNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*PipelineNotFoundException) RequestID

func (s *PipelineNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*PipelineNotFoundException) StatusCode

func (s *PipelineNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (PipelineNotFoundException) String

func (s PipelineNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineSummary

type PipelineSummary struct {

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

    // The method that the pipeline will use to handle multiple executions. The
    // default mode is SUPERSEDED.
    ExecutionMode *string `locationName:"executionMode" type:"string" enum:"ExecutionMode"`

    // The name of the pipeline.
    Name *string `locationName:"name" min:"1" type:"string"`

    // CodePipeline provides the following pipeline types, which differ in characteristics
    // and price, so that you can tailor your pipeline features and cost to the
    // needs of your applications.
    //
    //    * V1 type pipelines have a JSON structure that contains standard pipeline,
    //    stage, and action-level parameters.
    //
    //    * V2 type pipelines have the same structure as a V1 type, along with additional
    //    parameters for release safety and trigger configuration.
    //
    // Including V2 parameters, such as triggers on Git tags, in the pipeline JSON
    // when creating or updating a pipeline will result in the pipeline having the
    // V2 type of pipeline and the associated costs.
    //
    // For information about pricing for CodePipeline, see Pricing (http://aws.amazon.com/codepipeline/pricing/).
    //
    // For information about which type of pipeline to choose, see What type of
    // pipeline is right for me? (https://docs.aws.amazon.com/codepipeline/latest/userguide/pipeline-types-planning.html).
    PipelineType *string `locationName:"pipelineType" type:"string" enum:"PipelineType"`

    // The date and time of the last update to the pipeline, in timestamp format.
    Updated *time.Time `locationName:"updated" type:"timestamp"`

    // The version number of the pipeline.
    Version *int64 `locationName:"version" min:"1" type:"integer"`
    // contains filtered or unexported fields
}

Returns a summary of a pipeline.

func (PipelineSummary) GoString

func (s PipelineSummary) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineSummary) SetCreated

func (s *PipelineSummary) SetCreated(v time.Time) *PipelineSummary

SetCreated sets the Created field's value.

func (*PipelineSummary) SetExecutionMode

func (s *PipelineSummary) SetExecutionMode(v string) *PipelineSummary

SetExecutionMode sets the ExecutionMode field's value.

func (*PipelineSummary) SetName

func (s *PipelineSummary) SetName(v string) *PipelineSummary

SetName sets the Name field's value.

func (*PipelineSummary) SetPipelineType

func (s *PipelineSummary) SetPipelineType(v string) *PipelineSummary

SetPipelineType sets the PipelineType field's value.

func (*PipelineSummary) SetUpdated

func (s *PipelineSummary) SetUpdated(v time.Time) *PipelineSummary

SetUpdated sets the Updated field's value.

func (*PipelineSummary) SetVersion

func (s *PipelineSummary) SetVersion(v int64) *PipelineSummary

SetVersion sets the Version field's value.

func (PipelineSummary) String

func (s PipelineSummary) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PipelineTriggerDeclaration

type PipelineTriggerDeclaration struct {

    // Provides the filter criteria and the source stage for the repository event
    // that starts the pipeline, such as Git tags.
    //
    // GitConfiguration is a required field
    GitConfiguration *GitConfiguration `locationName:"gitConfiguration" type:"structure" required:"true"`

    // The source provider for the event, such as connections configured for a repository
    // with Git tags, for the specified trigger configuration.
    //
    // ProviderType is a required field
    ProviderType *string `locationName:"providerType" type:"string" required:"true" enum:"PipelineTriggerProviderType"`
    // contains filtered or unexported fields
}

Represents information about the specified trigger configuration, such as the filter criteria and the source stage for the action that contains the trigger.

This is only supported for the CodeStarSourceConnection action type.

When a trigger configuration is specified, default change detection for repository and branch commits is disabled.

func (PipelineTriggerDeclaration) GoString

func (s PipelineTriggerDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineTriggerDeclaration) SetGitConfiguration

func (s *PipelineTriggerDeclaration) SetGitConfiguration(v *GitConfiguration) *PipelineTriggerDeclaration

SetGitConfiguration sets the GitConfiguration field's value.

func (*PipelineTriggerDeclaration) SetProviderType

func (s *PipelineTriggerDeclaration) SetProviderType(v string) *PipelineTriggerDeclaration

SetProviderType sets the ProviderType field's value.

func (PipelineTriggerDeclaration) String

func (s PipelineTriggerDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineTriggerDeclaration) Validate

func (s *PipelineTriggerDeclaration) Validate() error

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

type PipelineVariable

type PipelineVariable struct {

    // The name of a pipeline-level variable.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // The value of a pipeline-level variable.
    //
    // Value is a required field
    Value *string `locationName:"value" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

A pipeline-level variable used for a pipeline execution.

func (PipelineVariable) GoString

func (s PipelineVariable) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineVariable) SetName

func (s *PipelineVariable) SetName(v string) *PipelineVariable

SetName sets the Name field's value.

func (*PipelineVariable) SetValue

func (s *PipelineVariable) SetValue(v string) *PipelineVariable

SetValue sets the Value field's value.

func (PipelineVariable) String

func (s PipelineVariable) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineVariable) Validate

func (s *PipelineVariable) Validate() error

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

type PipelineVariableDeclaration

type PipelineVariableDeclaration struct {

    // The value of a pipeline-level variable.
    DefaultValue *string `locationName:"defaultValue" min:"1" type:"string"`

    // The description of a pipeline-level variable. It's used to add additional
    // context about the variable, and not being used at time when pipeline executes.
    Description *string `locationName:"description" type:"string"`

    // The name of a pipeline-level variable.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

A variable declared at the pipeline level.

func (PipelineVariableDeclaration) GoString

func (s PipelineVariableDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineVariableDeclaration) SetDefaultValue

func (s *PipelineVariableDeclaration) SetDefaultValue(v string) *PipelineVariableDeclaration

SetDefaultValue sets the DefaultValue field's value.

func (*PipelineVariableDeclaration) SetDescription

func (s *PipelineVariableDeclaration) SetDescription(v string) *PipelineVariableDeclaration

SetDescription sets the Description field's value.

func (*PipelineVariableDeclaration) SetName

func (s *PipelineVariableDeclaration) SetName(v string) *PipelineVariableDeclaration

SetName sets the Name field's value.

func (PipelineVariableDeclaration) String

func (s PipelineVariableDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineVariableDeclaration) Validate

func (s *PipelineVariableDeclaration) Validate() error

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

type PipelineVersionNotFoundException

type PipelineVersionNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The pipeline version was specified in an invalid format or cannot be found.

func (*PipelineVersionNotFoundException) Code

func (s *PipelineVersionNotFoundException) Code() string

Code returns the exception type name.

func (*PipelineVersionNotFoundException) Error

func (s *PipelineVersionNotFoundException) Error() string

func (PipelineVersionNotFoundException) GoString

func (s PipelineVersionNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PipelineVersionNotFoundException) Message

func (s *PipelineVersionNotFoundException) Message() string

Message returns the exception's message.

func (*PipelineVersionNotFoundException) OrigErr

func (s *PipelineVersionNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*PipelineVersionNotFoundException) RequestID

func (s *PipelineVersionNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*PipelineVersionNotFoundException) StatusCode

func (s *PipelineVersionNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (PipelineVersionNotFoundException) String

func (s PipelineVersionNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PollForJobsInput

type PollForJobsInput struct {

    // Represents information about an action type.
    //
    // ActionTypeId is a required field
    ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure" required:"true"`

    // The maximum number of jobs to return in a poll for jobs call.
    MaxBatchSize *int64 `locationName:"maxBatchSize" min:"1" type:"integer"`

    // A map of property names and values. For an action type with no queryable
    // properties, this value must be null or an empty map. For an action type with
    // a queryable property, you must supply that property as a key in the map.
    // Only jobs whose action configuration matches the mapped value are returned.
    QueryParam map[string]*string `locationName:"queryParam" type:"map"`
    // contains filtered or unexported fields
}

Represents the input of a PollForJobs action.

func (PollForJobsInput) GoString

func (s PollForJobsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PollForJobsInput) SetActionTypeId

func (s *PollForJobsInput) SetActionTypeId(v *ActionTypeId) *PollForJobsInput

SetActionTypeId sets the ActionTypeId field's value.

func (*PollForJobsInput) SetMaxBatchSize

func (s *PollForJobsInput) SetMaxBatchSize(v int64) *PollForJobsInput

SetMaxBatchSize sets the MaxBatchSize field's value.

func (*PollForJobsInput) SetQueryParam

func (s *PollForJobsInput) SetQueryParam(v map[string]*string) *PollForJobsInput

SetQueryParam sets the QueryParam field's value.

func (PollForJobsInput) String

func (s PollForJobsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PollForJobsInput) Validate

func (s *PollForJobsInput) Validate() error

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

type PollForJobsOutput

type PollForJobsOutput struct {

    // Information about the jobs to take action on.
    Jobs []*Job `locationName:"jobs" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a PollForJobs action.

func (PollForJobsOutput) GoString

func (s PollForJobsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PollForJobsOutput) SetJobs

func (s *PollForJobsOutput) SetJobs(v []*Job) *PollForJobsOutput

SetJobs sets the Jobs field's value.

func (PollForJobsOutput) String

func (s PollForJobsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PollForThirdPartyJobsInput

type PollForThirdPartyJobsInput struct {

    // Represents information about an action type.
    //
    // ActionTypeId is a required field
    ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure" required:"true"`

    // The maximum number of jobs to return in a poll for jobs call.
    MaxBatchSize *int64 `locationName:"maxBatchSize" min:"1" type:"integer"`
    // contains filtered or unexported fields
}

Represents the input of a PollForThirdPartyJobs action.

func (PollForThirdPartyJobsInput) GoString

func (s PollForThirdPartyJobsInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PollForThirdPartyJobsInput) SetActionTypeId

func (s *PollForThirdPartyJobsInput) SetActionTypeId(v *ActionTypeId) *PollForThirdPartyJobsInput

SetActionTypeId sets the ActionTypeId field's value.

func (*PollForThirdPartyJobsInput) SetMaxBatchSize

func (s *PollForThirdPartyJobsInput) SetMaxBatchSize(v int64) *PollForThirdPartyJobsInput

SetMaxBatchSize sets the MaxBatchSize field's value.

func (PollForThirdPartyJobsInput) String

func (s PollForThirdPartyJobsInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PollForThirdPartyJobsInput) Validate

func (s *PollForThirdPartyJobsInput) Validate() error

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

type PollForThirdPartyJobsOutput

type PollForThirdPartyJobsOutput struct {

    // Information about the jobs to take action on.
    Jobs []*ThirdPartyJob `locationName:"jobs" type:"list"`
    // contains filtered or unexported fields
}

Represents the output of a PollForThirdPartyJobs action.

func (PollForThirdPartyJobsOutput) GoString

func (s PollForThirdPartyJobsOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PollForThirdPartyJobsOutput) SetJobs

func (s *PollForThirdPartyJobsOutput) SetJobs(v []*ThirdPartyJob) *PollForThirdPartyJobsOutput

SetJobs sets the Jobs field's value.

func (PollForThirdPartyJobsOutput) String

func (s PollForThirdPartyJobsOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutActionRevisionInput

type PutActionRevisionInput struct {

    // The name of the action that processes the revision.
    //
    // ActionName is a required field
    ActionName *string `locationName:"actionName" min:"1" type:"string" required:"true"`

    // Represents information about the version (or revision) of an action.
    //
    // ActionRevision is a required field
    ActionRevision *ActionRevision `locationName:"actionRevision" type:"structure" required:"true"`

    // The name of the pipeline that starts processing the revision to the source.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`

    // The name of the stage that contains the action that acts on the revision.
    //
    // StageName is a required field
    StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a PutActionRevision action.

func (PutActionRevisionInput) GoString

func (s PutActionRevisionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutActionRevisionInput) SetActionName

func (s *PutActionRevisionInput) SetActionName(v string) *PutActionRevisionInput

SetActionName sets the ActionName field's value.

func (*PutActionRevisionInput) SetActionRevision

func (s *PutActionRevisionInput) SetActionRevision(v *ActionRevision) *PutActionRevisionInput

SetActionRevision sets the ActionRevision field's value.

func (*PutActionRevisionInput) SetPipelineName

func (s *PutActionRevisionInput) SetPipelineName(v string) *PutActionRevisionInput

SetPipelineName sets the PipelineName field's value.

func (*PutActionRevisionInput) SetStageName

func (s *PutActionRevisionInput) SetStageName(v string) *PutActionRevisionInput

SetStageName sets the StageName field's value.

func (PutActionRevisionInput) String

func (s PutActionRevisionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutActionRevisionInput) Validate

func (s *PutActionRevisionInput) Validate() error

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

type PutActionRevisionOutput

type PutActionRevisionOutput struct {

    // Indicates whether the artifact revision was previously used in an execution
    // of the specified pipeline.
    NewRevision *bool `locationName:"newRevision" type:"boolean"`

    // The ID of the current workflow state of the pipeline.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a PutActionRevision action.

func (PutActionRevisionOutput) GoString

func (s PutActionRevisionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutActionRevisionOutput) SetNewRevision

func (s *PutActionRevisionOutput) SetNewRevision(v bool) *PutActionRevisionOutput

SetNewRevision sets the NewRevision field's value.

func (*PutActionRevisionOutput) SetPipelineExecutionId

func (s *PutActionRevisionOutput) SetPipelineExecutionId(v string) *PutActionRevisionOutput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (PutActionRevisionOutput) String

func (s PutActionRevisionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutApprovalResultInput

type PutApprovalResultInput struct {

    // The name of the action for which approval is requested.
    //
    // ActionName is a required field
    ActionName *string `locationName:"actionName" min:"1" type:"string" required:"true"`

    // The name of the pipeline that contains the action.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`

    // Represents information about the result of the approval request.
    //
    // Result is a required field
    Result *ApprovalResult `locationName:"result" type:"structure" required:"true"`

    // The name of the stage that contains the action.
    //
    // StageName is a required field
    StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`

    // The system-generated token used to identify a unique approval request. The
    // token for each open approval request can be obtained using the GetPipelineState
    // action. It is used to validate that the approval request corresponding to
    // this token is still valid.
    //
    // Token is a required field
    Token *string `locationName:"token" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a PutApprovalResult action.

func (PutApprovalResultInput) GoString

func (s PutApprovalResultInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutApprovalResultInput) SetActionName

func (s *PutApprovalResultInput) SetActionName(v string) *PutApprovalResultInput

SetActionName sets the ActionName field's value.

func (*PutApprovalResultInput) SetPipelineName

func (s *PutApprovalResultInput) SetPipelineName(v string) *PutApprovalResultInput

SetPipelineName sets the PipelineName field's value.

func (*PutApprovalResultInput) SetResult

func (s *PutApprovalResultInput) SetResult(v *ApprovalResult) *PutApprovalResultInput

SetResult sets the Result field's value.

func (*PutApprovalResultInput) SetStageName

func (s *PutApprovalResultInput) SetStageName(v string) *PutApprovalResultInput

SetStageName sets the StageName field's value.

func (*PutApprovalResultInput) SetToken

func (s *PutApprovalResultInput) SetToken(v string) *PutApprovalResultInput

SetToken sets the Token field's value.

func (PutApprovalResultInput) String

func (s PutApprovalResultInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutApprovalResultInput) Validate

func (s *PutApprovalResultInput) Validate() error

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

type PutApprovalResultOutput

type PutApprovalResultOutput struct {

    // The timestamp showing when the approval or rejection was submitted.
    ApprovedAt *time.Time `locationName:"approvedAt" type:"timestamp"`
    // contains filtered or unexported fields
}

Represents the output of a PutApprovalResult action.

func (PutApprovalResultOutput) GoString

func (s PutApprovalResultOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutApprovalResultOutput) SetApprovedAt

func (s *PutApprovalResultOutput) SetApprovedAt(v time.Time) *PutApprovalResultOutput

SetApprovedAt sets the ApprovedAt field's value.

func (PutApprovalResultOutput) String

func (s PutApprovalResultOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutJobFailureResultInput

type PutJobFailureResultInput struct {

    // The details about the failure of a job.
    //
    // FailureDetails is a required field
    FailureDetails *FailureDetails `locationName:"failureDetails" type:"structure" required:"true"`

    // The unique system-generated ID of the job that failed. This is the same ID
    // returned from PollForJobs.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a PutJobFailureResult action.

func (PutJobFailureResultInput) GoString

func (s PutJobFailureResultInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutJobFailureResultInput) SetFailureDetails

func (s *PutJobFailureResultInput) SetFailureDetails(v *FailureDetails) *PutJobFailureResultInput

SetFailureDetails sets the FailureDetails field's value.

func (*PutJobFailureResultInput) SetJobId

func (s *PutJobFailureResultInput) SetJobId(v string) *PutJobFailureResultInput

SetJobId sets the JobId field's value.

func (PutJobFailureResultInput) String

func (s PutJobFailureResultInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutJobFailureResultInput) Validate

func (s *PutJobFailureResultInput) Validate() error

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

type PutJobFailureResultOutput

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

func (PutJobFailureResultOutput) GoString

func (s PutJobFailureResultOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutJobFailureResultOutput) String

func (s PutJobFailureResultOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutJobSuccessResultInput

type PutJobSuccessResultInput struct {

    // A token generated by a job worker, such as a CodeDeploy deployment ID, that
    // a successful job provides to identify a custom action in progress. Future
    // jobs use this token to identify the running instance of the action. It can
    // be reused to return more information about the progress of the custom action.
    // When the action is complete, no continuation token should be supplied.
    ContinuationToken *string `locationName:"continuationToken" min:"1" type:"string"`

    // The ID of the current revision of the artifact successfully worked on by
    // the job.
    CurrentRevision *CurrentRevision `locationName:"currentRevision" type:"structure"`

    // The execution details of the successful job, such as the actions taken by
    // the job worker.
    ExecutionDetails *ExecutionDetails `locationName:"executionDetails" type:"structure"`

    // The unique system-generated ID of the job that succeeded. This is the same
    // ID returned from PollForJobs.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" type:"string" required:"true"`

    // Key-value pairs produced as output by a job worker that can be made available
    // to a downstream action configuration. outputVariables can be included only
    // when there is no continuation token on the request.
    OutputVariables map[string]*string `locationName:"outputVariables" type:"map"`
    // contains filtered or unexported fields
}

Represents the input of a PutJobSuccessResult action.

func (PutJobSuccessResultInput) GoString

func (s PutJobSuccessResultInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutJobSuccessResultInput) SetContinuationToken

func (s *PutJobSuccessResultInput) SetContinuationToken(v string) *PutJobSuccessResultInput

SetContinuationToken sets the ContinuationToken field's value.

func (*PutJobSuccessResultInput) SetCurrentRevision

func (s *PutJobSuccessResultInput) SetCurrentRevision(v *CurrentRevision) *PutJobSuccessResultInput

SetCurrentRevision sets the CurrentRevision field's value.

func (*PutJobSuccessResultInput) SetExecutionDetails

func (s *PutJobSuccessResultInput) SetExecutionDetails(v *ExecutionDetails) *PutJobSuccessResultInput

SetExecutionDetails sets the ExecutionDetails field's value.

func (*PutJobSuccessResultInput) SetJobId

func (s *PutJobSuccessResultInput) SetJobId(v string) *PutJobSuccessResultInput

SetJobId sets the JobId field's value.

func (*PutJobSuccessResultInput) SetOutputVariables

func (s *PutJobSuccessResultInput) SetOutputVariables(v map[string]*string) *PutJobSuccessResultInput

SetOutputVariables sets the OutputVariables field's value.

func (PutJobSuccessResultInput) String

func (s PutJobSuccessResultInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutJobSuccessResultInput) Validate

func (s *PutJobSuccessResultInput) Validate() error

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

type PutJobSuccessResultOutput

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

func (PutJobSuccessResultOutput) GoString

func (s PutJobSuccessResultOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutJobSuccessResultOutput) String

func (s PutJobSuccessResultOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutThirdPartyJobFailureResultInput

type PutThirdPartyJobFailureResultInput struct {

    // The clientToken portion of the clientId and clientToken pair used to verify
    // that the calling entity is allowed access to the job and its details.
    //
    // ClientToken is a required field
    ClientToken *string `locationName:"clientToken" min:"1" type:"string" required:"true"`

    // Represents information about failure details.
    //
    // FailureDetails is a required field
    FailureDetails *FailureDetails `locationName:"failureDetails" type:"structure" required:"true"`

    // The ID of the job that failed. This is the same ID returned from PollForThirdPartyJobs.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a PutThirdPartyJobFailureResult action.

func (PutThirdPartyJobFailureResultInput) GoString

func (s PutThirdPartyJobFailureResultInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutThirdPartyJobFailureResultInput) SetClientToken

func (s *PutThirdPartyJobFailureResultInput) SetClientToken(v string) *PutThirdPartyJobFailureResultInput

SetClientToken sets the ClientToken field's value.

func (*PutThirdPartyJobFailureResultInput) SetFailureDetails

func (s *PutThirdPartyJobFailureResultInput) SetFailureDetails(v *FailureDetails) *PutThirdPartyJobFailureResultInput

SetFailureDetails sets the FailureDetails field's value.

func (*PutThirdPartyJobFailureResultInput) SetJobId

func (s *PutThirdPartyJobFailureResultInput) SetJobId(v string) *PutThirdPartyJobFailureResultInput

SetJobId sets the JobId field's value.

func (PutThirdPartyJobFailureResultInput) String

func (s PutThirdPartyJobFailureResultInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutThirdPartyJobFailureResultInput) Validate

func (s *PutThirdPartyJobFailureResultInput) Validate() error

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

type PutThirdPartyJobFailureResultOutput

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

func (PutThirdPartyJobFailureResultOutput) GoString

func (s PutThirdPartyJobFailureResultOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutThirdPartyJobFailureResultOutput) String

func (s PutThirdPartyJobFailureResultOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutThirdPartyJobSuccessResultInput

type PutThirdPartyJobSuccessResultInput struct {

    // The clientToken portion of the clientId and clientToken pair used to verify
    // that the calling entity is allowed access to the job and its details.
    //
    // ClientToken is a required field
    ClientToken *string `locationName:"clientToken" min:"1" type:"string" required:"true"`

    // A token generated by a job worker, such as a CodeDeploy deployment ID, that
    // a successful job provides to identify a partner action in progress. Future
    // jobs use this token to identify the running instance of the action. It can
    // be reused to return more information about the progress of the partner action.
    // When the action is complete, no continuation token should be supplied.
    ContinuationToken *string `locationName:"continuationToken" min:"1" type:"string"`

    // Represents information about a current revision.
    CurrentRevision *CurrentRevision `locationName:"currentRevision" type:"structure"`

    // The details of the actions taken and results produced on an artifact as it
    // passes through stages in the pipeline.
    ExecutionDetails *ExecutionDetails `locationName:"executionDetails" type:"structure"`

    // The ID of the job that successfully completed. This is the same ID returned
    // from PollForThirdPartyJobs.
    //
    // JobId is a required field
    JobId *string `locationName:"jobId" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a PutThirdPartyJobSuccessResult action.

func (PutThirdPartyJobSuccessResultInput) GoString

func (s PutThirdPartyJobSuccessResultInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutThirdPartyJobSuccessResultInput) SetClientToken

func (s *PutThirdPartyJobSuccessResultInput) SetClientToken(v string) *PutThirdPartyJobSuccessResultInput

SetClientToken sets the ClientToken field's value.

func (*PutThirdPartyJobSuccessResultInput) SetContinuationToken

func (s *PutThirdPartyJobSuccessResultInput) SetContinuationToken(v string) *PutThirdPartyJobSuccessResultInput

SetContinuationToken sets the ContinuationToken field's value.

func (*PutThirdPartyJobSuccessResultInput) SetCurrentRevision

func (s *PutThirdPartyJobSuccessResultInput) SetCurrentRevision(v *CurrentRevision) *PutThirdPartyJobSuccessResultInput

SetCurrentRevision sets the CurrentRevision field's value.

func (*PutThirdPartyJobSuccessResultInput) SetExecutionDetails

func (s *PutThirdPartyJobSuccessResultInput) SetExecutionDetails(v *ExecutionDetails) *PutThirdPartyJobSuccessResultInput

SetExecutionDetails sets the ExecutionDetails field's value.

func (*PutThirdPartyJobSuccessResultInput) SetJobId

func (s *PutThirdPartyJobSuccessResultInput) SetJobId(v string) *PutThirdPartyJobSuccessResultInput

SetJobId sets the JobId field's value.

func (PutThirdPartyJobSuccessResultInput) String

func (s PutThirdPartyJobSuccessResultInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutThirdPartyJobSuccessResultInput) Validate

func (s *PutThirdPartyJobSuccessResultInput) Validate() error

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

type PutThirdPartyJobSuccessResultOutput

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

func (PutThirdPartyJobSuccessResultOutput) GoString

func (s PutThirdPartyJobSuccessResultOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (PutThirdPartyJobSuccessResultOutput) String

func (s PutThirdPartyJobSuccessResultOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type PutWebhookInput

type PutWebhookInput struct {

    // The tags for the webhook.
    Tags []*Tag `locationName:"tags" type:"list"`

    // The detail provided in an input file to create the webhook, such as the webhook
    // name, the pipeline name, and the action name. Give the webhook a unique name
    // that helps you identify it. You might name the webhook after the pipeline
    // and action it targets so that you can easily recognize what it's used for
    // later.
    //
    // Webhook is a required field
    Webhook *WebhookDefinition `locationName:"webhook" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (PutWebhookInput) GoString

func (s PutWebhookInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutWebhookInput) SetTags

func (s *PutWebhookInput) SetTags(v []*Tag) *PutWebhookInput

SetTags sets the Tags field's value.

func (*PutWebhookInput) SetWebhook

func (s *PutWebhookInput) SetWebhook(v *WebhookDefinition) *PutWebhookInput

SetWebhook sets the Webhook field's value.

func (PutWebhookInput) String

func (s PutWebhookInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutWebhookInput) Validate

func (s *PutWebhookInput) Validate() error

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

type PutWebhookOutput

type PutWebhookOutput struct {

    // The detail returned from creating the webhook, such as the webhook name,
    // webhook URL, and webhook ARN.
    Webhook *ListWebhookItem `locationName:"webhook" type:"structure"`
    // contains filtered or unexported fields
}

func (PutWebhookOutput) GoString

func (s PutWebhookOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*PutWebhookOutput) SetWebhook

func (s *PutWebhookOutput) SetWebhook(v *ListWebhookItem) *PutWebhookOutput

SetWebhook sets the Webhook field's value.

func (PutWebhookOutput) String

func (s PutWebhookOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RegisterWebhookWithThirdPartyInput

type RegisterWebhookWithThirdPartyInput struct {

    // The name of an existing webhook created with PutWebhook to register with
    // a supported third party.
    WebhookName *string `locationName:"webhookName" min:"1" type:"string"`
    // contains filtered or unexported fields
}

func (RegisterWebhookWithThirdPartyInput) GoString

func (s RegisterWebhookWithThirdPartyInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterWebhookWithThirdPartyInput) SetWebhookName

func (s *RegisterWebhookWithThirdPartyInput) SetWebhookName(v string) *RegisterWebhookWithThirdPartyInput

SetWebhookName sets the WebhookName field's value.

func (RegisterWebhookWithThirdPartyInput) String

func (s RegisterWebhookWithThirdPartyInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RegisterWebhookWithThirdPartyInput) Validate

func (s *RegisterWebhookWithThirdPartyInput) Validate() error

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

type RegisterWebhookWithThirdPartyOutput

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

func (RegisterWebhookWithThirdPartyOutput) GoString

func (s RegisterWebhookWithThirdPartyOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (RegisterWebhookWithThirdPartyOutput) String

func (s RegisterWebhookWithThirdPartyOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RequestFailedException

type RequestFailedException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The request failed because of an unknown error, exception, or failure.

func (*RequestFailedException) Code

func (s *RequestFailedException) Code() string

Code returns the exception type name.

func (*RequestFailedException) Error

func (s *RequestFailedException) Error() string

func (RequestFailedException) GoString

func (s RequestFailedException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RequestFailedException) Message

func (s *RequestFailedException) Message() string

Message returns the exception's message.

func (*RequestFailedException) OrigErr

func (s *RequestFailedException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*RequestFailedException) RequestID

func (s *RequestFailedException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*RequestFailedException) StatusCode

func (s *RequestFailedException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (RequestFailedException) String

func (s RequestFailedException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResolvedPipelineVariable

type ResolvedPipelineVariable struct {

    // The name of a pipeline-level variable.
    Name *string `locationName:"name" type:"string"`

    // The resolved value of a pipeline-level variable.
    ResolvedValue *string `locationName:"resolvedValue" type:"string"`
    // contains filtered or unexported fields
}

A pipeline-level variable used for a pipeline execution.

func (ResolvedPipelineVariable) GoString

func (s ResolvedPipelineVariable) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResolvedPipelineVariable) SetName

func (s *ResolvedPipelineVariable) SetName(v string) *ResolvedPipelineVariable

SetName sets the Name field's value.

func (*ResolvedPipelineVariable) SetResolvedValue

func (s *ResolvedPipelineVariable) SetResolvedValue(v string) *ResolvedPipelineVariable

SetResolvedValue sets the ResolvedValue field's value.

func (ResolvedPipelineVariable) String

func (s ResolvedPipelineVariable) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ResourceNotFoundException

type ResourceNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The resource was specified in an invalid format.

func (*ResourceNotFoundException) Code

func (s *ResourceNotFoundException) Code() string

Code returns the exception type name.

func (*ResourceNotFoundException) Error

func (s *ResourceNotFoundException) Error() string

func (ResourceNotFoundException) GoString

func (s ResourceNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ResourceNotFoundException) Message

func (s *ResourceNotFoundException) Message() string

Message returns the exception's message.

func (*ResourceNotFoundException) OrigErr

func (s *ResourceNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ResourceNotFoundException) RequestID

func (s *ResourceNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ResourceNotFoundException) StatusCode

func (s *ResourceNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ResourceNotFoundException) String

func (s ResourceNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type RetryStageExecutionInput

type RetryStageExecutionInput struct {

    // The ID of the pipeline execution in the failed stage to be retried. Use the
    // GetPipelineState action to retrieve the current pipelineExecutionId of the
    // failed stage
    //
    // PipelineExecutionId is a required field
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string" required:"true"`

    // The name of the pipeline that contains the failed stage.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`

    // The scope of the retry attempt.
    //
    // RetryMode is a required field
    RetryMode *string `locationName:"retryMode" type:"string" required:"true" enum:"StageRetryMode"`

    // The name of the failed stage to be retried.
    //
    // StageName is a required field
    StageName *string `locationName:"stageName" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of a RetryStageExecution action.

func (RetryStageExecutionInput) GoString

func (s RetryStageExecutionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RetryStageExecutionInput) SetPipelineExecutionId

func (s *RetryStageExecutionInput) SetPipelineExecutionId(v string) *RetryStageExecutionInput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*RetryStageExecutionInput) SetPipelineName

func (s *RetryStageExecutionInput) SetPipelineName(v string) *RetryStageExecutionInput

SetPipelineName sets the PipelineName field's value.

func (*RetryStageExecutionInput) SetRetryMode

func (s *RetryStageExecutionInput) SetRetryMode(v string) *RetryStageExecutionInput

SetRetryMode sets the RetryMode field's value.

func (*RetryStageExecutionInput) SetStageName

func (s *RetryStageExecutionInput) SetStageName(v string) *RetryStageExecutionInput

SetStageName sets the StageName field's value.

func (RetryStageExecutionInput) String

func (s RetryStageExecutionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RetryStageExecutionInput) Validate

func (s *RetryStageExecutionInput) Validate() error

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

type RetryStageExecutionOutput

type RetryStageExecutionOutput struct {

    // The ID of the current workflow execution in the failed stage.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a RetryStageExecution action.

func (RetryStageExecutionOutput) GoString

func (s RetryStageExecutionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*RetryStageExecutionOutput) SetPipelineExecutionId

func (s *RetryStageExecutionOutput) SetPipelineExecutionId(v string) *RetryStageExecutionOutput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (RetryStageExecutionOutput) String

func (s RetryStageExecutionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type S3ArtifactLocation

type S3ArtifactLocation struct {

    // The name of the S3 bucket.
    //
    // BucketName is a required field
    BucketName *string `locationName:"bucketName" type:"string" required:"true"`

    // The key of the object in the S3 bucket, which uniquely identifies the object
    // in the bucket.
    //
    // ObjectKey is a required field
    ObjectKey *string `locationName:"objectKey" type:"string" required:"true"`
    // contains filtered or unexported fields
}

The location of the S3 bucket that contains a revision.

func (S3ArtifactLocation) GoString

func (s S3ArtifactLocation) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*S3ArtifactLocation) SetBucketName

func (s *S3ArtifactLocation) SetBucketName(v string) *S3ArtifactLocation

SetBucketName sets the BucketName field's value.

func (*S3ArtifactLocation) SetObjectKey

func (s *S3ArtifactLocation) SetObjectKey(v string) *S3ArtifactLocation

SetObjectKey sets the ObjectKey field's value.

func (S3ArtifactLocation) String

func (s S3ArtifactLocation) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type S3Location

type S3Location struct {

    // The Amazon S3 artifact bucket for an action's artifacts.
    Bucket *string `locationName:"bucket" min:"3" type:"string"`

    // The artifact name.
    Key *string `locationName:"key" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The Amazon S3 artifact location for an action's artifacts.

func (S3Location) GoString

func (s S3Location) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*S3Location) SetBucket

func (s *S3Location) SetBucket(v string) *S3Location

SetBucket sets the Bucket field's value.

func (*S3Location) SetKey

func (s *S3Location) SetKey(v string) *S3Location

SetKey sets the Key field's value.

func (S3Location) String

func (s S3Location) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SourceRevision

type SourceRevision struct {

    // The name of the action that processed the revision to the source artifact.
    //
    // ActionName is a required field
    ActionName *string `locationName:"actionName" min:"1" type:"string" required:"true"`

    // The system-generated unique ID that identifies the revision number of the
    // artifact.
    RevisionId *string `locationName:"revisionId" min:"1" type:"string"`

    // Summary information about the most recent revision of the artifact. For GitHub
    // and CodeCommit repositories, the commit message. For Amazon S3 buckets or
    // actions, the user-provided content of a codepipeline-artifact-revision-summary
    // key specified in the object metadata.
    RevisionSummary *string `locationName:"revisionSummary" min:"1" type:"string"`

    // The commit ID for the artifact revision. For artifacts stored in GitHub or
    // CodeCommit repositories, the commit ID is linked to a commit details page.
    RevisionUrl *string `locationName:"revisionUrl" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Information about the version (or revision) of a source artifact that initiated a pipeline execution.

func (SourceRevision) GoString

func (s SourceRevision) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SourceRevision) SetActionName

func (s *SourceRevision) SetActionName(v string) *SourceRevision

SetActionName sets the ActionName field's value.

func (*SourceRevision) SetRevisionId

func (s *SourceRevision) SetRevisionId(v string) *SourceRevision

SetRevisionId sets the RevisionId field's value.

func (*SourceRevision) SetRevisionSummary

func (s *SourceRevision) SetRevisionSummary(v string) *SourceRevision

SetRevisionSummary sets the RevisionSummary field's value.

func (*SourceRevision) SetRevisionUrl

func (s *SourceRevision) SetRevisionUrl(v string) *SourceRevision

SetRevisionUrl sets the RevisionUrl field's value.

func (SourceRevision) String

func (s SourceRevision) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type SourceRevisionOverride

type SourceRevisionOverride struct {

    // The name of the action where the override will be applied.
    //
    // ActionName is a required field
    ActionName *string `locationName:"actionName" min:"1" type:"string" required:"true"`

    // The type of source revision, based on the source provider. For example, the
    // revision type for the CodeCommit action provider is the commit ID.
    //
    // RevisionType is a required field
    RevisionType *string `locationName:"revisionType" type:"string" required:"true" enum:"SourceRevisionType"`

    // The source revision, or version of your source artifact, with the changes
    // that you want to run in the pipeline execution.
    //
    // RevisionValue is a required field
    RevisionValue *string `locationName:"revisionValue" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

A list that allows you to specify, or override, the source revision for a pipeline execution that's being started. A source revision is the version with all the changes to your application code, or source artifact, for the pipeline execution.

func (SourceRevisionOverride) GoString

func (s SourceRevisionOverride) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SourceRevisionOverride) SetActionName

func (s *SourceRevisionOverride) SetActionName(v string) *SourceRevisionOverride

SetActionName sets the ActionName field's value.

func (*SourceRevisionOverride) SetRevisionType

func (s *SourceRevisionOverride) SetRevisionType(v string) *SourceRevisionOverride

SetRevisionType sets the RevisionType field's value.

func (*SourceRevisionOverride) SetRevisionValue

func (s *SourceRevisionOverride) SetRevisionValue(v string) *SourceRevisionOverride

SetRevisionValue sets the RevisionValue field's value.

func (SourceRevisionOverride) String

func (s SourceRevisionOverride) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*SourceRevisionOverride) Validate

func (s *SourceRevisionOverride) Validate() error

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

type StageContext

type StageContext struct {

    // The name of the stage.
    Name *string `locationName:"name" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents information about a stage to a job worker.

func (StageContext) GoString

func (s StageContext) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageContext) SetName

func (s *StageContext) SetName(v string) *StageContext

SetName sets the Name field's value.

func (StageContext) String

func (s StageContext) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StageDeclaration

type StageDeclaration struct {

    // The actions included in a stage.
    //
    // Actions is a required field
    Actions []*ActionDeclaration `locationName:"actions" type:"list" required:"true"`

    // Reserved for future use.
    Blockers []*BlockerDeclaration `locationName:"blockers" type:"list"`

    // The name of the stage.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about a stage and its definition.

func (StageDeclaration) GoString

func (s StageDeclaration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageDeclaration) SetActions

func (s *StageDeclaration) SetActions(v []*ActionDeclaration) *StageDeclaration

SetActions sets the Actions field's value.

func (*StageDeclaration) SetBlockers

func (s *StageDeclaration) SetBlockers(v []*BlockerDeclaration) *StageDeclaration

SetBlockers sets the Blockers field's value.

func (*StageDeclaration) SetName

func (s *StageDeclaration) SetName(v string) *StageDeclaration

SetName sets the Name field's value.

func (StageDeclaration) String

func (s StageDeclaration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageDeclaration) Validate

func (s *StageDeclaration) Validate() error

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

type StageExecution

type StageExecution struct {

    // The ID of the pipeline execution associated with the stage.
    //
    // PipelineExecutionId is a required field
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string" required:"true"`

    // The status of the stage, or for a completed stage, the last status of the
    // stage.
    //
    // A status of cancelled means that the pipeline’s definition was updated
    // before the stage execution could be completed.
    //
    // Status is a required field
    Status *string `locationName:"status" type:"string" required:"true" enum:"StageExecutionStatus"`
    // contains filtered or unexported fields
}

Represents information about the run of a stage.

func (StageExecution) GoString

func (s StageExecution) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageExecution) SetPipelineExecutionId

func (s *StageExecution) SetPipelineExecutionId(v string) *StageExecution

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*StageExecution) SetStatus

func (s *StageExecution) SetStatus(v string) *StageExecution

SetStatus sets the Status field's value.

func (StageExecution) String

func (s StageExecution) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StageNotFoundException

type StageNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The stage was specified in an invalid format or cannot be found.

func (*StageNotFoundException) Code

func (s *StageNotFoundException) Code() string

Code returns the exception type name.

func (*StageNotFoundException) Error

func (s *StageNotFoundException) Error() string

func (StageNotFoundException) GoString

func (s StageNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageNotFoundException) Message

func (s *StageNotFoundException) Message() string

Message returns the exception's message.

func (*StageNotFoundException) OrigErr

func (s *StageNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*StageNotFoundException) RequestID

func (s *StageNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*StageNotFoundException) StatusCode

func (s *StageNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (StageNotFoundException) String

func (s StageNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StageNotRetryableException

type StageNotRetryableException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

Unable to retry. The pipeline structure or stage state might have changed while actions awaited retry, or the stage contains no failed actions.

func (*StageNotRetryableException) Code

func (s *StageNotRetryableException) Code() string

Code returns the exception type name.

func (*StageNotRetryableException) Error

func (s *StageNotRetryableException) Error() string

func (StageNotRetryableException) GoString

func (s StageNotRetryableException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageNotRetryableException) Message

func (s *StageNotRetryableException) Message() string

Message returns the exception's message.

func (*StageNotRetryableException) OrigErr

func (s *StageNotRetryableException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*StageNotRetryableException) RequestID

func (s *StageNotRetryableException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*StageNotRetryableException) StatusCode

func (s *StageNotRetryableException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (StageNotRetryableException) String

func (s StageNotRetryableException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StageState

type StageState struct {

    // The state of the stage.
    ActionStates []*ActionState `locationName:"actionStates" type:"list"`

    // Represents information about the run of a stage.
    InboundExecution *StageExecution `locationName:"inboundExecution" type:"structure"`

    // The inbound executions for a stage.
    InboundExecutions []*StageExecution `locationName:"inboundExecutions" type:"list"`

    // The state of the inbound transition, which is either enabled or disabled.
    InboundTransitionState *TransitionState `locationName:"inboundTransitionState" type:"structure"`

    // Information about the latest execution in the stage, including its ID and
    // status.
    LatestExecution *StageExecution `locationName:"latestExecution" type:"structure"`

    // The name of the stage.
    StageName *string `locationName:"stageName" min:"1" type:"string"`
    // contains filtered or unexported fields
}

Represents information about the state of the stage.

func (StageState) GoString

func (s StageState) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StageState) SetActionStates

func (s *StageState) SetActionStates(v []*ActionState) *StageState

SetActionStates sets the ActionStates field's value.

func (*StageState) SetInboundExecution

func (s *StageState) SetInboundExecution(v *StageExecution) *StageState

SetInboundExecution sets the InboundExecution field's value.

func (*StageState) SetInboundExecutions

func (s *StageState) SetInboundExecutions(v []*StageExecution) *StageState

SetInboundExecutions sets the InboundExecutions field's value.

func (*StageState) SetInboundTransitionState

func (s *StageState) SetInboundTransitionState(v *TransitionState) *StageState

SetInboundTransitionState sets the InboundTransitionState field's value.

func (*StageState) SetLatestExecution

func (s *StageState) SetLatestExecution(v *StageExecution) *StageState

SetLatestExecution sets the LatestExecution field's value.

func (*StageState) SetStageName

func (s *StageState) SetStageName(v string) *StageState

SetStageName sets the StageName field's value.

func (StageState) String

func (s StageState) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StartPipelineExecutionInput

type StartPipelineExecutionInput struct {

    // The system-generated unique ID used to identify a unique execution request.
    ClientRequestToken *string `locationName:"clientRequestToken" min:"1" type:"string" idempotencyToken:"true"`

    // The name of the pipeline to start.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // A list that allows you to specify, or override, the source revision for a
    // pipeline execution that's being started. A source revision is the version
    // with all the changes to your application code, or source artifact, for the
    // pipeline execution.
    SourceRevisions []*SourceRevisionOverride `locationName:"sourceRevisions" type:"list"`

    // A list that overrides pipeline variables for a pipeline execution that's
    // being started. Variable names must match [A-Za-z0-9@\-_]+, and the values
    // can be anything except an empty string.
    Variables []*PipelineVariable `locationName:"variables" min:"1" type:"list"`
    // contains filtered or unexported fields
}

Represents the input of a StartPipelineExecution action.

func (StartPipelineExecutionInput) GoString

func (s StartPipelineExecutionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartPipelineExecutionInput) SetClientRequestToken

func (s *StartPipelineExecutionInput) SetClientRequestToken(v string) *StartPipelineExecutionInput

SetClientRequestToken sets the ClientRequestToken field's value.

func (*StartPipelineExecutionInput) SetName

func (s *StartPipelineExecutionInput) SetName(v string) *StartPipelineExecutionInput

SetName sets the Name field's value.

func (*StartPipelineExecutionInput) SetSourceRevisions

func (s *StartPipelineExecutionInput) SetSourceRevisions(v []*SourceRevisionOverride) *StartPipelineExecutionInput

SetSourceRevisions sets the SourceRevisions field's value.

func (*StartPipelineExecutionInput) SetVariables

func (s *StartPipelineExecutionInput) SetVariables(v []*PipelineVariable) *StartPipelineExecutionInput

SetVariables sets the Variables field's value.

func (StartPipelineExecutionInput) String

func (s StartPipelineExecutionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartPipelineExecutionInput) Validate

func (s *StartPipelineExecutionInput) Validate() error

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

type StartPipelineExecutionOutput

type StartPipelineExecutionOutput struct {

    // The unique system-generated ID of the pipeline execution that was started.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
    // contains filtered or unexported fields
}

Represents the output of a StartPipelineExecution action.

func (StartPipelineExecutionOutput) GoString

func (s StartPipelineExecutionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StartPipelineExecutionOutput) SetPipelineExecutionId

func (s *StartPipelineExecutionOutput) SetPipelineExecutionId(v string) *StartPipelineExecutionOutput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (StartPipelineExecutionOutput) String

func (s StartPipelineExecutionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopExecutionTrigger

type StopExecutionTrigger struct {

    // The user-specified reason the pipeline was stopped.
    Reason *string `locationName:"reason" type:"string"`
    // contains filtered or unexported fields
}

The interaction that stopped a pipeline execution.

func (StopExecutionTrigger) GoString

func (s StopExecutionTrigger) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopExecutionTrigger) SetReason

func (s *StopExecutionTrigger) SetReason(v string) *StopExecutionTrigger

SetReason sets the Reason field's value.

func (StopExecutionTrigger) String

func (s StopExecutionTrigger) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type StopPipelineExecutionInput

type StopPipelineExecutionInput struct {

    // Use this option to stop the pipeline execution by abandoning, rather than
    // finishing, in-progress actions.
    //
    // This option can lead to failed or out-of-sequence tasks.
    Abandon *bool `locationName:"abandon" type:"boolean"`

    // The ID of the pipeline execution to be stopped in the current stage. Use
    // the GetPipelineState action to retrieve the current pipelineExecutionId.
    //
    // PipelineExecutionId is a required field
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string" required:"true"`

    // The name of the pipeline to stop.
    //
    // PipelineName is a required field
    PipelineName *string `locationName:"pipelineName" min:"1" type:"string" required:"true"`

    // Use this option to enter comments, such as the reason the pipeline was stopped.
    Reason *string `locationName:"reason" type:"string"`
    // contains filtered or unexported fields
}

func (StopPipelineExecutionInput) GoString

func (s StopPipelineExecutionInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopPipelineExecutionInput) SetAbandon

func (s *StopPipelineExecutionInput) SetAbandon(v bool) *StopPipelineExecutionInput

SetAbandon sets the Abandon field's value.

func (*StopPipelineExecutionInput) SetPipelineExecutionId

func (s *StopPipelineExecutionInput) SetPipelineExecutionId(v string) *StopPipelineExecutionInput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (*StopPipelineExecutionInput) SetPipelineName

func (s *StopPipelineExecutionInput) SetPipelineName(v string) *StopPipelineExecutionInput

SetPipelineName sets the PipelineName field's value.

func (*StopPipelineExecutionInput) SetReason

func (s *StopPipelineExecutionInput) SetReason(v string) *StopPipelineExecutionInput

SetReason sets the Reason field's value.

func (StopPipelineExecutionInput) String

func (s StopPipelineExecutionInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopPipelineExecutionInput) Validate

func (s *StopPipelineExecutionInput) Validate() error

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

type StopPipelineExecutionOutput

type StopPipelineExecutionOutput struct {

    // The unique system-generated ID of the pipeline execution that was stopped.
    PipelineExecutionId *string `locationName:"pipelineExecutionId" type:"string"`
    // contains filtered or unexported fields
}

func (StopPipelineExecutionOutput) GoString

func (s StopPipelineExecutionOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*StopPipelineExecutionOutput) SetPipelineExecutionId

func (s *StopPipelineExecutionOutput) SetPipelineExecutionId(v string) *StopPipelineExecutionOutput

SetPipelineExecutionId sets the PipelineExecutionId field's value.

func (StopPipelineExecutionOutput) String

func (s StopPipelineExecutionOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type Tag

type Tag struct {

    // The tag's key.
    //
    // Key is a required field
    Key *string `locationName:"key" min:"1" type:"string" required:"true"`

    // The tag's value.
    //
    // Value is a required field
    Value *string `locationName:"value" type:"string" required:"true"`
    // contains filtered or unexported fields
}

A tag is a key-value pair that is used to manage the resource.

func (Tag) GoString

func (s Tag) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Tag) SetKey

func (s *Tag) SetKey(v string) *Tag

SetKey sets the Key field's value.

func (*Tag) SetValue

func (s *Tag) SetValue(v string) *Tag

SetValue sets the Value field's value.

func (Tag) String

func (s Tag) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*Tag) Validate

func (s *Tag) Validate() error

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

type TagResourceInput

type TagResourceInput struct {

    // The Amazon Resource Name (ARN) of the resource you want to add tags to.
    //
    // ResourceArn is a required field
    ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"`

    // The tags you want to modify or add to the resource.
    //
    // Tags is a required field
    Tags []*Tag `locationName:"tags" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (TagResourceInput) GoString

func (s TagResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagResourceInput) SetResourceArn

func (s *TagResourceInput) SetResourceArn(v string) *TagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*TagResourceInput) SetTags

func (s *TagResourceInput) SetTags(v []*Tag) *TagResourceInput

SetTags sets the Tags field's value.

func (TagResourceInput) String

func (s TagResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TagResourceInput) Validate

func (s *TagResourceInput) Validate() error

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

type TagResourceOutput

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

func (TagResourceOutput) GoString

func (s TagResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (TagResourceOutput) String

func (s TagResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ThirdPartyJob

type ThirdPartyJob struct {

    // The clientToken portion of the clientId and clientToken pair used to verify
    // that the calling entity is allowed access to the job and its details.
    ClientId *string `locationName:"clientId" type:"string"`

    // The identifier used to identify the job in CodePipeline.
    JobId *string `locationName:"jobId" type:"string"`
    // contains filtered or unexported fields
}

A response to a PollForThirdPartyJobs request returned by CodePipeline when there is a job to be worked on by a partner action.

func (ThirdPartyJob) GoString

func (s ThirdPartyJob) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ThirdPartyJob) SetClientId

func (s *ThirdPartyJob) SetClientId(v string) *ThirdPartyJob

SetClientId sets the ClientId field's value.

func (*ThirdPartyJob) SetJobId

func (s *ThirdPartyJob) SetJobId(v string) *ThirdPartyJob

SetJobId sets the JobId field's value.

func (ThirdPartyJob) String

func (s ThirdPartyJob) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ThirdPartyJobData

type ThirdPartyJobData struct {

    // Represents information about an action configuration.
    ActionConfiguration *ActionConfiguration `locationName:"actionConfiguration" type:"structure"`

    // Represents information about an action type.
    ActionTypeId *ActionTypeId `locationName:"actionTypeId" type:"structure"`

    // Represents an Amazon Web Services session credentials object. These credentials
    // are temporary credentials that are issued by Amazon Web Services Secure Token
    // Service (STS). They can be used to access input and output artifacts in the
    // S3 bucket used to store artifact for the pipeline in CodePipeline.
    //
    // ArtifactCredentials is a sensitive parameter and its value will be
    // replaced with "sensitive" in string returned by ThirdPartyJobData's
    // String and GoString methods.
    ArtifactCredentials *AWSSessionCredentials `locationName:"artifactCredentials" type:"structure" sensitive:"true"`

    // A system-generated token, such as a CodeDeploy deployment ID, that a job
    // requires to continue the job asynchronously.
    ContinuationToken *string `locationName:"continuationToken" min:"1" type:"string"`

    // The encryption key used to encrypt and decrypt data in the artifact store
    // for the pipeline, such as an Amazon Web Services Key Management Service (Amazon
    // Web Services KMS) key. This is optional and might not be present.
    EncryptionKey *EncryptionKey `locationName:"encryptionKey" type:"structure"`

    // The name of the artifact that is worked on by the action, if any. This name
    // might be system-generated, such as "MyApp", or it might be defined by the
    // user when the action is created. The input artifact name must match the name
    // of an output artifact generated by an action in an earlier action or stage
    // of the pipeline.
    InputArtifacts []*Artifact `locationName:"inputArtifacts" type:"list"`

    // The name of the artifact that is the result of the action, if any. This name
    // might be system-generated, such as "MyBuiltApp", or it might be defined by
    // the user when the action is created.
    OutputArtifacts []*Artifact `locationName:"outputArtifacts" type:"list"`

    // Represents information about a pipeline to a job worker.
    //
    // Does not include pipelineArn and pipelineExecutionId for ThirdParty jobs.
    PipelineContext *PipelineContext `locationName:"pipelineContext" type:"structure"`
    // contains filtered or unexported fields
}

Represents information about the job data for a partner action.

func (ThirdPartyJobData) GoString

func (s ThirdPartyJobData) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ThirdPartyJobData) SetActionConfiguration

func (s *ThirdPartyJobData) SetActionConfiguration(v *ActionConfiguration) *ThirdPartyJobData

SetActionConfiguration sets the ActionConfiguration field's value.

func (*ThirdPartyJobData) SetActionTypeId

func (s *ThirdPartyJobData) SetActionTypeId(v *ActionTypeId) *ThirdPartyJobData

SetActionTypeId sets the ActionTypeId field's value.

func (*ThirdPartyJobData) SetArtifactCredentials

func (s *ThirdPartyJobData) SetArtifactCredentials(v *AWSSessionCredentials) *ThirdPartyJobData

SetArtifactCredentials sets the ArtifactCredentials field's value.

func (*ThirdPartyJobData) SetContinuationToken

func (s *ThirdPartyJobData) SetContinuationToken(v string) *ThirdPartyJobData

SetContinuationToken sets the ContinuationToken field's value.

func (*ThirdPartyJobData) SetEncryptionKey

func (s *ThirdPartyJobData) SetEncryptionKey(v *EncryptionKey) *ThirdPartyJobData

SetEncryptionKey sets the EncryptionKey field's value.

func (*ThirdPartyJobData) SetInputArtifacts

func (s *ThirdPartyJobData) SetInputArtifacts(v []*Artifact) *ThirdPartyJobData

SetInputArtifacts sets the InputArtifacts field's value.

func (*ThirdPartyJobData) SetOutputArtifacts

func (s *ThirdPartyJobData) SetOutputArtifacts(v []*Artifact) *ThirdPartyJobData

SetOutputArtifacts sets the OutputArtifacts field's value.

func (*ThirdPartyJobData) SetPipelineContext

func (s *ThirdPartyJobData) SetPipelineContext(v *PipelineContext) *ThirdPartyJobData

SetPipelineContext sets the PipelineContext field's value.

func (ThirdPartyJobData) String

func (s ThirdPartyJobData) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ThirdPartyJobDetails

type ThirdPartyJobDetails struct {

    // The data to be returned by the third party job worker.
    Data *ThirdPartyJobData `locationName:"data" type:"structure"`

    // The identifier used to identify the job details in CodePipeline.
    Id *string `locationName:"id" min:"1" type:"string"`

    // A system-generated random number that CodePipeline uses to ensure that the
    // job is being worked on by only one job worker. Use this number in an AcknowledgeThirdPartyJob
    // request.
    Nonce *string `locationName:"nonce" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The details of a job sent in response to a GetThirdPartyJobDetails request.

func (ThirdPartyJobDetails) GoString

func (s ThirdPartyJobDetails) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ThirdPartyJobDetails) SetData

func (s *ThirdPartyJobDetails) SetData(v *ThirdPartyJobData) *ThirdPartyJobDetails

SetData sets the Data field's value.

func (*ThirdPartyJobDetails) SetId

func (s *ThirdPartyJobDetails) SetId(v string) *ThirdPartyJobDetails

SetId sets the Id field's value.

func (*ThirdPartyJobDetails) SetNonce

func (s *ThirdPartyJobDetails) SetNonce(v string) *ThirdPartyJobDetails

SetNonce sets the Nonce field's value.

func (ThirdPartyJobDetails) String

func (s ThirdPartyJobDetails) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TooManyTagsException

type TooManyTagsException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The tags limit for a resource has been exceeded.

func (*TooManyTagsException) Code

func (s *TooManyTagsException) Code() string

Code returns the exception type name.

func (*TooManyTagsException) Error

func (s *TooManyTagsException) Error() string

func (TooManyTagsException) GoString

func (s TooManyTagsException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TooManyTagsException) Message

func (s *TooManyTagsException) Message() string

Message returns the exception's message.

func (*TooManyTagsException) OrigErr

func (s *TooManyTagsException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*TooManyTagsException) RequestID

func (s *TooManyTagsException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*TooManyTagsException) StatusCode

func (s *TooManyTagsException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (TooManyTagsException) String

func (s TooManyTagsException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type TransitionState

type TransitionState struct {

    // The user-specified reason why the transition between two stages of a pipeline
    // was disabled.
    DisabledReason *string `locationName:"disabledReason" min:"1" type:"string"`

    // Whether the transition between stages is enabled (true) or disabled (false).
    Enabled *bool `locationName:"enabled" type:"boolean"`

    // The timestamp when the transition state was last changed.
    LastChangedAt *time.Time `locationName:"lastChangedAt" type:"timestamp"`

    // The ID of the user who last changed the transition state.
    LastChangedBy *string `locationName:"lastChangedBy" type:"string"`
    // contains filtered or unexported fields
}

Represents information about the state of transitions between one stage and another stage.

func (TransitionState) GoString

func (s TransitionState) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*TransitionState) SetDisabledReason

func (s *TransitionState) SetDisabledReason(v string) *TransitionState

SetDisabledReason sets the DisabledReason field's value.

func (*TransitionState) SetEnabled

func (s *TransitionState) SetEnabled(v bool) *TransitionState

SetEnabled sets the Enabled field's value.

func (*TransitionState) SetLastChangedAt

func (s *TransitionState) SetLastChangedAt(v time.Time) *TransitionState

SetLastChangedAt sets the LastChangedAt field's value.

func (*TransitionState) SetLastChangedBy

func (s *TransitionState) SetLastChangedBy(v string) *TransitionState

SetLastChangedBy sets the LastChangedBy field's value.

func (TransitionState) String

func (s TransitionState) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UntagResourceInput

type UntagResourceInput struct {

    // The Amazon Resource Name (ARN) of the resource to remove tags from.
    //
    // ResourceArn is a required field
    ResourceArn *string `locationName:"resourceArn" type:"string" required:"true"`

    // The list of keys for the tags to be removed from the resource.
    //
    // TagKeys is a required field
    TagKeys []*string `locationName:"tagKeys" type:"list" required:"true"`
    // contains filtered or unexported fields
}

func (UntagResourceInput) GoString

func (s UntagResourceInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UntagResourceInput) SetResourceArn

func (s *UntagResourceInput) SetResourceArn(v string) *UntagResourceInput

SetResourceArn sets the ResourceArn field's value.

func (*UntagResourceInput) SetTagKeys

func (s *UntagResourceInput) SetTagKeys(v []*string) *UntagResourceInput

SetTagKeys sets the TagKeys field's value.

func (UntagResourceInput) String

func (s UntagResourceInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UntagResourceInput) Validate

func (s *UntagResourceInput) Validate() error

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

type UntagResourceOutput

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

func (UntagResourceOutput) GoString

func (s UntagResourceOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (UntagResourceOutput) String

func (s UntagResourceOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UpdateActionTypeInput

type UpdateActionTypeInput struct {

    // The action type definition for the action type to be updated.
    //
    // ActionType is a required field
    ActionType *ActionTypeDeclaration `locationName:"actionType" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

func (UpdateActionTypeInput) GoString

func (s UpdateActionTypeInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateActionTypeInput) SetActionType

func (s *UpdateActionTypeInput) SetActionType(v *ActionTypeDeclaration) *UpdateActionTypeInput

SetActionType sets the ActionType field's value.

func (UpdateActionTypeInput) String

func (s UpdateActionTypeInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdateActionTypeInput) Validate

func (s *UpdateActionTypeInput) Validate() error

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

type UpdateActionTypeOutput

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

func (UpdateActionTypeOutput) GoString

func (s UpdateActionTypeOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (UpdateActionTypeOutput) String

func (s UpdateActionTypeOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type UpdatePipelineInput

type UpdatePipelineInput struct {

    // The name of the pipeline to be updated.
    //
    // Pipeline is a required field
    Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure" required:"true"`
    // contains filtered or unexported fields
}

Represents the input of an UpdatePipeline action.

func (UpdatePipelineInput) GoString

func (s UpdatePipelineInput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdatePipelineInput) SetPipeline

func (s *UpdatePipelineInput) SetPipeline(v *PipelineDeclaration) *UpdatePipelineInput

SetPipeline sets the Pipeline field's value.

func (UpdatePipelineInput) String

func (s UpdatePipelineInput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdatePipelineInput) Validate

func (s *UpdatePipelineInput) Validate() error

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

type UpdatePipelineOutput

type UpdatePipelineOutput struct {

    // The structure of the updated pipeline.
    Pipeline *PipelineDeclaration `locationName:"pipeline" type:"structure"`
    // contains filtered or unexported fields
}

Represents the output of an UpdatePipeline action.

func (UpdatePipelineOutput) GoString

func (s UpdatePipelineOutput) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*UpdatePipelineOutput) SetPipeline

func (s *UpdatePipelineOutput) SetPipeline(v *PipelineDeclaration) *UpdatePipelineOutput

SetPipeline sets the Pipeline field's value.

func (UpdatePipelineOutput) String

func (s UpdatePipelineOutput) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type ValidationException

type ValidationException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The validation was specified in an invalid format.

func (*ValidationException) Code

func (s *ValidationException) Code() string

Code returns the exception type name.

func (*ValidationException) Error

func (s *ValidationException) Error() string

func (ValidationException) GoString

func (s ValidationException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*ValidationException) Message

func (s *ValidationException) Message() string

Message returns the exception's message.

func (*ValidationException) OrigErr

func (s *ValidationException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*ValidationException) RequestID

func (s *ValidationException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*ValidationException) StatusCode

func (s *ValidationException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (ValidationException) String

func (s ValidationException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

type WebhookAuthConfiguration

type WebhookAuthConfiguration struct {

    // The property used to configure acceptance of webhooks in an IP address range.
    // For IP, only the AllowedIPRange property must be set. This property must
    // be set to a valid CIDR range.
    AllowedIPRange *string `min:"1" type:"string"`

    // The property used to configure GitHub authentication. For GITHUB_HMAC, only
    // the SecretToken property must be set.
    SecretToken *string `min:"1" type:"string"`
    // contains filtered or unexported fields
}

The authentication applied to incoming webhook trigger requests.

func (WebhookAuthConfiguration) GoString

func (s WebhookAuthConfiguration) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookAuthConfiguration) SetAllowedIPRange

func (s *WebhookAuthConfiguration) SetAllowedIPRange(v string) *WebhookAuthConfiguration

SetAllowedIPRange sets the AllowedIPRange field's value.

func (*WebhookAuthConfiguration) SetSecretToken

func (s *WebhookAuthConfiguration) SetSecretToken(v string) *WebhookAuthConfiguration

SetSecretToken sets the SecretToken field's value.

func (WebhookAuthConfiguration) String

func (s WebhookAuthConfiguration) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookAuthConfiguration) Validate

func (s *WebhookAuthConfiguration) Validate() error

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

type WebhookDefinition

type WebhookDefinition struct {

    // Supported options are GITHUB_HMAC, IP, and UNAUTHENTICATED.
    //
    //    * For information about the authentication scheme implemented by GITHUB_HMAC,
    //    see Securing your webhooks (https://developer.github.com/webhooks/securing/)
    //    on the GitHub Developer website.
    //
    //    * IP rejects webhooks trigger requests unless they originate from an IP
    //    address in the IP range whitelisted in the authentication configuration.
    //
    //    * UNAUTHENTICATED accepts all webhook trigger requests regardless of origin.
    //
    // Authentication is a required field
    Authentication *string `locationName:"authentication" type:"string" required:"true" enum:"WebhookAuthenticationType"`

    // Properties that configure the authentication applied to incoming webhook
    // trigger requests. The required properties depend on the authentication type.
    // For GITHUB_HMAC, only the SecretToken property must be set. For IP, only
    // the AllowedIPRange property must be set to a valid CIDR range. For UNAUTHENTICATED,
    // no properties can be set.
    //
    // AuthenticationConfiguration is a required field
    AuthenticationConfiguration *WebhookAuthConfiguration `locationName:"authenticationConfiguration" type:"structure" required:"true"`

    // A list of rules applied to the body/payload sent in the POST request to a
    // webhook URL. All defined rules must pass for the request to be accepted and
    // the pipeline started.
    //
    // Filters is a required field
    Filters []*WebhookFilterRule `locationName:"filters" type:"list" required:"true"`

    // The name of the webhook.
    //
    // Name is a required field
    Name *string `locationName:"name" min:"1" type:"string" required:"true"`

    // The name of the action in a pipeline you want to connect to the webhook.
    // The action must be from the source (first) stage of the pipeline.
    //
    // TargetAction is a required field
    TargetAction *string `locationName:"targetAction" min:"1" type:"string" required:"true"`

    // The name of the pipeline you want to connect to the webhook.
    //
    // TargetPipeline is a required field
    TargetPipeline *string `locationName:"targetPipeline" min:"1" type:"string" required:"true"`
    // contains filtered or unexported fields
}

Represents information about a webhook and its definition.

func (WebhookDefinition) GoString

func (s WebhookDefinition) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookDefinition) SetAuthentication

func (s *WebhookDefinition) SetAuthentication(v string) *WebhookDefinition

SetAuthentication sets the Authentication field's value.

func (*WebhookDefinition) SetAuthenticationConfiguration

func (s *WebhookDefinition) SetAuthenticationConfiguration(v *WebhookAuthConfiguration) *WebhookDefinition

SetAuthenticationConfiguration sets the AuthenticationConfiguration field's value.

func (*WebhookDefinition) SetFilters

func (s *WebhookDefinition) SetFilters(v []*WebhookFilterRule) *WebhookDefinition

SetFilters sets the Filters field's value.

func (*WebhookDefinition) SetName

func (s *WebhookDefinition) SetName(v string) *WebhookDefinition

SetName sets the Name field's value.

func (*WebhookDefinition) SetTargetAction

func (s *WebhookDefinition) SetTargetAction(v string) *WebhookDefinition

SetTargetAction sets the TargetAction field's value.

func (*WebhookDefinition) SetTargetPipeline

func (s *WebhookDefinition) SetTargetPipeline(v string) *WebhookDefinition

SetTargetPipeline sets the TargetPipeline field's value.

func (WebhookDefinition) String

func (s WebhookDefinition) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookDefinition) Validate

func (s *WebhookDefinition) Validate() error

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

type WebhookFilterRule

type WebhookFilterRule struct {

    // A JsonPath expression that is applied to the body/payload of the webhook.
    // The value selected by the JsonPath expression must match the value specified
    // in the MatchEquals field. Otherwise, the request is ignored. For more information,
    // see Java JsonPath implementation (https://github.com/json-path/JsonPath)
    // in GitHub.
    //
    // JsonPath is a required field
    JsonPath *string `locationName:"jsonPath" min:"1" type:"string" required:"true"`

    // The value selected by the JsonPath expression must match what is supplied
    // in the MatchEquals field. Otherwise, the request is ignored. Properties from
    // the target action configuration can be included as placeholders in this value
    // by surrounding the action configuration key with curly brackets. For example,
    // if the value supplied here is "refs/heads/{Branch}" and the target action
    // has an action configuration property called "Branch" with a value of "main",
    // the MatchEquals value is evaluated as "refs/heads/main". For a list of action
    // configuration properties for built-in action types, see Pipeline Structure
    // Reference Action Requirements (https://docs.aws.amazon.com/codepipeline/latest/userguide/reference-pipeline-structure.html#action-requirements).
    MatchEquals *string `locationName:"matchEquals" min:"1" type:"string"`
    // contains filtered or unexported fields
}

The event criteria that specify when a webhook notification is sent to your URL.

func (WebhookFilterRule) GoString

func (s WebhookFilterRule) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookFilterRule) SetJsonPath

func (s *WebhookFilterRule) SetJsonPath(v string) *WebhookFilterRule

SetJsonPath sets the JsonPath field's value.

func (*WebhookFilterRule) SetMatchEquals

func (s *WebhookFilterRule) SetMatchEquals(v string) *WebhookFilterRule

SetMatchEquals sets the MatchEquals field's value.

func (WebhookFilterRule) String

func (s WebhookFilterRule) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookFilterRule) Validate

func (s *WebhookFilterRule) Validate() error

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

type WebhookNotFoundException

type WebhookNotFoundException struct {
    RespMetadata protocol.ResponseMetadata `json:"-" xml:"-"`

    Message_ *string `locationName:"message" type:"string"`
    // contains filtered or unexported fields
}

The specified webhook was entered in an invalid format or cannot be found.

func (*WebhookNotFoundException) Code

func (s *WebhookNotFoundException) Code() string

Code returns the exception type name.

func (*WebhookNotFoundException) Error

func (s *WebhookNotFoundException) Error() string

func (WebhookNotFoundException) GoString

func (s WebhookNotFoundException) GoString() string

GoString returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".

func (*WebhookNotFoundException) Message

func (s *WebhookNotFoundException) Message() string

Message returns the exception's message.

func (*WebhookNotFoundException) OrigErr

func (s *WebhookNotFoundException) OrigErr() error

OrigErr always returns nil, satisfies awserr.Error interface.

func (*WebhookNotFoundException) RequestID

func (s *WebhookNotFoundException) RequestID() string

RequestID returns the service's response RequestID for request.

func (*WebhookNotFoundException) StatusCode

func (s *WebhookNotFoundException) StatusCode() int

Status code returns the HTTP status code for the request's response error.

func (WebhookNotFoundException) String

func (s WebhookNotFoundException) String() string

String returns the string representation.

API parameter values that are decorated as "sensitive" in the API will not be included in the string output. The member name will be present, but the value will be replaced with "sensitive".