Class SystemMediaWorkflow.Builder

    • Constructor Detail

      • Builder

        public Builder()
    • Method Detail

      • name

        public SystemMediaWorkflow.Builder name​(String name)
        System provided unique identifier for this static media workflow.
        Parameters:
        name - the value to set
        Returns:
        this builder
      • description

        public SystemMediaWorkflow.Builder description​(String description)
        Description of this workflow’s processing and how that processing can be customized by specifying parameter values.
        Parameters:
        description - the value to set
        Returns:
        this builder
      • parameters

        public SystemMediaWorkflow.Builder parameters​(Map<String,​Object> parameters)
        JSON object representing named parameters and their default values that can be referenced throughout this workflow.

        The values declared here can be overridden by the MediaWorkflowConfigurations or parameters supplied when creating MediaWorkflowJobs from this MediaWorkflow.

        Parameters:
        parameters - the value to set
        Returns:
        this builder
      • tasks

        public SystemMediaWorkflow.Builder tasks​(List<MediaWorkflowTask> tasks)
        The processing to be done in this workflow.

        Each key of the MediaWorkflowTasks in this array is unique within the array. The order of the items is preserved from the order of the tasks array in CreateMediaWorkflowDetails or UpdateMediaWorkflowDetails.

        Parameters:
        tasks - the value to set
        Returns:
        this builder