types

package
v1.26.4 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2024 License: Apache-2.0 Imports: 4 Imported by: 11

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AWSSessionCredentials

type AWSSessionCredentials struct {

	// The access key for the session.
	//
	// This member is required.
	AccessKeyId *string

	// The secret access key for the session.
	//
	// This member is required.
	SecretAccessKey *string

	// The token for the session.
	//
	// This member is required.
	SessionToken *string
	// 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.

type ActionCategory

type ActionCategory string
const (
	ActionCategorySource   ActionCategory = "Source"
	ActionCategoryBuild    ActionCategory = "Build"
	ActionCategoryDeploy   ActionCategory = "Deploy"
	ActionCategoryTest     ActionCategory = "Test"
	ActionCategoryInvoke   ActionCategory = "Invoke"
	ActionCategoryApproval ActionCategory = "Approval"
)

Enum values for ActionCategory

func (ActionCategory) Values added in v0.29.0

func (ActionCategory) Values() []ActionCategory

Values returns all known values for ActionCategory. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ActionConfiguration

type ActionConfiguration struct {

	// The configuration data for the action.
	Configuration map[string]string
	// contains filtered or unexported fields
}

Represents information about an action configuration.

type ActionConfigurationProperty

type ActionConfigurationProperty struct {

	// Whether the configuration property is a key.
	//
	// This member is required.
	Key bool

	// The name of the action configuration property.
	//
	// This member is required.
	Name *string

	// Whether the configuration property is a required value.
	//
	// This member is required.
	Required bool

	// 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.
	//
	// This member is required.
	Secret bool

	// The description of the action configuration property that is displayed to users.
	Description *string

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

	// The type of the configuration property.
	Type ActionConfigurationPropertyType
	// contains filtered or unexported fields
}

Represents information about an action configuration property.

type ActionConfigurationPropertyType

type ActionConfigurationPropertyType string
const (
	ActionConfigurationPropertyTypeString  ActionConfigurationPropertyType = "String"
	ActionConfigurationPropertyTypeNumber  ActionConfigurationPropertyType = "Number"
	ActionConfigurationPropertyTypeBoolean ActionConfigurationPropertyType = "Boolean"
)

Enum values for ActionConfigurationPropertyType

func (ActionConfigurationPropertyType) Values added in v0.29.0

Values returns all known values for ActionConfigurationPropertyType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ActionContext

type ActionContext struct {

	// The system-generated unique ID that corresponds to an action's execution.
	ActionExecutionId *string

	// The name of the action in the context of a job.
	Name *string
	// contains filtered or unexported fields
}

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

type ActionDeclaration

type ActionDeclaration struct {

	// Specifies the action type and the provider of the action.
	//
	// This member is required.
	ActionTypeId *ActionTypeId

	// The action declaration's name.
	//
	// This member is required.
	Name *string

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

	// The name or ID of the artifact consumed by the action, such as a test or build
	// artifact.
	InputArtifacts []InputArtifact

	// The variable namespace associated with the action. All variables produced as
	// output by this action fall under this namespace.
	Namespace *string

	// The name or ID of the result of the action declaration, such as a test or build
	// artifact.
	OutputArtifacts []OutputArtifact

	// The action declaration's Amazon Web Services Region, such as us-east-1.
	Region *string

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

	// The order in which actions are run.
	RunOrder *int32

	// 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 *int32
	// contains filtered or unexported fields
}

Represents information about an action declaration.

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

	// The details of an error returned by a URL external to Amazon Web Services.
	ErrorDetails *ErrorDetails

	// The external ID of the run of the action.
	ExternalExecutionId *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

	// The last status change of the action.
	LastStatusChange *time.Time

	// The ARN of the user who last changed the pipeline.
	LastUpdatedBy *string

	// A percentage of completeness of the action as it runs.
	PercentComplete *int32

	// The status of the action, or for a completed action, the last status of the
	// action.
	Status ActionExecutionStatus

	// A summary of the run of the action.
	Summary *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
	// contains filtered or unexported fields
}

Represents information about the run of an action.

type ActionExecutionDetail

type ActionExecutionDetail struct {

	// The action execution ID.
	ActionExecutionId *string

	// The name of the action.
	ActionName *string

	// Input details for the action execution, such as role ARN, Region, and input
	// artifacts.
	Input *ActionExecutionInput

	// The last update time of the action execution.
	LastUpdateTime *time.Time

	// Output details for the action execution, such as the action execution result.
	Output *ActionExecutionOutput

	// The pipeline execution ID for the action execution.
	PipelineExecutionId *string

	// The version of the pipeline where the action was run.
	PipelineVersion *int32

	// The name of the stage that contains the action.
	StageName *string

	// The start time of the action execution.
	StartTime *time.Time

	// The status of the action execution. Status categories are InProgress , Succeeded
	// , and Failed .
	Status ActionExecutionStatus

	// The ARN of the user who changed the pipeline execution details.
	UpdatedBy *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.

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

	// The pipeline execution ID used to filter action execution history.
	PipelineExecutionId *string
	// contains filtered or unexported fields
}

Filter values for the action execution.

type ActionExecutionInput

type ActionExecutionInput struct {

	// Represents information about an action type.
	ActionTypeId *ActionTypeId

	// Configuration data for an action execution.
	Configuration map[string]string

	// Details of input artifacts of the action that correspond to the action
	// execution.
	InputArtifacts []ArtifactDetail

	// The variable namespace associated with the action. All variables produced as
	// output by this action fall under this namespace.
	Namespace *string

	// The Amazon Web Services Region for the action, such as us-east-1.
	Region *string

	// Configuration data for an action execution with all variable references
	// replaced with their real values for the execution.
	ResolvedConfiguration map[string]string

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

Input information used for an action execution.

type ActionExecutionOutput

type ActionExecutionOutput struct {

	// Execution result information listed in the output details for an action
	// execution.
	ExecutionResult *ActionExecutionResult

	// Details of output artifacts of the action that correspond to the action
	// execution.
	OutputArtifacts []ArtifactDetail

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

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

type ActionExecutionResult

type ActionExecutionResult struct {

	// Represents information about an error in CodePipeline.
	ErrorDetails *ErrorDetails

	// The action provider's external ID for the action execution.
	ExternalExecutionId *string

	// The action provider's summary for the action execution.
	ExternalExecutionSummary *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
	// contains filtered or unexported fields
}

Execution result information, such as the external execution ID.

type ActionExecutionStatus

type ActionExecutionStatus string
const (
	ActionExecutionStatusInProgress ActionExecutionStatus = "InProgress"
	ActionExecutionStatusAbandoned  ActionExecutionStatus = "Abandoned"
	ActionExecutionStatusSucceeded  ActionExecutionStatus = "Succeeded"
	ActionExecutionStatusFailed     ActionExecutionStatus = "Failed"
)

Enum values for ActionExecutionStatus

func (ActionExecutionStatus) Values added in v0.29.0

Values returns all known values for ActionExecutionStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ActionNotFoundException

type ActionNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified action cannot be found.

func (*ActionNotFoundException) Error

func (e *ActionNotFoundException) Error() string

func (*ActionNotFoundException) ErrorCode

func (e *ActionNotFoundException) ErrorCode() string

func (*ActionNotFoundException) ErrorFault

func (e *ActionNotFoundException) ErrorFault() smithy.ErrorFault

func (*ActionNotFoundException) ErrorMessage

func (e *ActionNotFoundException) ErrorMessage() string

type ActionOwner

type ActionOwner string
const (
	ActionOwnerAws        ActionOwner = "AWS"
	ActionOwnerThirdParty ActionOwner = "ThirdParty"
	ActionOwnerCustom     ActionOwner = "Custom"
)

Enum values for ActionOwner

func (ActionOwner) Values added in v0.29.0

func (ActionOwner) Values() []ActionOwner

Values returns all known values for ActionOwner. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ActionRevision

type ActionRevision struct {

	// The date and time when the most recent version of the action was created, in
	// timestamp format.
	//
	// This member is required.
	Created *time.Time

	// The unique identifier of the change that set the state to this revision (for
	// example, a deployment ID or timestamp).
	//
	// This member is required.
	RevisionChangeId *string

	// The system-generated unique ID that identifies the revision number of the
	// action.
	//
	// This member is required.
	RevisionId *string
	// contains filtered or unexported fields
}

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

type ActionState

type ActionState struct {

	// The name of the action.
	ActionName *string

	// Represents information about the version (or revision) of an action.
	CurrentRevision *ActionRevision

	// A URL link for more information about the state of the action, such as a
	// deployment group details page.
	EntityUrl *string

	// Represents information about the run of an action.
	LatestExecution *ActionExecution

	// A URL link for more information about the revision, such as a commit details
	// page.
	RevisionUrl *string
	// contains filtered or unexported fields
}

Represents information about the state of an action.

type ActionType

type ActionType struct {

	// Represents information about an action type.
	//
	// This member is required.
	Id *ActionTypeId

	// The details of the input artifact for the action, such as its commit ID.
	//
	// This member is required.
	InputArtifactDetails *ArtifactDetails

	// The details of the output artifact of the action, such as its commit ID.
	//
	// This member is required.
	OutputArtifactDetails *ArtifactDetails

	// The configuration properties for the action type.
	ActionConfigurationProperties []ActionConfigurationProperty

	// The settings for the action type.
	Settings *ActionTypeSettings
	// contains filtered or unexported fields
}

Returns information about the details of an action type.

type ActionTypeArtifactDetails added in v1.2.0

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 .
	//
	// This member is required.
	MaximumCount int32

	// 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 .
	//
	// This member is required.
	MinimumCount int32
	// contains filtered or unexported fields
}

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

type ActionTypeDeclaration added in v1.2.0

type ActionTypeDeclaration struct {

	// Information about the executor for an action type that was created with any
	// supported integration model.
	//
	// This member is required.
	Executor *ActionTypeExecutor

	// The action category, owner, provider, and version of the action type to be
	// updated.
	//
	// This member is required.
	Id *ActionTypeIdentifier

	// 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.
	//
	// This member is required.
	InputArtifactDetails *ActionTypeArtifactDetails

	// 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.
	//
	// This member is required.
	OutputArtifactDetails *ActionTypeArtifactDetails

	// The description for the action type to be updated.
	Description *string

	// Details identifying the accounts with permissions to use the action type.
	Permissions *ActionTypePermissions

	// The properties of the action type to be updated.
	Properties []ActionTypeProperty

	// The links associated with the action type to be updated.
	Urls *ActionTypeUrls
	// contains filtered or unexported fields
}

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

type ActionTypeExecutor added in v1.2.0

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.
	//
	// This member is required.
	Configuration *ExecutorConfiguration

	// The integration model used to create and update the action type, Lambda or
	// JobWorker .
	//
	// This member is required.
	Type ExecutorType

	// 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 *int32

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

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
	//
	// This member is required.
	Category 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)
	// .
	//
	// This member is required.
	Owner 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)
	// .
	//
	// This member is required.
	Provider *string

	// A string that describes the action version.
	//
	// This member is required.
	Version *string
	// contains filtered or unexported fields
}

Represents information about an action type.

type ActionTypeIdentifier added in v1.2.0

type ActionTypeIdentifier struct {

	// Defines what kind of action can be taken in the stage, one of the following:
	//   - Source
	//   - Build
	//   - Test
	//   - Deploy
	//   - Approval
	//   - Invoke
	//
	// This member is required.
	Category ActionCategory

	// The creator of the action type being called: AWS or ThirdParty .
	//
	// This member is required.
	Owner *string

	// The provider of the action type being called. The provider name is supplied
	// when the action type is created.
	//
	// This member is required.
	Provider *string

	// A string that describes the action type version.
	//
	// This member is required.
	Version *string
	// contains filtered or unexported fields
}

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

type ActionTypeNotFoundException

type ActionTypeNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified action type cannot be found.

func (*ActionTypeNotFoundException) Error

func (*ActionTypeNotFoundException) ErrorCode

func (e *ActionTypeNotFoundException) ErrorCode() string

func (*ActionTypeNotFoundException) ErrorFault

func (*ActionTypeNotFoundException) ErrorMessage

func (e *ActionTypeNotFoundException) ErrorMessage() string

type ActionTypePermissions added in v1.2.0

type ActionTypePermissions struct {

	// A list of Amazon Web Services account IDs with access to use the action type in
	// their pipelines.
	//
	// This member is required.
	AllowedAccounts []string
	// contains filtered or unexported fields
}

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

type ActionTypeProperty added in v1.2.0

type ActionTypeProperty struct {

	// Whether the configuration property is a key.
	//
	// This member is required.
	Key bool

	// The property name that is displayed to users.
	//
	// This member is required.
	Name *string

	// 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.
	//
	// This member is required.
	NoEcho bool

	// Whether the configuration property is an optional value.
	//
	// This member is required.
	Optional bool

	// The description of the property that is displayed to users.
	Description *string

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

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

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

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

	// 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
	// contains filtered or unexported fields
}

Returns information about the settings for an action type.

type ActionTypeUrls added in v1.2.0

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

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

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

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

type ApprovalAlreadyCompletedException

type ApprovalAlreadyCompletedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The approval action has already been approved or rejected.

func (*ApprovalAlreadyCompletedException) Error

func (*ApprovalAlreadyCompletedException) ErrorCode

func (*ApprovalAlreadyCompletedException) ErrorFault

func (*ApprovalAlreadyCompletedException) ErrorMessage

func (e *ApprovalAlreadyCompletedException) ErrorMessage() string

type ApprovalResult

type ApprovalResult struct {

	// The response submitted by a reviewer assigned to an approval action request.
	//
	// This member is required.
	Status ApprovalStatus

	// The summary of the current status of the approval request.
	//
	// This member is required.
	Summary *string
	// contains filtered or unexported fields
}

Represents information about the result of an approval request.

type ApprovalStatus

type ApprovalStatus string
const (
	ApprovalStatusApproved ApprovalStatus = "Approved"
	ApprovalStatusRejected ApprovalStatus = "Rejected"
)

Enum values for ApprovalStatus

func (ApprovalStatus) Values added in v0.29.0

func (ApprovalStatus) Values() []ApprovalStatus

Values returns all known values for ApprovalStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type Artifact

type Artifact struct {

	// The location of an artifact.
	Location *ArtifactLocation

	// The artifact's name.
	Name *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
	// 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

type ArtifactDetail

type ArtifactDetail struct {

	// The artifact object name for the action execution.
	Name *string

	// The Amazon S3 artifact location for the action execution.
	S3location *S3Location
	// contains filtered or unexported fields
}

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

type ArtifactDetails

type ArtifactDetails struct {

	// The maximum number of artifacts allowed for the action type.
	//
	// This member is required.
	MaximumCount int32

	// The minimum number of artifacts allowed for the action type.
	//
	// This member is required.
	MinimumCount int32
	// contains filtered or unexported fields
}

Returns information about the details of an artifact.

type ArtifactLocation

type ArtifactLocation struct {

	// The S3 bucket that contains the artifact.
	S3Location *S3ArtifactLocation

	// The type of artifact in the location.
	Type ArtifactLocationType
	// contains filtered or unexported fields
}

Represents information about the location of an artifact.

type ArtifactLocationType

type ArtifactLocationType string
const (
	ArtifactLocationTypeS3 ArtifactLocationType = "S3"
)

Enum values for ArtifactLocationType

func (ArtifactLocationType) Values added in v0.29.0

Values returns all known values for ArtifactLocationType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

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

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

	// An additional identifier for a revision, such as a commit date or, for
	// artifacts stored in Amazon S3 buckets, the ETag value.
	RevisionChangeIdentifier *string

	// The revision ID of the artifact.
	RevisionId *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

	// 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
	// contains filtered or unexported fields
}

Represents revision details of an artifact.

type ArtifactStore

type ArtifactStore struct {

	// 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.
	//
	// This member is required.
	Location *string

	// The type of the artifact store, such as S3.
	//
	// This member is required.
	Type ArtifactStoreType

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

type ArtifactStoreType

type ArtifactStoreType string
const (
	ArtifactStoreTypeS3 ArtifactStoreType = "S3"
)

Enum values for ArtifactStoreType

func (ArtifactStoreType) Values added in v0.29.0

Values returns all known values for ArtifactStoreType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type BlockerDeclaration

type BlockerDeclaration struct {

	// Reserved for future use.
	//
	// This member is required.
	Name *string

	// Reserved for future use.
	//
	// This member is required.
	Type BlockerType
	// contains filtered or unexported fields
}

Reserved for future use.

type BlockerType

type BlockerType string
const (
	BlockerTypeSchedule BlockerType = "Schedule"
)

Enum values for BlockerType

func (BlockerType) Values added in v0.29.0

func (BlockerType) Values() []BlockerType

Values returns all known values for BlockerType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ConcurrentModificationException

type ConcurrentModificationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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

func (*ConcurrentModificationException) Error

func (*ConcurrentModificationException) ErrorCode

func (e *ConcurrentModificationException) ErrorCode() string

func (*ConcurrentModificationException) ErrorFault

func (*ConcurrentModificationException) ErrorMessage

func (e *ConcurrentModificationException) ErrorMessage() string

type ConcurrentPipelineExecutionsLimitExceededException added in v1.23.0

type ConcurrentPipelineExecutionsLimitExceededException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The pipeline has reached the limit for concurrent pipeline executions.

func (*ConcurrentPipelineExecutionsLimitExceededException) Error added in v1.23.0

func (*ConcurrentPipelineExecutionsLimitExceededException) ErrorCode added in v1.23.0

func (*ConcurrentPipelineExecutionsLimitExceededException) ErrorFault added in v1.23.0

func (*ConcurrentPipelineExecutionsLimitExceededException) ErrorMessage added in v1.23.0

type ConflictException added in v0.30.0

type ConflictException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Your request cannot be handled because the pipeline is busy handling ongoing activities. Try again later.

func (*ConflictException) Error added in v0.30.0

func (e *ConflictException) Error() string

func (*ConflictException) ErrorCode added in v0.30.0

func (e *ConflictException) ErrorCode() string

func (*ConflictException) ErrorFault added in v0.30.0

func (e *ConflictException) ErrorFault() smithy.ErrorFault

func (*ConflictException) ErrorMessage added in v0.30.0

func (e *ConflictException) ErrorMessage() string

type CurrentRevision

type CurrentRevision struct {

	// The change identifier for the current revision.
	//
	// This member is required.
	ChangeIdentifier *string

	// The revision ID of the current version of an artifact.
	//
	// This member is required.
	Revision *string

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

	// The summary of the most recent revision of the artifact.
	RevisionSummary *string
	// contains filtered or unexported fields
}

Represents information about a current revision.

type DuplicatedStopRequestException

type DuplicatedStopRequestException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (*DuplicatedStopRequestException) ErrorCode

func (e *DuplicatedStopRequestException) ErrorCode() string

func (*DuplicatedStopRequestException) ErrorFault

func (*DuplicatedStopRequestException) ErrorMessage

func (e *DuplicatedStopRequestException) ErrorMessage() string

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).
	//
	// This member is required.
	Id *string

	// 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'.
	//
	// This member is required.
	Type 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.

type EncryptionKeyType

type EncryptionKeyType string
const (
	EncryptionKeyTypeKms EncryptionKeyType = "KMS"
)

Enum values for EncryptionKeyType

func (EncryptionKeyType) Values added in v0.29.0

Values returns all known values for EncryptionKeyType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ErrorDetails

type ErrorDetails struct {

	// The system ID or number code of the error.
	Code *string

	// The text of the error message.
	Message *string
	// contains filtered or unexported fields
}

Represents information about an error in CodePipeline.

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

	// The percentage of work completed on the action, represented on a scale of 0 to
	// 100 percent.
	PercentComplete *int32

	// The summary of the current status of the actions.
	Summary *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.

type ExecutionMode added in v1.23.0

type ExecutionMode string
const (
	ExecutionModeQueued     ExecutionMode = "QUEUED"
	ExecutionModeSuperseded ExecutionMode = "SUPERSEDED"
	ExecutionModeParallel   ExecutionMode = "PARALLEL"
)

Enum values for ExecutionMode

func (ExecutionMode) Values added in v1.23.0

func (ExecutionMode) Values() []ExecutionMode

Values returns all known values for ExecutionMode. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

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

	// The type of change-detection method, command, or user interaction that started
	// a pipeline execution.
	TriggerType TriggerType
	// contains filtered or unexported fields
}

The interaction or event that started a pipeline execution.

type ExecutorConfiguration added in v1.2.0

