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

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

There is a newer version: 1.204.0
Show newest version
package software.amazon.awscdk.services.ecs;

/**
 * The ulimit settings to pass to the container.
 * 

* NOTE: Does not work for Windows containers. *

* 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.ecs.*;
 * Ulimit ulimit = Ulimit.builder()
 *         .hardLimit(123)
 *         .name(UlimitName.CORE)
 *         .softLimit(123)
 *         .build();
 * 
*/ @javax.annotation.Generated(value = "jsii-pacmak/1.52.1 (build 5ccc8f6)", date = "2022-01-20T19:50:05.694Z") @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.ecs.$Module.class, fqn = "@aws-cdk/aws-ecs.Ulimit") @software.amazon.jsii.Jsii.Proxy(Ulimit.Jsii$Proxy.class) @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public interface Ulimit extends software.amazon.jsii.JsiiSerializable { /** * The hard limit for the ulimit type. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull java.lang.Number getHardLimit(); /** * The type of the ulimit. *

* For more information, see UlimitName. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.ecs.UlimitName getName(); /** * The soft limit for the ulimit type. */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @org.jetbrains.annotations.NotNull java.lang.Number getSoftLimit(); /** * @return a {@link Builder} of {@link Ulimit} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) static Builder builder() { return new Builder(); } /** * A builder for {@link Ulimit} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public static final class Builder implements software.amazon.jsii.Builder { java.lang.Number hardLimit; software.amazon.awscdk.services.ecs.UlimitName name; java.lang.Number softLimit; /** * Sets the value of {@link Ulimit#getHardLimit} * @param hardLimit The hard limit for the ulimit type. This parameter is required. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder hardLimit(java.lang.Number hardLimit) { this.hardLimit = hardLimit; return this; } /** * Sets the value of {@link Ulimit#getName} * @param name The type of the ulimit. This parameter is required. * For more information, see UlimitName. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder name(software.amazon.awscdk.services.ecs.UlimitName name) { this.name = name; return this; } /** * Sets the value of {@link Ulimit#getSoftLimit} * @param softLimit The soft limit for the ulimit type. This parameter is required. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) public Builder softLimit(java.lang.Number softLimit) { this.softLimit = softLimit; return this; } /** * Builds the configured instance. * @return a new instance of {@link Ulimit} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @Override public Ulimit build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link Ulimit} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Stable) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements Ulimit { private final java.lang.Number hardLimit; private final software.amazon.awscdk.services.ecs.UlimitName name; private final java.lang.Number softLimit; /** * Constructor that initializes the object based on values retrieved from the JsiiObject. * @param objRef Reference to the JSII managed object. */ protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) { super(objRef); this.hardLimit = software.amazon.jsii.Kernel.get(this, "hardLimit", software.amazon.jsii.NativeType.forClass(java.lang.Number.class)); this.name = software.amazon.jsii.Kernel.get(this, "name", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.ecs.UlimitName.class)); this.softLimit = software.amazon.jsii.Kernel.get(this, "softLimit", software.amazon.jsii.NativeType.forClass(java.lang.Number.class)); } /** * Constructor that initializes the object based on literal property values passed by the {@link Builder}. */ protected Jsii$Proxy(final Builder builder) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); this.hardLimit = java.util.Objects.requireNonNull(builder.hardLimit, "hardLimit is required"); this.name = java.util.Objects.requireNonNull(builder.name, "name is required"); this.softLimit = java.util.Objects.requireNonNull(builder.softLimit, "softLimit is required"); } @Override public final java.lang.Number getHardLimit() { return this.hardLimit; } @Override public final software.amazon.awscdk.services.ecs.UlimitName getName() { return this.name; } @Override public final java.lang.Number getSoftLimit() { return this.softLimit; } @Override @software.amazon.jsii.Internal public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() { final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE; final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); data.set("hardLimit", om.valueToTree(this.getHardLimit())); data.set("name", om.valueToTree(this.getName())); data.set("softLimit", om.valueToTree(this.getSoftLimit())); final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); struct.set("fqn", om.valueToTree("@aws-cdk/aws-ecs.Ulimit")); struct.set("data", data); final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); obj.set("$jsii.struct", struct); return obj; } @Override public final boolean equals(final Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; Ulimit.Jsii$Proxy that = (Ulimit.Jsii$Proxy) o; if (!hardLimit.equals(that.hardLimit)) return false; if (!name.equals(that.name)) return false; return this.softLimit.equals(that.softLimit); } @Override public final int hashCode() { int result = this.hardLimit.hashCode(); result = 31 * result + (this.name.hashCode()); result = 31 * result + (this.softLimit.hashCode()); return result; } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy