Class JobCallingReusableWorkflow.Jsii$Proxy

    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      com.fasterxml.jackson.databind.JsonNode $jsii$toJson()  
      boolean equals​(Object o)  
      Object getConcurrency()
      (experimental) Concurrency ensures that only a single job or workflow using the same concurrency group will run at a time.
      String getIfValue()
      (experimental) You can use the if conditional to prevent a job from running unless a condition is met.
      String getName()
      (experimental) The name of the job displayed on GitHub.
      List<String> getNeeds()
      (experimental) Identifies any jobs that must complete successfully before this job will run.
      JobPermissions getPermissions()
      (experimental) You can modify the default permissions granted to the GITHUB_TOKEN, adding or removing access as required, so that you only allow the minimum required access.
      Object getSecrets()
      (experimental) When a job is used to call a reusable workflow, you can use secrets to provide a map of secrets that are passed to the called workflow.
      JobStrategy getStrategy()
      (experimental) A strategy creates a build matrix for your jobs.
      String getUses()
      (experimental) The location and version of a reusable workflow file to run as a job.
      Map<String,​Object> getWith()
      (experimental) When a job is used to call a reusable workflow, you can use with to provide a map of inputs that are passed to the called workflow.
      int hashCode()  
      • Methods inherited from class software.amazon.jsii.JsiiObject

        jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet
    • Constructor Detail

      • Jsii$Proxy

        protected Jsii$Proxy​(software.amazon.jsii.JsiiObjectRef objRef)
        Constructor that initializes the object based on values retrieved from the JsiiObject.
        Parameters:
        objRef - Reference to the JSII managed object.
    • Method Detail

      • getSecrets

        public final Object getSecrets()
        Description copied from interface: JobCallingReusableWorkflow
        (experimental) When a job is used to call a reusable workflow, you can use secrets to provide a map of secrets that are passed to the called workflow.

        Use the 'inherit' keyword to pass all the calling workflow's secrets to the called workflow

        Specified by:
        getSecrets in interface JobCallingReusableWorkflow
      • getWith

        public final Map<String,​Object> getWith()
        Description copied from interface: JobCallingReusableWorkflow
        (experimental) When a job is used to call a reusable workflow, you can use with to provide a map of inputs that are passed to the called workflow.

        Allowed expression contexts: github, and needs.

        Specified by:
        getWith in interface JobCallingReusableWorkflow
      • getConcurrency

        public final Object getConcurrency()
        Description copied from interface: CommonJobDefinition
        (experimental) Concurrency ensures that only a single job or workflow using the same concurrency group will run at a time.

        A concurrency group can be any string or expression. The expression can use any context except for the secrets context.

        Specified by:
        getConcurrency in interface CommonJobDefinition
      • getIfValue

        public final String getIfValue()
        Description copied from interface: CommonJobDefinition
        (experimental) You can use the if conditional to prevent a job from running unless a condition is met.

        You can use any supported context and expression to create a conditional.

        Specified by:
        getIfValue in interface CommonJobDefinition
      • getNeeds

        public final List<String> getNeeds()
        Description copied from interface: CommonJobDefinition
        (experimental) Identifies any jobs that must complete successfully before this job will run.

        It can be a string or array of strings. If a job fails, all jobs that need it are skipped unless the jobs use a conditional expression that causes the job to continue.

        Specified by:
        getNeeds in interface CommonJobDefinition
      • $jsii$toJson

        @Internal
        public com.fasterxml.jackson.databind.JsonNode $jsii$toJson()
        Specified by:
        $jsii$toJson in interface software.amazon.jsii.JsiiSerializable
      • hashCode

        public final int hashCode()
        Overrides:
        hashCode in class Object