Enum CodepipelineActions

    • 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 name
        NullPointerException - if the argument is null
      • getActionName

        public String getActionName()
        Description copied from interface: Action
        Returns 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:
        getActionName in interface Action
        Returns:
        The name of this action.