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

software.amazon.awscdk.integtests.alpha.AssertionsProviderProps Maven / Gradle / Ivy

There is a newer version: 2.169.0-alpha.0
Show newest version
package software.amazon.awscdk.integtests.alpha;

/**
 * (experimental) Properties for defining an AssertionsProvider.
 * 

* Example: *

*

 * // The code below shows an example of how to instantiate this type.
 * // The values are placeholders you should change.
 * import software.amazon.awscdk.integtests.alpha.*;
 * import software.amazon.awscdk.services.logs.*;
 * AssertionsProviderProps assertionsProviderProps = AssertionsProviderProps.builder()
 *         .handler("handler")
 *         .logRetention(RetentionDays.ONE_DAY)
 *         .uuid("uuid")
 *         .build();
 * 
*/ @javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-18T22:17:05.820Z") @software.amazon.jsii.Jsii(module = software.amazon.awscdk.integtests.alpha.$Module.class, fqn = "@aws-cdk/integ-tests-alpha.AssertionsProviderProps") @software.amazon.jsii.Jsii.Proxy(AssertionsProviderProps.Jsii$Proxy.class) @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public interface AssertionsProviderProps extends software.amazon.jsii.JsiiSerializable, software.amazon.awscdk.integtests.alpha.LambdaFunctionProviderProps { /** * (experimental) This determines the uniqueness of each AssertionsProvider. *

* You should only need to provide something different here if you * know that you need a separate provider *

* Default: - the default uuid is used */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable java.lang.String getUuid() { return null; } /** * @return a {@link Builder} of {@link AssertionsProviderProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) static Builder builder() { return new Builder(); } /** * A builder for {@link AssertionsProviderProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { java.lang.String uuid; java.lang.String handler; software.amazon.awscdk.services.logs.RetentionDays logRetention; /** * Sets the value of {@link AssertionsProviderProps#getUuid} * @param uuid This determines the uniqueness of each AssertionsProvider. * You should only need to provide something different here if you * know that you need a separate provider * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder uuid(java.lang.String uuid) { this.uuid = uuid; return this; } /** * Sets the value of {@link AssertionsProviderProps#getHandler} * @param handler The handler to use for the lambda function. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder handler(java.lang.String handler) { this.handler = handler; return this; } /** * Sets the value of {@link AssertionsProviderProps#getLogRetention} * @param logRetention How long, in days, the log contents will be retained. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder logRetention(software.amazon.awscdk.services.logs.RetentionDays logRetention) { this.logRetention = logRetention; return this; } /** * Builds the configured instance. * @return a new instance of {@link AssertionsProviderProps} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public AssertionsProviderProps build() { return new Jsii$Proxy(this); } } /** * An implementation for {@link AssertionsProviderProps} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @software.amazon.jsii.Internal final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements AssertionsProviderProps { private final java.lang.String uuid; private final java.lang.String handler; private final software.amazon.awscdk.services.logs.RetentionDays logRetention; /** * 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.uuid = software.amazon.jsii.Kernel.get(this, "uuid", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.handler = software.amazon.jsii.Kernel.get(this, "handler", software.amazon.jsii.NativeType.forClass(java.lang.String.class)); this.logRetention = software.amazon.jsii.Kernel.get(this, "logRetention", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.services.logs.RetentionDays.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.uuid = builder.uuid; this.handler = builder.handler; this.logRetention = builder.logRetention; } @Override public final java.lang.String getUuid() { return this.uuid; } @Override public final java.lang.String getHandler() { return this.handler; } @Override public final software.amazon.awscdk.services.logs.RetentionDays getLogRetention() { return this.logRetention; } @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(); if (this.getUuid() != null) { data.set("uuid", om.valueToTree(this.getUuid())); } if (this.getHandler() != null) { data.set("handler", om.valueToTree(this.getHandler())); } if (this.getLogRetention() != null) { data.set("logRetention", om.valueToTree(this.getLogRetention())); } final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); struct.set("fqn", om.valueToTree("@aws-cdk/integ-tests-alpha.AssertionsProviderProps")); 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; AssertionsProviderProps.Jsii$Proxy that = (AssertionsProviderProps.Jsii$Proxy) o; if (this.uuid != null ? !this.uuid.equals(that.uuid) : that.uuid != null) return false; if (this.handler != null ? !this.handler.equals(that.handler) : that.handler != null) return false; return this.logRetention != null ? this.logRetention.equals(that.logRetention) : that.logRetention == null; } @Override public final int hashCode() { int result = this.uuid != null ? this.uuid.hashCode() : 0; result = 31 * result + (this.handler != null ? this.handler.hashCode() : 0); result = 31 * result + (this.logRetention != null ? this.logRetention.hashCode() : 0); return result; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy