Class EcrSource
java.lang.Object
software.amazon.jsii.JsiiObject
software.amazon.awscdk.services.apprunner.alpha.Source
software.amazon.awscdk.services.apprunner.alpha.EcrSource
- All Implemented Interfaces:
software.amazon.jsii.JsiiSerializable
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-12-27T17:02:11.981Z")
@Stability(Experimental)
public class EcrSource
extends Source
(experimental) Represents the service source from ECR.
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.*; import software.amazon.awscdk.services.ecr.*; Repository repository; Secret secret; EcrSource ecrSource = EcrSource.Builder.create() .repository(repository) // 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()) .tag("tag") .tagOrDigest("tagOrDigest") .build();
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
(experimental) A fluent builder forEcrSource
.Nested classes/interfaces inherited from class software.amazon.jsii.JsiiObject
software.amazon.jsii.JsiiObject.InitializationMode
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbind
(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
-
EcrSource
protected EcrSource(software.amazon.jsii.JsiiObjectRef objRef) -
EcrSource
protected EcrSource(software.amazon.jsii.JsiiObject.InitializationMode initializationMode) -
EcrSource
- 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.
-