Enum CodepipelineActions
- java.lang.Object
-
- java.lang.Enum<CodepipelineActions>
-
- com.amazonaws.auth.policy.actions.CodepipelineActions
-
- All Implemented Interfaces:
Action,Serializable,Comparable<CodepipelineActions>
public enum CodepipelineActions extends Enum<CodepipelineActions> implements Action
The available AWS access control policy actions for CodePipeline.
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AcknowledgeJobAction for the AcknowledgeJob operation.AcknowledgeThirdPartyJobAction for the AcknowledgeThirdPartyJob operation.AllCodepipelineActionsRepresents any action executed on CodePipeline.CreateCustomActionTypeAction for the CreateCustomActionType operation.CreatePipelineAction for the CreatePipeline operation.DeleteCustomActionTypeAction for the DeleteCustomActionType operation.DeletePipelineAction for the DeletePipeline operation.DisableStageTransitionAction for the DisableStageTransition operation.EnableStageTransitionAction for the EnableStageTransition operation.GetJobDetailsAction for the GetJobDetails operation.GetPipelineAction for the GetPipeline operation.GetPipelineStateAction for the GetPipelineState operation.GetThirdPartyJobDetailsAction for the GetThirdPartyJobDetails operation.ListActionTypesAction for the ListActionTypes operation.ListPipelinesAction for the ListPipelines operation.PollForJobsAction for the PollForJobs operation.PollForThirdPartyJobsAction for the PollForThirdPartyJobs operation.PutActionRevisionAction for the PutActionRevision operation.PutJobFailureResultAction for the PutJobFailureResult operation.PutJobSuccessResultAction for the PutJobSuccessResult operation.PutThirdPartyJobFailureResultAction for the PutThirdPartyJobFailureResult operation.PutThirdPartyJobSuccessResultAction for the PutThirdPartyJobSuccessResult operation.StartPipelineExecutionAction for the StartPipelineExecution operation.UpdatePipelineAction for the UpdatePipeline operation.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StringgetActionName()Returns the name of this action.static CodepipelineActionsvalueOf(String name)Returns the enum constant of this type with the specified name.static CodepipelineActions[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AllCodepipelineActions
public static final CodepipelineActions AllCodepipelineActions
Represents any action executed on CodePipeline.
-
AcknowledgeJob
public static final CodepipelineActions AcknowledgeJob
Action for the AcknowledgeJob operation.
-
AcknowledgeThirdPartyJob
public static final CodepipelineActions AcknowledgeThirdPartyJob
Action for the AcknowledgeThirdPartyJob operation.
-
CreateCustomActionType
public static final CodepipelineActions CreateCustomActionType
Action for the CreateCustomActionType operation.
-
CreatePipeline
public static final CodepipelineActions CreatePipeline
Action for the CreatePipeline operation.
-
DeleteCustomActionType
public static final CodepipelineActions DeleteCustomActionType
Action for the DeleteCustomActionType operation.
-
DeletePipeline
public static final CodepipelineActions DeletePipeline
Action for the DeletePipeline operation.
-
DisableStageTransition
public static final CodepipelineActions DisableStageTransition
Action for the DisableStageTransition operation.
-
EnableStageTransition
public static final CodepipelineActions EnableStageTransition
Action for the EnableStageTransition operation.
-
GetJobDetails
public static final CodepipelineActions GetJobDetails
Action for the GetJobDetails operation.
-
GetPipeline
public static final CodepipelineActions GetPipeline
Action for the GetPipeline operation.
-
GetPipelineState
public static final CodepipelineActions GetPipelineState
Action for the GetPipelineState operation.
-
GetThirdPartyJobDetails
public static final CodepipelineActions GetThirdPartyJobDetails
Action for the GetThirdPartyJobDetails operation.
-
ListActionTypes
public static final CodepipelineActions ListActionTypes
Action for the ListActionTypes operation.
-
ListPipelines
public static final CodepipelineActions ListPipelines
Action for the ListPipelines operation.
-
PollForJobs
public static final CodepipelineActions PollForJobs
Action for the PollForJobs operation.
-
PollForThirdPartyJobs
public static final CodepipelineActions PollForThirdPartyJobs
Action for the PollForThirdPartyJobs operation.
-
PutActionRevision
public static final CodepipelineActions PutActionRevision
Action for the PutActionRevision operation.
-
PutJobFailureResult
public static final CodepipelineActions PutJobFailureResult
Action for the PutJobFailureResult operation.
-
PutJobSuccessResult
public static final CodepipelineActions PutJobSuccessResult
Action for the PutJobSuccessResult operation.
-
PutThirdPartyJobFailureResult
public static final CodepipelineActions PutThirdPartyJobFailureResult
Action for the PutThirdPartyJobFailureResult operation.
-
PutThirdPartyJobSuccessResult
public static final CodepipelineActions PutThirdPartyJobSuccessResult
Action for the PutThirdPartyJobSuccessResult operation.
-
StartPipelineExecution
public static final CodepipelineActions StartPipelineExecution
Action for the StartPipelineExecution operation.
-
UpdatePipeline
public static final CodepipelineActions UpdatePipeline
Action for the UpdatePipeline operation.
-
-
Method Detail
-
values
public static CodepipelineActions[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (CodepipelineActions c : CodepipelineActions.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CodepipelineActions valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
getActionName
public String getActionName()
Description copied from interface:ActionReturns the name of this action. For example, 'sqs:SendMessage' is the name corresponding to the SQS action that enables users to send a message to an SQS queue.- Specified by:
getActionNamein interfaceAction- Returns:
- The name of this action.
-
-