io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationProps Maven / Gradle / Ivy
package io.github.cdklabs.cdk.amazonmq;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.102.0 (build e354887)", date = "2024-08-08T22:30:31.706Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.amazonmq.$Module.class, fqn = "@cdklabs/cdk-amazonmq.ActiveMqBrokerConfigurationProps")
@software.amazon.jsii.Jsii.Proxy(ActiveMqBrokerConfigurationProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface ActiveMqBrokerConfigurationProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationOptions {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.amazonmq.ActiveMqAuthenticationStrategy getAuthenticationStrategy() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerEngineVersion getEngineVersion() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.String getName() {
return null;
}
/**
* @return a {@link Builder} of {@link ActiveMqBrokerConfigurationProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ActiveMqBrokerConfigurationProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
io.github.cdklabs.cdk.amazonmq.ActiveMqAuthenticationStrategy authenticationStrategy;
io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerEngineVersion engineVersion;
java.lang.String name;
io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationDefinition definition;
java.lang.String description;
/**
* Sets the value of {@link ActiveMqBrokerConfigurationProps#getAuthenticationStrategy}
* @param authenticationStrategy the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder authenticationStrategy(io.github.cdklabs.cdk.amazonmq.ActiveMqAuthenticationStrategy authenticationStrategy) {
this.authenticationStrategy = authenticationStrategy;
return this;
}
/**
* Sets the value of {@link ActiveMqBrokerConfigurationProps#getEngineVersion}
* @param engineVersion the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder engineVersion(io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerEngineVersion engineVersion) {
this.engineVersion = engineVersion;
return this;
}
/**
* Sets the value of {@link ActiveMqBrokerConfigurationProps#getName}
* @param name the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder name(java.lang.String name) {
this.name = name;
return this;
}
/**
* Sets the value of {@link ActiveMqBrokerConfigurationProps#getDefinition}
* @param definition the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder definition(io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationDefinition definition) {
this.definition = definition;
return this;
}
/**
* Sets the value of {@link ActiveMqBrokerConfigurationProps#getDescription}
* @param description the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder description(java.lang.String description) {
this.description = description;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ActiveMqBrokerConfigurationProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public ActiveMqBrokerConfigurationProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ActiveMqBrokerConfigurationProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ActiveMqBrokerConfigurationProps {
private final io.github.cdklabs.cdk.amazonmq.ActiveMqAuthenticationStrategy authenticationStrategy;
private final io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerEngineVersion engineVersion;
private final java.lang.String name;
private final io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationDefinition definition;
private final java.lang.String description;
/**
* 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.authenticationStrategy = software.amazon.jsii.Kernel.get(this, "authenticationStrategy", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.amazonmq.ActiveMqAuthenticationStrategy.class));
this.engineVersion = software.amazon.jsii.Kernel.get(this, "engineVersion", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerEngineVersion.class));
this.name = software.amazon.jsii.Kernel.get(this, "name", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.definition = software.amazon.jsii.Kernel.get(this, "definition", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationDefinition.class));
this.description = software.amazon.jsii.Kernel.get(this, "description", software.amazon.jsii.NativeType.forClass(java.lang.String.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.authenticationStrategy = builder.authenticationStrategy;
this.engineVersion = builder.engineVersion;
this.name = builder.name;
this.definition = java.util.Objects.requireNonNull(builder.definition, "definition is required");
this.description = builder.description;
}
@Override
public final io.github.cdklabs.cdk.amazonmq.ActiveMqAuthenticationStrategy getAuthenticationStrategy() {
return this.authenticationStrategy;
}
@Override
public final io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerEngineVersion getEngineVersion() {
return this.engineVersion;
}
@Override
public final java.lang.String getName() {
return this.name;
}
@Override
public final io.github.cdklabs.cdk.amazonmq.ActiveMqBrokerConfigurationDefinition getDefinition() {
return this.definition;
}
@Override
public final java.lang.String getDescription() {
return this.description;
}
@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.getAuthenticationStrategy() != null) {
data.set("authenticationStrategy", om.valueToTree(this.getAuthenticationStrategy()));
}
if (this.getEngineVersion() != null) {
data.set("engineVersion", om.valueToTree(this.getEngineVersion()));
}
if (this.getName() != null) {
data.set("name", om.valueToTree(this.getName()));
}
data.set("definition", om.valueToTree(this.getDefinition()));
if (this.getDescription() != null) {
data.set("description", om.valueToTree(this.getDescription()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-amazonmq.ActiveMqBrokerConfigurationProps"));
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;
ActiveMqBrokerConfigurationProps.Jsii$Proxy that = (ActiveMqBrokerConfigurationProps.Jsii$Proxy) o;
if (this.authenticationStrategy != null ? !this.authenticationStrategy.equals(that.authenticationStrategy) : that.authenticationStrategy != null) return false;
if (this.engineVersion != null ? !this.engineVersion.equals(that.engineVersion) : that.engineVersion != null) return false;
if (this.name != null ? !this.name.equals(that.name) : that.name != null) return false;
if (!definition.equals(that.definition)) return false;
return this.description != null ? this.description.equals(that.description) : that.description == null;
}
@Override
public final int hashCode() {
int result = this.authenticationStrategy != null ? this.authenticationStrategy.hashCode() : 0;
result = 31 * result + (this.engineVersion != null ? this.engineVersion.hashCode() : 0);
result = 31 * result + (this.name != null ? this.name.hashCode() : 0);
result = 31 * result + (this.definition.hashCode());
result = 31 * result + (this.description != null ? this.description.hashCode() : 0);
return result;
}
}
}