type ExecutorConfiguration struct {

	// Details about the JobWorker executor of the action type.
	JobWorkerExecutorConfiguration *JobWorkerExecutorConfiguration

	// Details about the Lambda executor of the action type.
	LambdaExecutorConfiguration *LambdaExecutorConfiguration
	// 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 .

type ExecutorType added in v1.2.0

type ExecutorType string
const (
	ExecutorTypeJobWorker ExecutorType = "JobWorker"
	ExecutorTypeLambda    ExecutorType = "Lambda"
)

Enum values for ExecutorType

func (ExecutorType) Values added in v1.2.0

func (ExecutorType) Values() []ExecutorType

Values returns all known values for ExecutorType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type FailureDetails

type FailureDetails struct {

	// The message about the failure.
	//
	// This member is required.
	Message *string

	// The type of the failure.
	//
	// This member is required.
	Type FailureType

	// The external ID of the run of the action that failed.
	ExternalExecutionId *string
	// contains filtered or unexported fields
}

Represents information about failure details.

type FailureType

type FailureType string
const (
	FailureTypeJobFailed           FailureType = "JobFailed"
	FailureTypeConfigurationError  FailureType = "ConfigurationError"
	FailureTypePermissionError     FailureType = "PermissionError"
	FailureTypeRevisionOutOfSync   FailureType = "RevisionOutOfSync"
	FailureTypeRevisionUnavailable FailureType = "RevisionUnavailable"
	FailureTypeSystemUnavailable   FailureType = "SystemUnavailable"
)

Enum values for FailureType

func (FailureType) Values added in v0.29.0

func (FailureType) Values() []FailureType

Values returns all known values for FailureType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type GitBranchFilterCriteria added in v1.23.0

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

	// 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
	// contains filtered or unexported fields
}

The Git repository branches specified as filter criteria to start the pipeline.

type GitConfiguration added in v1.18.0

type GitConfiguration struct {

	// 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.
	//
	// This member is required.
	SourceActionName *string

	// The field where the repository event that will start the pipeline is specified
	// as pull requests.
	PullRequest []GitPullRequestFilter

	// The field where the repository event that will start the pipeline, such as
	// pushing Git tags, is specified with details.
	Push []GitPushFilter
	// 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.

type GitFilePathFilterCriteria added in v1.23.0

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

	// 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
	// contains filtered or unexported fields
}

The Git repository file paths specified as filter criteria to start the pipeline.

type GitPullRequestEventType added in v1.23.0

type GitPullRequestEventType string
const (
	GitPullRequestEventTypeOpen    GitPullRequestEventType = "OPEN"
	GitPullRequestEventTypeUpdated GitPullRequestEventType = "UPDATED"
	GitPullRequestEventTypeClosed  GitPullRequestEventType = "CLOSED"
)

Enum values for GitPullRequestEventType

func (GitPullRequestEventType) Values added in v1.23.0

Values returns all known values for GitPullRequestEventType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type GitPullRequestFilter added in v1.23.0

