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

software.amazon.awscdk.services.ecs.RepositoryImage Maven / Gradle / Ivy

package software.amazon.awscdk.services.ecs;

/**
 * An image hosted in a public or private repository.
 * 

* For images hosted in Amazon ECR, see * EcrImage. */ @javax.annotation.Generated(value = "jsii-pacmak/1.31.0 (build 6fa403d)", date = "2021-07-21T15:56:51.251Z") @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.ecs.$Module.class, fqn = "@aws-cdk/aws-ecs.RepositoryImage") public class RepositoryImage extends software.amazon.awscdk.services.ecs.ContainerImage { protected RepositoryImage(final software.amazon.jsii.JsiiObjectRef objRef) { super(objRef); } protected RepositoryImage(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) { super(initializationMode); } /** * Constructs a new instance of the RepositoryImage class. *

* @param imageName This parameter is required. * @param props */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public RepositoryImage(final @org.jetbrains.annotations.NotNull java.lang.String imageName, final @org.jetbrains.annotations.Nullable software.amazon.awscdk.services.ecs.RepositoryImageProps props) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(imageName, "imageName is required"), props }); } /** * Constructs a new instance of the RepositoryImage class. *

* @param imageName This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public RepositoryImage(final @org.jetbrains.annotations.NotNull java.lang.String imageName) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(imageName, "imageName is required") }); } /** * Called when the image is used by a ContainerDefinition. *

* @param scope This parameter is required. * @param containerDefinition This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ecs.ContainerImageConfig bind(final @org.jetbrains.annotations.NotNull software.amazon.awscdk.core.Construct scope, final @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ecs.ContainerDefinition containerDefinition) { return software.amazon.jsii.Kernel.call(this, "bind", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ecs.ContainerImageConfig.class), new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(containerDefinition, "containerDefinition is required") }); } /** * A fluent builder for {@link software.amazon.awscdk.services.ecs.RepositoryImage}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static final class Builder implements software.amazon.jsii.Builder { /** * @return a new instance of {@link Builder}. * @param imageName This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static Builder create(final java.lang.String imageName) { return new Builder(imageName); } private final java.lang.String imageName; private software.amazon.awscdk.services.ecs.RepositoryImageProps.Builder props; private Builder(final java.lang.String imageName) { this.imageName = imageName; } /** * The secret to expose to the container that contains the credentials for the image repository. *

* The supported value is the full ARN of an AWS Secrets Manager secret. *

* @return {@code this} * @param credentials The secret to expose to the container that contains the credentials for the image repository. This parameter is required. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder credentials(final software.amazon.awscdk.services.secretsmanager.ISecret credentials) { this.props().credentials(credentials); return this; } /** * @returns a newly built instance of {@link software.amazon.awscdk.services.ecs.RepositoryImage}. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public software.amazon.awscdk.services.ecs.RepositoryImage build() { return new software.amazon.awscdk.services.ecs.RepositoryImage( this.imageName, this.props != null ? this.props.build() : null ); } private software.amazon.awscdk.services.ecs.RepositoryImageProps.Builder props() { if (this.props == null) { this.props = new software.amazon.awscdk.services.ecs.RepositoryImageProps.Builder(); } return this.props; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy