com.aliyun.ros.cdk.alb.RuleProps Maven / Gradle / Ivy
Show all versions of ros-cdk-alb Show documentation
package com.aliyun.ros.cdk.alb;
/**
* Properties for defining a Rule
.
*
* See https://www.alibabacloud.com/help/ros/developer-reference/aliyun-alb-rule
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.85.0 (build 08ee592)", date = "2024-09-12T02:20:22.915Z")
@software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.alb.$Module.class, fqn = "@alicloud/ros-cdk-alb.RuleProps")
@software.amazon.jsii.Jsii.Proxy(RuleProps.Jsii$Proxy.class)
public interface RuleProps extends software.amazon.jsii.JsiiSerializable {
/**
* Property listenerId: The ID of the listener that is configured for the Application Load Balancer (ALB) instance.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getListenerId();
/**
* Property priority: The priority of the forwarding rule.
*
* Valid values: 1 to 10000. A lower value specifies a higher priority.
* Note The priority of each forwarding rule within a listener must be unique.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getPriority();
/**
* Property ruleActions: The actions of the forwarding rule.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getRuleActions();
/**
* Property ruleConditions: The conditions of the forwarding rule.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getRuleConditions();
/**
* Property ruleName: The name of the forwarding rule.
*
* The name must be 2 to 128 characters in length.
* It can contain letters, digits, periods (.), underscores (_), and hyphens (-). It
* must start with a letter.
*/
@org.jetbrains.annotations.NotNull java.lang.Object getRuleName();
/**
* Property direction: Rule direction.
*
* Valid values: Request or Response.
*/
default @org.jetbrains.annotations.Nullable java.lang.Object getDirection() {
return null;
}
/**
* @return a {@link Builder} of {@link RuleProps}
*/
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link RuleProps}
*/
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.Object listenerId;
java.lang.Object priority;
java.lang.Object ruleActions;
java.lang.Object ruleConditions;
java.lang.Object ruleName;
java.lang.Object direction;
/**
* Sets the value of {@link RuleProps#getListenerId}
* @param listenerId Property listenerId: The ID of the listener that is configured for the Application Load Balancer (ALB) instance. This parameter is required.
* @return {@code this}
*/
public Builder listenerId(java.lang.String listenerId) {
this.listenerId = listenerId;
return this;
}
/**
* Sets the value of {@link RuleProps#getListenerId}
* @param listenerId Property listenerId: The ID of the listener that is configured for the Application Load Balancer (ALB) instance. This parameter is required.
* @return {@code this}
*/
public Builder listenerId(com.aliyun.ros.cdk.core.IResolvable listenerId) {
this.listenerId = listenerId;
return this;
}
/**
* Sets the value of {@link RuleProps#getPriority}
* @param priority Property priority: The priority of the forwarding rule. This parameter is required.
* Valid values: 1 to 10000. A lower value specifies a higher priority.
* Note The priority of each forwarding rule within a listener must be unique.
* @return {@code this}
*/
public Builder priority(java.lang.Number priority) {
this.priority = priority;
return this;
}
/**
* Sets the value of {@link RuleProps#getPriority}
* @param priority Property priority: The priority of the forwarding rule. This parameter is required.
* Valid values: 1 to 10000. A lower value specifies a higher priority.
* Note The priority of each forwarding rule within a listener must be unique.
* @return {@code this}
*/
public Builder priority(com.aliyun.ros.cdk.core.IResolvable priority) {
this.priority = priority;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleActions}
* @param ruleActions Property ruleActions: The actions of the forwarding rule. This parameter is required.
* @return {@code this}
*/
public Builder ruleActions(com.aliyun.ros.cdk.core.IResolvable ruleActions) {
this.ruleActions = ruleActions;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleActions}
* @param ruleActions Property ruleActions: The actions of the forwarding rule. This parameter is required.
* @return {@code this}
*/
public Builder ruleActions(java.util.List extends java.lang.Object> ruleActions) {
this.ruleActions = ruleActions;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleConditions}
* @param ruleConditions Property ruleConditions: The conditions of the forwarding rule. This parameter is required.
* @return {@code this}
*/
public Builder ruleConditions(com.aliyun.ros.cdk.core.IResolvable ruleConditions) {
this.ruleConditions = ruleConditions;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleConditions}
* @param ruleConditions Property ruleConditions: The conditions of the forwarding rule. This parameter is required.
* @return {@code this}
*/
public Builder ruleConditions(java.util.List extends java.lang.Object> ruleConditions) {
this.ruleConditions = ruleConditions;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleName}
* @param ruleName Property ruleName: The name of the forwarding rule. This parameter is required.
* The name must be 2 to 128 characters in length.
* It can contain letters, digits, periods (.), underscores (_), and hyphens (-). It
* must start with a letter.
* @return {@code this}
*/
public Builder ruleName(java.lang.String ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* Sets the value of {@link RuleProps#getRuleName}
* @param ruleName Property ruleName: The name of the forwarding rule. This parameter is required.
* The name must be 2 to 128 characters in length.
* It can contain letters, digits, periods (.), underscores (_), and hyphens (-). It
* must start with a letter.
* @return {@code this}
*/
public Builder ruleName(com.aliyun.ros.cdk.core.IResolvable ruleName) {
this.ruleName = ruleName;
return this;
}
/**
* Sets the value of {@link RuleProps#getDirection}
* @param direction Property direction: Rule direction.
* Valid values: Request or Response.
* @return {@code this}
*/
public Builder direction(java.lang.String direction) {
this.direction = direction;
return this;
}
/**
* Sets the value of {@link RuleProps#getDirection}
* @param direction Property direction: Rule direction.
* Valid values: Request or Response.
* @return {@code this}
*/
public Builder direction(com.aliyun.ros.cdk.core.IResolvable direction) {
this.direction = direction;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link RuleProps}
* @throws NullPointerException if any required attribute was not provided
*/
@Override
public RuleProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link RuleProps}
*/
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements RuleProps {
private final java.lang.Object listenerId;
private final java.lang.Object priority;
private final java.lang.Object ruleActions;
private final java.lang.Object ruleConditions;
private final java.lang.Object ruleName;
private final java.lang.Object direction;
/**
* 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.listenerId = software.amazon.jsii.Kernel.get(this, "listenerId", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.priority = software.amazon.jsii.Kernel.get(this, "priority", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.ruleActions = software.amazon.jsii.Kernel.get(this, "ruleActions", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.ruleConditions = software.amazon.jsii.Kernel.get(this, "ruleConditions", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.ruleName = software.amazon.jsii.Kernel.get(this, "ruleName", software.amazon.jsii.NativeType.forClass(java.lang.Object.class));
this.direction = software.amazon.jsii.Kernel.get(this, "direction", software.amazon.jsii.NativeType.forClass(java.lang.Object.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.listenerId = java.util.Objects.requireNonNull(builder.listenerId, "listenerId is required");
this.priority = java.util.Objects.requireNonNull(builder.priority, "priority is required");
this.ruleActions = java.util.Objects.requireNonNull(builder.ruleActions, "ruleActions is required");
this.ruleConditions = java.util.Objects.requireNonNull(builder.ruleConditions, "ruleConditions is required");
this.ruleName = java.util.Objects.requireNonNull(builder.ruleName, "ruleName is required");
this.direction = builder.direction;
}
@Override
public final java.lang.Object getListenerId() {
return this.listenerId;
}
@Override
public final java.lang.Object getPriority() {
return this.priority;
}
@Override
public final java.lang.Object getRuleActions() {
return this.ruleActions;
}
@Override
public final java.lang.Object getRuleConditions() {
return this.ruleConditions;
}
@Override
public final java.lang.Object getRuleName() {
return this.ruleName;
}
@Override
public final java.lang.Object getDirection() {
return this.direction;
}
@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("listenerId", om.valueToTree(this.getListenerId()));
data.set("priority", om.valueToTree(this.getPriority()));
data.set("ruleActions", om.valueToTree(this.getRuleActions()));
data.set("ruleConditions", om.valueToTree(this.getRuleConditions()));
data.set("ruleName", om.valueToTree(this.getRuleName()));
if (this.getDirection() != null) {
data.set("direction", om.valueToTree(this.getDirection()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@alicloud/ros-cdk-alb.RuleProps"));
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;
RuleProps.Jsii$Proxy that = (RuleProps.Jsii$Proxy) o;
if (!listenerId.equals(that.listenerId)) return false;
if (!priority.equals(that.priority)) return false;
if (!ruleActions.equals(that.ruleActions)) return false;
if (!ruleConditions.equals(that.ruleConditions)) return false;
if (!ruleName.equals(that.ruleName)) return false;
return this.direction != null ? this.direction.equals(that.direction) : that.direction == null;
}
@Override
public final int hashCode() {
int result = this.listenerId.hashCode();
result = 31 * result + (this.priority.hashCode());
result = 31 * result + (this.ruleActions.hashCode());
result = 31 * result + (this.ruleConditions.hashCode());
result = 31 * result + (this.ruleName.hashCode());
result = 31 * result + (this.direction != null ? this.direction.hashCode() : 0);
return result;
}
}
}