io.github.cdklabs.cdk.amazonmq.ActiveMqUser 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.773Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.amazonmq.$Module.class, fqn = "@cdklabs/cdk-amazonmq.ActiveMqUser")
@software.amazon.jsii.Jsii.Proxy(ActiveMqUser.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface ActiveMqUser extends software.amazon.jsii.JsiiSerializable {
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull software.amazon.awscdk.SecretValue getPassword();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getUsername();
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.util.List getGroups() {
return null;
}
/**
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable java.lang.Boolean getHasConsoleAccess() {
return null;
}
/**
* @return a {@link Builder} of {@link ActiveMqUser}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link ActiveMqUser}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
software.amazon.awscdk.SecretValue password;
java.lang.String username;
java.util.List groups;
java.lang.Boolean hasConsoleAccess;
/**
* Sets the value of {@link ActiveMqUser#getPassword}
* @param password the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder password(software.amazon.awscdk.SecretValue password) {
this.password = password;
return this;
}
/**
* Sets the value of {@link ActiveMqUser#getUsername}
* @param username the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder username(java.lang.String username) {
this.username = username;
return this;
}
/**
* Sets the value of {@link ActiveMqUser#getGroups}
* @param groups the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder groups(java.util.List groups) {
this.groups = groups;
return this;
}
/**
* Sets the value of {@link ActiveMqUser#getHasConsoleAccess}
* @param hasConsoleAccess the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder hasConsoleAccess(java.lang.Boolean hasConsoleAccess) {
this.hasConsoleAccess = hasConsoleAccess;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link ActiveMqUser}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public ActiveMqUser build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link ActiveMqUser}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements ActiveMqUser {
private final software.amazon.awscdk.SecretValue password;
private final java.lang.String username;
private final java.util.List groups;
private final java.lang.Boolean hasConsoleAccess;
/**
* 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.password = software.amazon.jsii.Kernel.get(this, "password", software.amazon.jsii.NativeType.forClass(software.amazon.awscdk.SecretValue.class));
this.username = software.amazon.jsii.Kernel.get(this, "username", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.groups = software.amazon.jsii.Kernel.get(this, "groups", software.amazon.jsii.NativeType.listOf(software.amazon.jsii.NativeType.forClass(java.lang.String.class)));
this.hasConsoleAccess = software.amazon.jsii.Kernel.get(this, "hasConsoleAccess", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.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.password = java.util.Objects.requireNonNull(builder.password, "password is required");
this.username = java.util.Objects.requireNonNull(builder.username, "username is required");
this.groups = builder.groups;
this.hasConsoleAccess = builder.hasConsoleAccess;
}
@Override
public final software.amazon.awscdk.SecretValue getPassword() {
return this.password;
}
@Override
public final java.lang.String getUsername() {
return this.username;
}
@Override
public final java.util.List getGroups() {
return this.groups;
}
@Override
public final java.lang.Boolean getHasConsoleAccess() {
return this.hasConsoleAccess;
}
@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("password", om.valueToTree(this.getPassword()));
data.set("username", om.valueToTree(this.getUsername()));
if (this.getGroups() != null) {
data.set("groups", om.valueToTree(this.getGroups()));
}
if (this.getHasConsoleAccess() != null) {
data.set("hasConsoleAccess", om.valueToTree(this.getHasConsoleAccess()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-amazonmq.ActiveMqUser"));
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;
ActiveMqUser.Jsii$Proxy that = (ActiveMqUser.Jsii$Proxy) o;
if (!password.equals(that.password)) return false;
if (!username.equals(that.username)) return false;
if (this.groups != null ? !this.groups.equals(that.groups) : that.groups != null) return false;
return this.hasConsoleAccess != null ? this.hasConsoleAccess.equals(that.hasConsoleAccess) : that.hasConsoleAccess == null;
}
@Override
public final int hashCode() {
int result = this.password.hashCode();
result = 31 * result + (this.username.hashCode());
result = 31 * result + (this.groups != null ? this.groups.hashCode() : 0);
result = 31 * result + (this.hasConsoleAccess != null ? this.hasConsoleAccess.hashCode() : 0);
return result;
}
}
}