All Downloads are FREE. Search and download functionalities are using the official Maven repository.

software.amazon.awscdk.services.apprunner.alpha.EcrSource Maven / Gradle / Ivy

There is a newer version: 2.173.2-alpha.0
Show newest version
package software.amazon.awscdk.services.apprunner.alpha;

/**
 * (experimental) Represents the service source from ECR.
 */
@javax.annotation.Generated(value = "jsii-pacmak/1.40.0 (build 9713b9d)", date = "2021-10-27T10:32:43.151Z")
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.apprunner.alpha.$Module.class, fqn = "@aws-cdk/aws-apprunner-alpha.EcrSource")
public class EcrSource extends software.amazon.awscdk.services.apprunner.alpha.Source {

    protected EcrSource(final software.amazon.jsii.JsiiObjectRef objRef) {
        super(objRef);
    }

    protected EcrSource(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
        super(initializationMode);
    }

    /**
     * @param props This parameter is required.
     */
    @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
    public EcrSource(final @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.apprunner.alpha.EcrProps props) {
        super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
        software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(props, "props is required") });
    }

    /**
     * (experimental) Called when the Job is initialized to allow this object to bind.
     * 

* @param _scope This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.apprunner.alpha.SourceConfig bind(final @org.jetbrains.annotations.NotNull software.constructs.Construct _scope) { return software.amazon.jsii.Kernel.call(this, "bind", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.apprunner.alpha.SourceConfig.class), new Object[] { java.util.Objects.requireNonNull(_scope, "_scope is required") }); } /** * (experimental) A fluent builder for {@link software.amazon.awscdk.services.apprunner.alpha.EcrSource}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { /** * @return a new instance of {@link Builder}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static Builder create() { return new Builder(); } private final software.amazon.awscdk.services.apprunner.alpha.EcrProps.Builder props; private Builder() { this.props = new software.amazon.awscdk.services.apprunner.alpha.EcrProps.Builder(); } /** * (experimental) Represents the ECR repository. *

* @return {@code this} * @param repository Represents the ECR repository. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder repository(final software.amazon.awscdk.services.ecr.IRepository repository) { this.props.repository(repository); return this; } /** * (experimental) The image configuration for the image from ECR. *

* Default: - no image configuration will be passed. The default `port` will be 8080. *

* @return {@code this} * @see https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apprunner-service-imageconfiguration.html#cfn-apprunner-service-imageconfiguration-port * @param imageConfiguration The image configuration for the image from ECR. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder imageConfiguration(final software.amazon.awscdk.services.apprunner.alpha.ImageConfiguration imageConfiguration) { this.props.imageConfiguration(imageConfiguration); return this; } /** * (experimental) Image tag. *

* Default: - 'latest' *

* @return {@code this} * @param tag Image tag. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder tag(final java.lang.String tag) { this.props.tag(tag); return this; } /** * @returns a newly built instance of {@link software.amazon.awscdk.services.apprunner.alpha.EcrSource}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public software.amazon.awscdk.services.apprunner.alpha.EcrSource build() { return new software.amazon.awscdk.services.apprunner.alpha.EcrSource( this.props.build() ); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy