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

software.amazon.awscdk.services.redshift.RotationMultiUserOptions Maven / Gradle / Ivy

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

/**
 * Options to add the multi user rotation.
 * 

* EXPERIMENTAL */ @javax.annotation.Generated(value = "jsii-pacmak/1.6.0 (build 248e75b)", date = "2020-06-04T00:02:28.474Z") @software.amazon.jsii.Jsii(module = software.amazon.awscdk.services.redshift.$Module.class, fqn = "@aws-cdk/aws-redshift.RotationMultiUserOptions") @software.amazon.jsii.Jsii.Proxy(RotationMultiUserOptions.Jsii$Proxy.class) @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public interface RotationMultiUserOptions extends software.amazon.jsii.JsiiSerializable { /** * The secret to rotate. *

* It must be a JSON string with the following format: *

*

     * {
     *    "engine": <required: database engine>,
     *    "host": <required: instance host name>,
     *    "username": <required: username>,
     *    "password": <required: password>,
     *    "dbname": <optional: database name>,
     *    "port": <optional: if not specified, default port will be used>,
     *    "masterarn": <required: the arn of the master secret which will be used to create users/change passwords>
     * }
     * 
*

* EXPERIMENTAL */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @org.jetbrains.annotations.NotNull software.amazon.awscdk.services.secretsmanager.ISecret getSecret(); /** * Specifies the number of days after the previous rotation before Secrets Manager triggers the next automatic rotation. *

* Default: Duration.days(30) *

* EXPERIMENTAL */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) default @org.jetbrains.annotations.Nullable software.amazon.awscdk.core.Duration getAutomaticallyAfter() { return null; } /** * @return a {@link Builder} of {@link RotationMultiUserOptions} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) static Builder builder() { return new Builder(); } /** * A builder for {@link RotationMultiUserOptions} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public static final class Builder implements software.amazon.jsii.Builder { private software.amazon.awscdk.services.secretsmanager.ISecret secret; private software.amazon.awscdk.core.Duration automaticallyAfter; /** * Sets the value of {@link RotationMultiUserOptions#getSecret} * @param secret The secret to rotate. This parameter is required. * It must be a JSON string with the following format: *

*

         *               {
         *                  "engine": <required: database engine>,
         *                  "host": <required: instance host name>,
         *                  "username": <required: username>,
         *                  "password": <required: password>,
         *                  "dbname": <optional: database name>,
         *                  "port": <optional: if not specified, default port will be used>,
         *                  "masterarn": <required: the arn of the master secret which will be used to create users/change passwords>
         *               }
         *               
* @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder secret(software.amazon.awscdk.services.secretsmanager.ISecret secret) { this.secret = secret; return this; } /** * Sets the value of {@link RotationMultiUserOptions#getAutomaticallyAfter} * @param automaticallyAfter Specifies the number of days after the previous rotation before Secrets Manager triggers the next automatic rotation. * @return {@code this} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) public Builder automaticallyAfter(software.amazon.awscdk.core.Duration automaticallyAfter) { this.automaticallyAfter = automaticallyAfter; return this; } /** * Builds the configured instance. * @return a new instance of {@link RotationMultiUserOptions} * @throws NullPointerException if any required attribute was not provided */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) @Override public RotationMultiUserOptions build() { return new Jsii$Proxy(secret, automaticallyAfter); } } /** * An implementation for {@link RotationMultiUserOptions} */ @software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental) final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements RotationMultiUserOptions { private final software.amazon.awscdk.services.secretsmanager.ISecret secret; private final software.amazon.awscdk.core.Duration automaticallyAfter; /** * 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.secret = this.jsiiGet("secret", software.amazon.awscdk.services.secretsmanager.ISecret.class); this.automaticallyAfter = this.jsiiGet("automaticallyAfter", software.amazon.awscdk.core.Duration.class); } /** * Constructor that initializes the object based on literal property values passed by the {@link Builder}. */ private Jsii$Proxy(final software.amazon.awscdk.services.secretsmanager.ISecret secret, final software.amazon.awscdk.core.Duration automaticallyAfter) { super(software.amazon.jsii.JsiiObject.InitializationMode.JSII); this.secret = java.util.Objects.requireNonNull(secret, "secret is required"); this.automaticallyAfter = automaticallyAfter; } @Override public software.amazon.awscdk.services.secretsmanager.ISecret getSecret() { return this.secret; } @Override public software.amazon.awscdk.core.Duration getAutomaticallyAfter() { return this.automaticallyAfter; } @Override 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("secret", om.valueToTree(this.getSecret())); if (this.getAutomaticallyAfter() != null) { data.set("automaticallyAfter", om.valueToTree(this.getAutomaticallyAfter())); } final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode(); struct.set("fqn", om.valueToTree("@aws-cdk/aws-redshift.RotationMultiUserOptions")); 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 boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; RotationMultiUserOptions.Jsii$Proxy that = (RotationMultiUserOptions.Jsii$Proxy) o; if (!secret.equals(that.secret)) return false; return this.automaticallyAfter != null ? this.automaticallyAfter.equals(that.automaticallyAfter) : that.automaticallyAfter == null; } @Override public int hashCode() { int result = this.secret.hashCode(); result = 31 * result + (this.automaticallyAfter != null ? this.automaticallyAfter.hashCode() : 0); return result; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy