Class EcrPublicSource

java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.apprunner.alpha.Source
software.amazon.awscdk.services.apprunner.alpha.EcrPublicSource
All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable

@Generated(value="jsii-pacmak/1.97.0 (build 729de35)", date="2024-04-24T21:00:39.145Z") @Stability(Experimental) public class EcrPublicSource extends Source
(experimental) Represents the service source from ECR Public.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.services.apprunner.alpha.*;
 Secret secret;
 EcrPublicSource ecrPublicSource = EcrPublicSource.Builder.create()
         .imageIdentifier("imageIdentifier")
         // the properties below are optional
         .imageConfiguration(ImageConfiguration.builder()
                 .environment(Map.of(
                         "environmentKey", "environment"))
                 .environmentSecrets(Map.of(
                         "environmentSecretsKey", secret))
                 .environmentVariables(Map.of(
                         "environmentVariablesKey", "environmentVariables"))
                 .port(123)
                 .startCommand("startCommand")
                 .build())
         .build();
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type
    Class
    Description
    static final class 
    (experimental) A fluent builder for EcrPublicSource.

    Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject

    software.amazon.jsii.JsiiObject.InitializationMode
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
     
     
    protected
    EcrPublicSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
     
    protected
    EcrPublicSource(software.amazon.jsii.JsiiObjectRef objRef)
     
  • Method Summary

    Modifier and Type
    Method
    Description
    bind(software.constructs.Construct _scope)
    (experimental) Called when the Job is initialized to allow this object to bind.

    Methods inherited from class software.amazon.awscdk.services.apprunner.alpha.Source

    fromAsset, fromEcr, fromEcrPublic, fromGitHub

    Methods inherited from class software.amazon.jsii.JsiiObject

    jsiiAsyncCall, jsiiAsyncCall, jsiiCall, jsiiCall, jsiiGet, jsiiGet, jsiiSet, jsiiStaticCall, jsiiStaticCall, jsiiStaticGet, jsiiStaticGet, jsiiStaticSet, jsiiStaticSet

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface software.amazon.jsii.JsiiSerializable

    $jsii$toJson
  • Constructor Details

    • EcrPublicSource

      protected EcrPublicSource(software.amazon.jsii.JsiiObjectRef objRef)
    • EcrPublicSource

      protected EcrPublicSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode)
    • EcrPublicSource

      @Stability(Experimental) public EcrPublicSource(@NotNull EcrPublicProps props)
      Parameters:
      props - This parameter is required.
  • Method Details

    • bind

      @Stability(Experimental) @NotNull public SourceConfig bind(@NotNull software.constructs.Construct _scope)
      (experimental) Called when the Job is initialized to allow this object to bind.

      Specified by:
      bind in class Source
      Parameters:
      _scope - This parameter is required.