type GitPullRequestFilter struct {

	// The field that specifies to filter on branches for the pull request trigger
	// configuration.
	Branches *GitBranchFilterCriteria

	// The field that specifies which pull request events to filter on (opened,
	// updated, closed) for the trigger configuration.
	Events []GitPullRequestEventType

	// The field that specifies to filter on file paths for the pull request trigger
	// configuration.
	FilePaths *GitFilePathFilterCriteria
	// 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.

type GitPushFilter added in v1.18.0

type GitPushFilter struct {

	// The field that specifies to filter on branches for the push trigger
	// configuration.
	Branches *GitBranchFilterCriteria

	// The field that specifies to filter on file paths for the push trigger
	// configuration.
	FilePaths *GitFilePathFilterCriteria

	// The field that contains the details for the Git tags trigger configuration.
	Tags *GitTagFilterCriteria
	// 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.

type GitTagFilterCriteria added in v1.18.0

type GitTagFilterCriteria struct {

	// The list of patterns of Git tags that, when pushed, are to be excluded from
	// starting the pipeline.
	Excludes []string

	// The list of patterns of Git tags that, when pushed, are to be included as
	// criteria that starts the pipeline.
	Includes []string
	// contains filtered or unexported fields
}

The Git tags specified as filter criteria for whether a Git tag repository event will start the pipeline.

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.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

Represents information about an artifact to be worked on, such as a test or build artifact.

type InvalidActionDeclarationException

type InvalidActionDeclarationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The action declaration was specified in an invalid format.

func (*InvalidActionDeclarationException) Error

func (*InvalidActionDeclarationException) ErrorCode

func (*InvalidActionDeclarationException) ErrorFault

func (*InvalidActionDeclarationException) ErrorMessage

func (e *InvalidActionDeclarationException) ErrorMessage() string

type InvalidApprovalTokenException

type InvalidApprovalTokenException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The approval request already received a response or has expired.

func (*InvalidApprovalTokenException) Error

func (*InvalidApprovalTokenException) ErrorCode

func (e *InvalidApprovalTokenException) ErrorCode() string

func (*InvalidApprovalTokenException) ErrorFault

func (*InvalidApprovalTokenException) ErrorMessage

func (e *InvalidApprovalTokenException) ErrorMessage() string

type InvalidArnException

type InvalidArnException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified resource ARN is invalid.

func (*InvalidArnException) Error

func (e *InvalidArnException) Error() string

func (*InvalidArnException) ErrorCode

func (e *InvalidArnException) ErrorCode() string

func (*InvalidArnException) ErrorFault

func (e *InvalidArnException) ErrorFault() smithy.ErrorFault

func (*InvalidArnException) ErrorMessage

func (e *InvalidArnException) ErrorMessage() string

type InvalidBlockerDeclarationException

type InvalidBlockerDeclarationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Reserved for future use.

func (*InvalidBlockerDeclarationException) Error

func (*InvalidBlockerDeclarationException) ErrorCode

func (*InvalidBlockerDeclarationException) ErrorFault

func (*InvalidBlockerDeclarationException) ErrorMessage

func (e *InvalidBlockerDeclarationException) ErrorMessage() string

type InvalidClientTokenException

type InvalidClientTokenException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The client token was specified in an invalid format

func (*InvalidClientTokenException) Error

func (*InvalidClientTokenException) ErrorCode

func (e *InvalidClientTokenException) ErrorCode() string

func (*InvalidClientTokenException) ErrorFault

func (*InvalidClientTokenException) ErrorMessage

func (e *InvalidClientTokenException) ErrorMessage() string

type InvalidJobException

type InvalidJobException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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

func (*InvalidJobException) Error

func (e *InvalidJobException) Error() string

func (*InvalidJobException) ErrorCode

func (e *InvalidJobException) ErrorCode() string

func (*InvalidJobException) ErrorFault

func (e *InvalidJobException) ErrorFault() smithy.ErrorFault

func (*InvalidJobException) ErrorMessage

func (e *InvalidJobException) ErrorMessage() string

type InvalidJobStateException

type InvalidJobStateException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The job state was specified in an invalid format.

func (*InvalidJobStateException) Error

func (e *InvalidJobStateException) Error() string

func (*InvalidJobStateException) ErrorCode

func (e *InvalidJobStateException) ErrorCode() string

func (*InvalidJobStateException) ErrorFault

func (e *InvalidJobStateException) ErrorFault() smithy.ErrorFault

func (*InvalidJobStateException) ErrorMessage

func (e *InvalidJobStateException) ErrorMessage() string

type InvalidNextTokenException

type InvalidNextTokenException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (e *InvalidNextTokenException) Error() string

func (*InvalidNextTokenException) ErrorCode

func (e *InvalidNextTokenException) ErrorCode() string

func (*InvalidNextTokenException) ErrorFault

func (*InvalidNextTokenException) ErrorMessage

func (e *InvalidNextTokenException) ErrorMessage() string

type InvalidNonceException

type InvalidNonceException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The nonce was specified in an invalid format.

func (*InvalidNonceException) Error

func (e *InvalidNonceException) Error() string

func (*InvalidNonceException) ErrorCode

func (e *InvalidNonceException) ErrorCode() string

func (*InvalidNonceException) ErrorFault

func (e *InvalidNonceException) ErrorFault() smithy.ErrorFault

func (*InvalidNonceException) ErrorMessage

func (e *InvalidNonceException) ErrorMessage() string

type InvalidStageDeclarationException

type InvalidStageDeclarationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The stage declaration was specified in an invalid format.

func (*InvalidStageDeclarationException) Error

func (*InvalidStageDeclarationException) ErrorCode

func (*InvalidStageDeclarationException) ErrorFault

func (*InvalidStageDeclarationException) ErrorMessage

func (e *InvalidStageDeclarationException) ErrorMessage() string

type InvalidStructureException

type InvalidStructureException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The structure was specified in an invalid format.

func (*InvalidStructureException) Error

func (e *InvalidStructureException) Error() string

func (*InvalidStructureException) ErrorCode

func (e *InvalidStructureException) ErrorCode() string

func (*InvalidStructureException) ErrorFault

func (*InvalidStructureException) ErrorMessage

func (e *InvalidStructureException) ErrorMessage() string

type InvalidTagsException

type InvalidTagsException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified resource tags are invalid.

func (*InvalidTagsException) Error

func (e *InvalidTagsException) Error() string

func (*InvalidTagsException) ErrorCode

func (e *InvalidTagsException) ErrorCode() string

func (*InvalidTagsException) ErrorFault

func (e *InvalidTagsException) ErrorFault() smithy.ErrorFault

func (*InvalidTagsException) ErrorMessage

func (e *InvalidTagsException) ErrorMessage() string

type InvalidWebhookAuthenticationParametersException

type InvalidWebhookAuthenticationParametersException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified authentication type is in an invalid format.

func (*InvalidWebhookAuthenticationParametersException) Error

func (*InvalidWebhookAuthenticationParametersException) ErrorCode

func (*InvalidWebhookAuthenticationParametersException) ErrorFault

func (*InvalidWebhookAuthenticationParametersException) ErrorMessage

type InvalidWebhookFilterPatternException

type InvalidWebhookFilterPatternException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified event filter rule is in an invalid format.

func (*InvalidWebhookFilterPatternException) Error

func (*InvalidWebhookFilterPatternException) ErrorCode

func (*InvalidWebhookFilterPatternException) ErrorFault

func (*InvalidWebhookFilterPatternException) ErrorMessage

func (e *InvalidWebhookFilterPatternException) ErrorMessage() string

type Job

type Job struct {

	// The ID of the Amazon Web Services account to use when performing the job.
	AccountId *string

	// Other data about a job.
	Data *JobData

	// The unique system-generated ID of the job.
	Id *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
	// contains filtered or unexported fields
}

Represents information about a job.

type JobData

type JobData struct {

	// Represents information about an action configuration.
	ActionConfiguration *ActionConfiguration

	// Represents information about an action type.
	ActionTypeId *ActionTypeId

	// 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 *AWSSessionCredentials

	// A system-generated token, such as a deployment ID, required by a job to
	// continue the job asynchronously.
	ContinuationToken *string

	// Represents information about the key used to encrypt data in the artifact
	// store, such as an KMS key.
	EncryptionKey *EncryptionKey

	// The artifact supplied to the job.
	InputArtifacts []Artifact

	// The output of the job.
	OutputArtifacts []Artifact

	// Represents information about a pipeline to a job worker. Includes pipelineArn
	// and pipelineExecutionId for custom jobs.
	PipelineContext *PipelineContext
	// contains filtered or unexported fields
}

Represents other information about a job required for a job worker to complete the job.

type JobDetails

type JobDetails struct {

	// The Amazon Web Services account ID associated with the job.
	AccountId *string

	// Represents other information about a job required for a job worker to complete
	// the job.
	Data *JobData

	// The unique system-generated ID of the job.
	Id *string
	// contains filtered or unexported fields
}

Represents information about the details of a job.

type JobNotFoundException

type JobNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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

func (*JobNotFoundException) Error

func (e *JobNotFoundException) Error() string

func (*JobNotFoundException) ErrorCode

func (e *JobNotFoundException) ErrorCode() string

func (*JobNotFoundException) ErrorFault

func (e *JobNotFoundException) ErrorFault() smithy.ErrorFault

func (*JobNotFoundException) ErrorMessage

func (e *JobNotFoundException) ErrorMessage() string

type JobStatus

type JobStatus string
const (
	JobStatusCreated    JobStatus = "Created"
	JobStatusQueued     JobStatus = "Queued"
	JobStatusDispatched JobStatus = "Dispatched"
	JobStatusInProgress JobStatus = "InProgress"
	JobStatusTimedOut   JobStatus = "TimedOut"
	JobStatusSucceeded  JobStatus = "Succeeded"
	JobStatusFailed     JobStatus = "Failed"
)

Enum values for JobStatus

func (JobStatus) Values added in v0.29.0

func (JobStatus) Values() []JobStatus

Values returns all known values for JobStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type JobWorkerExecutorConfiguration added in v1.2.0

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

	// The service Principals in which the job worker is configured and might poll for
	// jobs as part of the action execution.
	PollingServicePrincipals []string
	// contains filtered or unexported fields
}

Details about the polling configuration for the JobWorker action engine, or executor.

type LambdaExecutorConfiguration added in v1.2.0

type LambdaExecutorConfiguration struct {

	// The ARN of the Lambda function used by the action engine.
	//
	// This member is required.
	LambdaFunctionArn *string
	// contains filtered or unexported fields
}

Details about the configuration for the Lambda action engine, or executor.

type LatestInPipelineExecutionFilter added in v1.23.0

type LatestInPipelineExecutionFilter struct {

	// The execution ID for the latest execution in the pipeline.
	//
	// This member is required.
	PipelineExecutionId *string

	// The start time to filter on for the latest execution in the pipeline. Valid
	// options:
	//   - All
	//   - Latest
	//
	// This member is required.
	StartTimeRange 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.

type LimitExceededException

type LimitExceededException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (e *LimitExceededException) Error() string

func (*LimitExceededException) ErrorCode

func (e *LimitExceededException) ErrorCode() string

func (*LimitExceededException) ErrorFault

func (e *LimitExceededException) ErrorFault() smithy.ErrorFault

func (*LimitExceededException) ErrorMessage

func (e *LimitExceededException) ErrorMessage() string

type ListWebhookItem

type ListWebhookItem struct {

	// The detail returned for each webhook, such as the webhook authentication type
	// and filter rules.
	//
	// This member is required.
	Definition *WebhookDefinition

	// 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.
	//
	// This member is required.
	Url *string

	// The Amazon Resource Name (ARN) of the webhook.
	Arn *string

	// The number code of the error.
	ErrorCode *string

	// The text of the error message about the webhook.
	ErrorMessage *string

	// The date and time a webhook was last successfully triggered, in timestamp
	// format.
	LastTriggered *time.Time

	// Specifies the tags applied to the webhook.
	Tags []Tag
	// 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.

type NotLatestPipelineExecutionException

type NotLatestPipelineExecutionException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (*NotLatestPipelineExecutionException) ErrorCode

func (*NotLatestPipelineExecutionException) ErrorFault

func (*NotLatestPipelineExecutionException) ErrorMessage

func (e *NotLatestPipelineExecutionException) ErrorMessage() string

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.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

Represents information about the output of an action.

type OutputVariablesSizeExceededException

type OutputVariablesSizeExceededException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

Exceeded the total size limit for all variables in the pipeline.

func (*OutputVariablesSizeExceededException) Error

func (*OutputVariablesSizeExceededException) ErrorCode

func (*OutputVariablesSizeExceededException) ErrorFault

func (*OutputVariablesSizeExceededException) ErrorMessage

func (e *OutputVariablesSizeExceededException) ErrorMessage() string

type PipelineContext

type PipelineContext struct {

	// The context of an action to a job worker in the stage of a pipeline.
	Action *ActionContext

	// The Amazon Resource Name (ARN) of the pipeline.
	PipelineArn *string

	// The execution ID of the pipeline.
	PipelineExecutionId *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

	// The stage of the pipeline.
	Stage *StageContext
	// 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.

type PipelineDeclaration

type PipelineDeclaration struct {

	// The name of the pipeline.
	//
	// This member is required.
	Name *string

	// 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 .
	//
	// This member is required.
	RoleArn *string

	// The stage in which to perform the action.
	//
	// This member is required.
	Stages []StageDeclaration

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

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

	// The method that the pipeline will use to handle multiple executions. The
	// default mode is SUPERSEDED.
	ExecutionMode ExecutionMode

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

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

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

	// 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 *int32
	// contains filtered or unexported fields
}

Represents the structure of actions and stages to be performed in the pipeline.

type PipelineExecution

type PipelineExecution struct {

	// A list of ArtifactRevision objects included in a pipeline execution.
	ArtifactRevisions []ArtifactRevision

	// The method that the pipeline will use to handle multiple executions. The
	// default mode is SUPERSEDED.
	ExecutionMode ExecutionMode

	// The ID of the pipeline execution.
	PipelineExecutionId *string

	// The name of the pipeline with the specified pipeline execution.
	PipelineName *string

	// The version number of the pipeline with the specified pipeline execution.
	PipelineVersion *int32

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

	// A summary that contains a description of the pipeline execution status.
	StatusSummary *string

	// The interaction or event that started a pipeline execution.
	Trigger *ExecutionTrigger

	// A list of pipeline variables used for the pipeline execution.
	Variables []ResolvedPipelineVariable
	// contains filtered or unexported fields
}

Represents information about an execution of a pipeline.

type PipelineExecutionNotFoundException

type PipelineExecutionNotFoundException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (*PipelineExecutionNotFoundException) ErrorCode

func (*PipelineExecutionNotFoundException) ErrorFault

func (*PipelineExecutionNotFoundException) ErrorMessage

func (e *PipelineExecutionNotFoundException) ErrorMessage() string

type PipelineExecutionNotStoppableException

type PipelineExecutionNotStoppableException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (*PipelineExecutionNotStoppableException) ErrorCode

func (*PipelineExecutionNotStoppableException) ErrorFault

func (*PipelineExecutionNotStoppableException) ErrorMessage

type PipelineExecutionStatus

type PipelineExecutionStatus string
const (
	PipelineExecutionStatusCancelled  PipelineExecutionStatus = "Cancelled"
	PipelineExecutionStatusInProgress PipelineExecutionStatus = "InProgress"
	PipelineExecutionStatusStopped    PipelineExecutionStatus = "Stopped"
	PipelineExecutionStatusStopping   PipelineExecutionStatus = "Stopping"
	PipelineExecutionStatusSucceeded  PipelineExecutionStatus = "Succeeded"
	PipelineExecutionStatusSuperseded PipelineExecutionStatus = "Superseded"
	PipelineExecutionStatusFailed     PipelineExecutionStatus = "Failed"
)

Enum values for PipelineExecutionStatus

func (PipelineExecutionStatus) Values added in v0.29.0

Values returns all known values for PipelineExecutionStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type PipelineExecutionSummary

type PipelineExecutionSummary struct {

	// The method that the pipeline will use to handle multiple executions. The
	// default mode is SUPERSEDED.
	ExecutionMode ExecutionMode

	// The date and time of the last change to the pipeline execution, in timestamp
	// format.
	LastUpdateTime *time.Time

	// The ID of the pipeline execution.
	PipelineExecutionId *string

	// A list of the source artifact revisions that initiated a pipeline execution.
	SourceRevisions []SourceRevision

	// The date and time when the pipeline execution began, in timestamp format.
	StartTime *time.Time

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

	// The interaction that stopped a pipeline execution.
	StopTrigger *StopExecutionTrigger

	// The interaction or event that started a pipeline execution, such as automated
	// change detection or a StartPipelineExecution API call.
	Trigger *ExecutionTrigger
	// contains filtered or unexported fields
}

Summary information about a pipeline execution.

type PipelineMetadata

type PipelineMetadata struct {

	// The date and time the pipeline was created, in timestamp format.
	Created *time.Time

	// The Amazon Resource Name (ARN) of the pipeline.
	PipelineArn *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

	// The date and time the pipeline was last updated, in timestamp format.
	Updated *time.Time
	// contains filtered or unexported fields
}

Information about a pipeline.

type PipelineNameInUseException

type PipelineNameInUseException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The specified pipeline name is already in use.

func (*PipelineNameInUseException) Error

func (*PipelineNameInUseException) ErrorCode

func (e *PipelineNameInUseException) ErrorCode() string

func (*PipelineNameInUseException) ErrorFault

func (*PipelineNameInUseException) ErrorMessage

func (e *PipelineNameInUseException) ErrorMessage() string

type PipelineNotFoundException

type PipelineNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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

func (*PipelineNotFoundException) Error

func (e *PipelineNotFoundException) Error() string

func (*PipelineNotFoundException) ErrorCode

func (e *PipelineNotFoundException) ErrorCode() string

func (*PipelineNotFoundException) ErrorFault

func (*PipelineNotFoundException) ErrorMessage

func (e *PipelineNotFoundException) ErrorMessage() string

type PipelineSummary

type PipelineSummary struct {

	// The date and time the pipeline was created, in timestamp format.
	Created *time.Time

	// The method that the pipeline will use to handle multiple executions. The
	// default mode is SUPERSEDED.
	ExecutionMode ExecutionMode

	// The name of the pipeline.
	Name *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 PipelineType

	// The date and time of the last update to the pipeline, in timestamp format.
	Updated *time.Time

	// The version number of the pipeline.
	Version *int32
	// contains filtered or unexported fields
}

Returns a summary of a pipeline.

type PipelineTriggerDeclaration added in v1.18.0

type PipelineTriggerDeclaration struct {

	// Provides the filter criteria and the source stage for the repository event that
	// starts the pipeline, such as Git tags.
	//
	// This member is required.
	GitConfiguration *GitConfiguration

	// The source provider for the event, such as connections configured for a
	// repository with Git tags, for the specified trigger configuration.
	//
	// This member is required.
	ProviderType 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.

type PipelineTriggerProviderType added in v1.18.0

type PipelineTriggerProviderType string
const (
	PipelineTriggerProviderTypeCodeStarSourceConnection PipelineTriggerProviderType = "CodeStarSourceConnection"
)

Enum values for PipelineTriggerProviderType

func (PipelineTriggerProviderType) Values added in v1.18.0

Values returns all known values for PipelineTriggerProviderType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type PipelineType added in v1.18.0

type PipelineType string
const (
	PipelineTypeV1 PipelineType = "V1"
	PipelineTypeV2 PipelineType = "V2"
)

Enum values for PipelineType

func (PipelineType) Values added in v1.18.0

func (PipelineType) Values() []PipelineType

Values returns all known values for PipelineType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type PipelineVariable added in v1.18.0

type PipelineVariable struct {

	// The name of a pipeline-level variable.
	//
	// This member is required.
	Name *string

	// The value of a pipeline-level variable.
	//
	// This member is required.
	Value *string
	// contains filtered or unexported fields
}

A pipeline-level variable used for a pipeline execution.

type PipelineVariableDeclaration added in v1.18.0

type PipelineVariableDeclaration struct {

	// The name of a pipeline-level variable.
	//
	// This member is required.
	Name *string

	// The value of a pipeline-level variable.
	DefaultValue *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
	// contains filtered or unexported fields
}

A variable declared at the pipeline level.

type PipelineVersionNotFoundException

type PipelineVersionNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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

func (*PipelineVersionNotFoundException) Error

func (*PipelineVersionNotFoundException) ErrorCode

func (*PipelineVersionNotFoundException) ErrorFault

func (*PipelineVersionNotFoundException) ErrorMessage

func (e *PipelineVersionNotFoundException) ErrorMessage() string

type RequestFailedException added in v1.2.0

type RequestFailedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The request failed because of an unknown error, exception, or failure.

func (*RequestFailedException) Error added in v1.2.0

func (e *RequestFailedException) Error() string

func (*RequestFailedException) ErrorCode added in v1.2.0

func (e *RequestFailedException) ErrorCode() string

func (*RequestFailedException) ErrorFault added in v1.2.0

func (e *RequestFailedException) ErrorFault() smithy.ErrorFault

func (*RequestFailedException) ErrorMessage added in v1.2.0

func (e *RequestFailedException) ErrorMessage() string

type ResolvedPipelineVariable added in v1.18.0

type ResolvedPipelineVariable struct {

	// The name of a pipeline-level variable.
	Name *string

	// The resolved value of a pipeline-level variable.
	ResolvedValue *string
	// contains filtered or unexported fields
}

A pipeline-level variable used for a pipeline execution.

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The resource was specified in an invalid format.

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

type S3ArtifactLocation

type S3ArtifactLocation struct {

	// The name of the S3 bucket.
	//
	// This member is required.
	BucketName *string

	// The key of the object in the S3 bucket, which uniquely identifies the object in
	// the bucket.
	//
	// This member is required.
	ObjectKey *string
	// contains filtered or unexported fields
}

The location of the S3 bucket that contains a revision.

type S3Location

type S3Location struct {

	// The Amazon S3 artifact bucket for an action's artifacts.
	Bucket *string

	// The artifact name.
	Key *string
	// contains filtered or unexported fields
}

The Amazon S3 artifact location for an action's artifacts.

type SourceRevision

type SourceRevision struct {

	// The name of the action that processed the revision to the source artifact.
	//
	// This member is required.
	ActionName *string

	// The system-generated unique ID that identifies the revision number of the
	// artifact.
	RevisionId *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

	// 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
	// contains filtered or unexported fields
}

Information about the version (or revision) of a source artifact that initiated a pipeline execution.

type SourceRevisionOverride added in v1.21.0

type SourceRevisionOverride struct {

	// The name of the action where the override will be applied.
	//
	// This member is required.
	ActionName *string

	// The type of source revision, based on the source provider. For example, the
	// revision type for the CodeCommit action provider is the commit ID.
	//
	// This member is required.
	RevisionType SourceRevisionType

	// The source revision, or version of your source artifact, with the changes that
	// you want to run in the pipeline execution.
	//
	// This member is required.
	RevisionValue *string
	// 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.

type SourceRevisionType added in v1.21.0

type SourceRevisionType string
const (
	SourceRevisionTypeCommitId          SourceRevisionType = "COMMIT_ID"
	SourceRevisionTypeImageDigest       SourceRevisionType = "IMAGE_DIGEST"
	SourceRevisionTypeS3ObjectVersionId SourceRevisionType = "S3_OBJECT_VERSION_ID"
)

Enum values for SourceRevisionType

func (SourceRevisionType) Values added in v1.21.0

Values returns all known values for SourceRevisionType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type StageContext

type StageContext struct {

	// The name of the stage.
	Name *string
	// contains filtered or unexported fields
}

Represents information about a stage to a job worker.

type StageDeclaration

type StageDeclaration struct {

	// The actions included in a stage.
	//
	// This member is required.
	Actions []ActionDeclaration

	// The name of the stage.
	//
	// This member is required.
	Name *string

	// Reserved for future use.
	Blockers []BlockerDeclaration
	// contains filtered or unexported fields
}

Represents information about a stage and its definition.

type StageExecution

type StageExecution struct {

	// The ID of the pipeline execution associated with the stage.
	//
	// This member is required.
	PipelineExecutionId *string

	// 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.
	//
	// This member is required.
	Status StageExecutionStatus
	// contains filtered or unexported fields
}

Represents information about the run of a stage.

type StageExecutionStatus

type StageExecutionStatus string
const (
	StageExecutionStatusCancelled  StageExecutionStatus = "Cancelled"
	StageExecutionStatusInProgress StageExecutionStatus = "InProgress"
	StageExecutionStatusFailed     StageExecutionStatus = "Failed"
	StageExecutionStatusStopped    StageExecutionStatus = "Stopped"
	StageExecutionStatusStopping   StageExecutionStatus = "Stopping"
	StageExecutionStatusSucceeded  StageExecutionStatus = "Succeeded"
)

Enum values for StageExecutionStatus

func (StageExecutionStatus) Values added in v0.29.0

Values returns all known values for StageExecutionStatus. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type StageNotFoundException

type StageNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The stage was specified in an invalid format or cannot be found.

func (*StageNotFoundException) Error

func (e *StageNotFoundException) Error() string

func (*StageNotFoundException) ErrorCode

func (e *StageNotFoundException) ErrorCode() string

func (*StageNotFoundException) ErrorFault

func (e *StageNotFoundException) ErrorFault() smithy.ErrorFault

func (*StageNotFoundException) ErrorMessage

func (e *StageNotFoundException) ErrorMessage() string

type StageNotRetryableException

type StageNotRetryableException struct {
	Message *string

	ErrorCodeOverride *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) Error

func (*StageNotRetryableException) ErrorCode

func (e *StageNotRetryableException) ErrorCode() string

func (*StageNotRetryableException) ErrorFault

func (*StageNotRetryableException) ErrorMessage

func (e *StageNotRetryableException) ErrorMessage() string

type StageRetryMode

type StageRetryMode string
const (
	StageRetryModeFailedActions StageRetryMode = "FAILED_ACTIONS"
	StageRetryModeAllActions    StageRetryMode = "ALL_ACTIONS"
)

Enum values for StageRetryMode

func (StageRetryMode) Values added in v0.29.0

func (StageRetryMode) Values() []StageRetryMode

Values returns all known values for StageRetryMode. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type StageState

type StageState struct {

	// The state of the stage.
	ActionStates []ActionState

	// Represents information about the run of a stage.
	InboundExecution *StageExecution

	// The inbound executions for a stage.
	InboundExecutions []StageExecution

	// The state of the inbound transition, which is either enabled or disabled.
	InboundTransitionState *TransitionState

	// Information about the latest execution in the stage, including its ID and
	// status.
	LatestExecution *StageExecution

	// The name of the stage.
	StageName *string
	// contains filtered or unexported fields
}

Represents information about the state of the stage.

type StageTransitionType

type StageTransitionType string
const (
	StageTransitionTypeInbound  StageTransitionType = "Inbound"
	StageTransitionTypeOutbound StageTransitionType = "Outbound"
)

Enum values for StageTransitionType

func (StageTransitionType) Values added in v0.29.0

Values returns all known values for StageTransitionType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type StartTimeRange added in v1.23.0

type StartTimeRange string
const (
	StartTimeRangeLatest StartTimeRange = "Latest"
	StartTimeRangeAll    StartTimeRange = "All"
)

Enum values for StartTimeRange

func (StartTimeRange) Values added in v1.23.0

func (StartTimeRange) Values() []StartTimeRange

Values returns all known values for StartTimeRange. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type StopExecutionTrigger

type StopExecutionTrigger struct {

	// The user-specified reason the pipeline was stopped.
	Reason *string
	// contains filtered or unexported fields
}

The interaction that stopped a pipeline execution.

type Tag

type Tag struct {

	// The tag's key.
	//
	// This member is required.
	Key *string

	// The tag's value.
	//
	// This member is required.
	Value *string
	// contains filtered or unexported fields
}

A tag is a key-value pair that is used to manage the resource.

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

	// The identifier used to identify the job in CodePipeline.
	JobId *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.

type ThirdPartyJobData

type ThirdPartyJobData struct {

	// Represents information about an action configuration.
	ActionConfiguration *ActionConfiguration

	// Represents information about an action type.
	ActionTypeId *ActionTypeId

	// 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 *AWSSessionCredentials

	// A system-generated token, such as a CodeDeploy deployment ID, that a job
	// requires to continue the job asynchronously.
	ContinuationToken *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

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

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

	// Represents information about a pipeline to a job worker. Does not include
	// pipelineArn and pipelineExecutionId for ThirdParty jobs.
	PipelineContext *PipelineContext
	// contains filtered or unexported fields
}

Represents information about the job data for a partner action.

type ThirdPartyJobDetails

type ThirdPartyJobDetails struct {

	// The data to be returned by the third party job worker.
	Data *ThirdPartyJobData

	// The identifier used to identify the job details in CodePipeline.
	Id *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
	// contains filtered or unexported fields
}

The details of a job sent in response to a GetThirdPartyJobDetails request.

type TooManyTagsException

type TooManyTagsException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The tags limit for a resource has been exceeded.

func (*TooManyTagsException) Error

func (e *TooManyTagsException) Error() string

func (*TooManyTagsException) ErrorCode

func (e *TooManyTagsException) ErrorCode() string

func (*TooManyTagsException) ErrorFault

func (e *TooManyTagsException) ErrorFault() smithy.ErrorFault

func (*TooManyTagsException) ErrorMessage

func (e *TooManyTagsException) ErrorMessage() string

type TransitionState

type TransitionState struct {

	// The user-specified reason why the transition between two stages of a pipeline
	// was disabled.
	DisabledReason *string

	// Whether the transition between stages is enabled (true) or disabled (false).
	Enabled bool

	// The timestamp when the transition state was last changed.
	LastChangedAt *time.Time

	// The ID of the user who last changed the transition state.
	LastChangedBy *string
	// contains filtered or unexported fields
}

Represents information about the state of transitions between one stage and another stage.

type TriggerType

type TriggerType string
const (
	TriggerTypeCreatePipeline         TriggerType = "CreatePipeline"
	TriggerTypeStartPipelineExecution TriggerType = "StartPipelineExecution"
	TriggerTypePollForSourceChanges   TriggerType = "PollForSourceChanges"
	TriggerTypeWebhook                TriggerType = "Webhook"
	TriggerTypeCloudWatchEvent        TriggerType = "CloudWatchEvent"
	TriggerTypePutActionRevision      TriggerType = "PutActionRevision"
	TriggerTypeWebhookV2              TriggerType = "WebhookV2"
)

Enum values for TriggerType

func (TriggerType) Values added in v0.29.0

func (TriggerType) Values() []TriggerType

Values returns all known values for TriggerType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

type ValidationException

type ValidationException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The validation was specified in an invalid format.

func (*ValidationException) Error

func (e *ValidationException) Error() string

func (*ValidationException) ErrorCode

func (e *ValidationException) ErrorCode() string

func (*ValidationException) ErrorFault

func (e *ValidationException) ErrorFault() smithy.ErrorFault

func (*ValidationException) ErrorMessage

func (e *ValidationException) ErrorMessage() string

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

	// The property used to configure GitHub authentication. For GITHUB_HMAC, only the
	// SecretToken property must be set.
	SecretToken *string
	// contains filtered or unexported fields
}

The authentication applied to incoming webhook trigger requests.

type WebhookAuthenticationType

type WebhookAuthenticationType string
const (
	WebhookAuthenticationTypeGithubHmac      WebhookAuthenticationType = "GITHUB_HMAC"
	WebhookAuthenticationTypeIp              WebhookAuthenticationType = "IP"
	WebhookAuthenticationTypeUnauthenticated WebhookAuthenticationType = "UNAUTHENTICATED"
)

Enum values for WebhookAuthenticationType

func (WebhookAuthenticationType) Values added in v0.29.0

Values returns all known values for WebhookAuthenticationType. Note that this can be expanded in the future, and so it is only as up to date as the client. The ordering of this slice is not guaranteed to be stable across updates.

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.
	//
	// This member is required.
	Authentication 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.
	//
	// This member is required.
	AuthenticationConfiguration *WebhookAuthConfiguration

	// 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.
	//
	// This member is required.
	Filters []WebhookFilterRule

	// The name of the webhook.
	//
	// This member is required.
	Name *string

	// 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.
	//
	// This member is required.
	TargetAction *string

	// The name of the pipeline you want to connect to the webhook.
	//
	// This member is required.
	TargetPipeline *string
	// contains filtered or unexported fields
}

Represents information about a webhook and its definition.

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.
	//
	// This member is required.
	JsonPath *string

	// 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
	// contains filtered or unexported fields
}

The event criteria that specify when a webhook notification is sent to your URL.

type WebhookNotFoundException

type WebhookNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

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

func (*WebhookNotFoundException) Error

func (e *WebhookNotFoundException) Error() string

func (*WebhookNotFoundException) ErrorCode

func (e *WebhookNotFoundException) ErrorCode() string

func (*WebhookNotFoundException) ErrorFault

func (e *WebhookNotFoundException) ErrorFault() smithy.ErrorFault

func (*WebhookNotFoundException) ErrorMessage

func (e *WebhookNotFoundException) ErrorMessage() string

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL