Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
package io.github.cdklabs.cdkmonitoringconstructs;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.93.0 (build 1706ca5)", date = "2024-01-08T00:34:46.680Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdkmonitoringconstructs.$Module.class, fqn = "cdk-monitoring-constructs.KinesisFirehoseMonitoringProps")
@software.amazon.jsii.Jsii.Proxy(KinesisFirehoseMonitoringProps.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface KinesisFirehoseMonitoringProps extends software.amazon.jsii.JsiiSerializable, io.github.cdklabs.cdkmonitoringconstructs.KinesisFirehoseMetricFactoryProps, io.github.cdklabs.cdkmonitoringconstructs.KinesisFirehoseMonitoringOptions {
/**
* @return a {@link Builder} of {@link KinesisFirehoseMonitoringProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link KinesisFirehoseMonitoringProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String deliveryStreamName;
java.util.Map addIncomingBytesExceedThresholdAlarm;
java.util.Map addIncomingPutRequestsExceedThresholdAlarm;
java.util.Map addIncomingRecordsExceedThresholdAlarm;
java.util.Map addRecordsThrottledAlarm;
io.github.cdklabs.cdkmonitoringconstructs.IAlarmConsumer useCreatedAlarms;
java.lang.String alarmFriendlyName;
java.lang.String humanReadableName;
java.lang.String localAlarmNamePrefixOverride;
java.lang.Boolean addToAlarmDashboard;
java.lang.Boolean addToDetailDashboard;
java.lang.Boolean addToSummaryDashboard;
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getDeliveryStreamName}
* @param deliveryStreamName the value to be set. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder deliveryStreamName(java.lang.String deliveryStreamName) {
this.deliveryStreamName = deliveryStreamName;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddIncomingBytesExceedThresholdAlarm}
* @param addIncomingBytesExceedThresholdAlarm the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder addIncomingBytesExceedThresholdAlarm(java.util.Map addIncomingBytesExceedThresholdAlarm) {
this.addIncomingBytesExceedThresholdAlarm = (java.util.Map)addIncomingBytesExceedThresholdAlarm;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddIncomingPutRequestsExceedThresholdAlarm}
* @param addIncomingPutRequestsExceedThresholdAlarm the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder addIncomingPutRequestsExceedThresholdAlarm(java.util.Map addIncomingPutRequestsExceedThresholdAlarm) {
this.addIncomingPutRequestsExceedThresholdAlarm = (java.util.Map)addIncomingPutRequestsExceedThresholdAlarm;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddIncomingRecordsExceedThresholdAlarm}
* @param addIncomingRecordsExceedThresholdAlarm the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder addIncomingRecordsExceedThresholdAlarm(java.util.Map addIncomingRecordsExceedThresholdAlarm) {
this.addIncomingRecordsExceedThresholdAlarm = (java.util.Map)addIncomingRecordsExceedThresholdAlarm;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddRecordsThrottledAlarm}
* @param addRecordsThrottledAlarm the value to be set.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@SuppressWarnings("unchecked")
public Builder addRecordsThrottledAlarm(java.util.Map addRecordsThrottledAlarm) {
this.addRecordsThrottledAlarm = (java.util.Map)addRecordsThrottledAlarm;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getUseCreatedAlarms}
* @param useCreatedAlarms Calls provided function to process all alarms created.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder useCreatedAlarms(io.github.cdklabs.cdkmonitoringconstructs.IAlarmConsumer useCreatedAlarms) {
this.useCreatedAlarms = useCreatedAlarms;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAlarmFriendlyName}
* @param alarmFriendlyName Plain name, used in naming alarms.
* This unique among other resources, and respect the AWS CDK restriction posed on alarm names.
* The length must be 1 - 255 characters and although the validation rules are undocumented, we recommend using ASCII and hyphens.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder alarmFriendlyName(java.lang.String alarmFriendlyName) {
this.alarmFriendlyName = alarmFriendlyName;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getHumanReadableName}
* @param humanReadableName Human-readable name is a freeform string, used as a caption or description.
* There are no limitations on what it can be.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder humanReadableName(java.lang.String humanReadableName) {
this.humanReadableName = humanReadableName;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getLocalAlarmNamePrefixOverride}
* @param localAlarmNamePrefixOverride If this is defined, the local alarm name prefix used in naming alarms for the construct will be set to this value.
* The length must be 1 - 255 characters and although the validation rules are undocumented, we recommend using ASCII and hyphens.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder localAlarmNamePrefixOverride(java.lang.String localAlarmNamePrefixOverride) {
this.localAlarmNamePrefixOverride = localAlarmNamePrefixOverride;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddToAlarmDashboard}
* @param addToAlarmDashboard Flag indicating if the widgets should be added to alarm dashboard.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder addToAlarmDashboard(java.lang.Boolean addToAlarmDashboard) {
this.addToAlarmDashboard = addToAlarmDashboard;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddToDetailDashboard}
* @param addToDetailDashboard Flag indicating if the widgets should be added to detailed dashboard.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder addToDetailDashboard(java.lang.Boolean addToDetailDashboard) {
this.addToDetailDashboard = addToDetailDashboard;
return this;
}
/**
* Sets the value of {@link KinesisFirehoseMonitoringProps#getAddToSummaryDashboard}
* @param addToSummaryDashboard Flag indicating if the widgets should be added to summary dashboard.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder addToSummaryDashboard(java.lang.Boolean addToSummaryDashboard) {
this.addToSummaryDashboard = addToSummaryDashboard;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link KinesisFirehoseMonitoringProps}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public KinesisFirehoseMonitoringProps build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link KinesisFirehoseMonitoringProps}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements KinesisFirehoseMonitoringProps {
private final java.lang.String deliveryStreamName;
private final java.util.Map addIncomingBytesExceedThresholdAlarm;
private final java.util.Map addIncomingPutRequestsExceedThresholdAlarm;
private final java.util.Map addIncomingRecordsExceedThresholdAlarm;
private final java.util.Map addRecordsThrottledAlarm;
private final io.github.cdklabs.cdkmonitoringconstructs.IAlarmConsumer useCreatedAlarms;
private final java.lang.String alarmFriendlyName;
private final java.lang.String humanReadableName;
private final java.lang.String localAlarmNamePrefixOverride;
private final java.lang.Boolean addToAlarmDashboard;
private final java.lang.Boolean addToDetailDashboard;
private final java.lang.Boolean addToSummaryDashboard;
/**
* 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.deliveryStreamName = software.amazon.jsii.Kernel.get(this, "deliveryStreamName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.addIncomingBytesExceedThresholdAlarm = software.amazon.jsii.Kernel.get(this, "addIncomingBytesExceedThresholdAlarm", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdkmonitoringconstructs.FirehoseStreamLimitThreshold.class)));
this.addIncomingPutRequestsExceedThresholdAlarm = software.amazon.jsii.Kernel.get(this, "addIncomingPutRequestsExceedThresholdAlarm", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdkmonitoringconstructs.FirehoseStreamLimitThreshold.class)));
this.addIncomingRecordsExceedThresholdAlarm = software.amazon.jsii.Kernel.get(this, "addIncomingRecordsExceedThresholdAlarm", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdkmonitoringconstructs.FirehoseStreamLimitThreshold.class)));
this.addRecordsThrottledAlarm = software.amazon.jsii.Kernel.get(this, "addRecordsThrottledAlarm", software.amazon.jsii.NativeType.mapOf(software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdkmonitoringconstructs.RecordsThrottledThreshold.class)));
this.useCreatedAlarms = software.amazon.jsii.Kernel.get(this, "useCreatedAlarms", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdkmonitoringconstructs.IAlarmConsumer.class));
this.alarmFriendlyName = software.amazon.jsii.Kernel.get(this, "alarmFriendlyName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.humanReadableName = software.amazon.jsii.Kernel.get(this, "humanReadableName", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.localAlarmNamePrefixOverride = software.amazon.jsii.Kernel.get(this, "localAlarmNamePrefixOverride", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.addToAlarmDashboard = software.amazon.jsii.Kernel.get(this, "addToAlarmDashboard", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
this.addToDetailDashboard = software.amazon.jsii.Kernel.get(this, "addToDetailDashboard", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
this.addToSummaryDashboard = software.amazon.jsii.Kernel.get(this, "addToSummaryDashboard", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
@SuppressWarnings("unchecked")
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.deliveryStreamName = java.util.Objects.requireNonNull(builder.deliveryStreamName, "deliveryStreamName is required");
this.addIncomingBytesExceedThresholdAlarm = (java.util.Map)builder.addIncomingBytesExceedThresholdAlarm;
this.addIncomingPutRequestsExceedThresholdAlarm = (java.util.Map)builder.addIncomingPutRequestsExceedThresholdAlarm;
this.addIncomingRecordsExceedThresholdAlarm = (java.util.Map)builder.addIncomingRecordsExceedThresholdAlarm;
this.addRecordsThrottledAlarm = (java.util.Map)builder.addRecordsThrottledAlarm;
this.useCreatedAlarms = builder.useCreatedAlarms;
this.alarmFriendlyName = builder.alarmFriendlyName;
this.humanReadableName = builder.humanReadableName;
this.localAlarmNamePrefixOverride = builder.localAlarmNamePrefixOverride;
this.addToAlarmDashboard = builder.addToAlarmDashboard;
this.addToDetailDashboard = builder.addToDetailDashboard;
this.addToSummaryDashboard = builder.addToSummaryDashboard;
}
@Override
public final java.lang.String getDeliveryStreamName() {
return this.deliveryStreamName;
}
@Override
public final java.util.Map getAddIncomingBytesExceedThresholdAlarm() {
return this.addIncomingBytesExceedThresholdAlarm;
}
@Override
public final java.util.Map getAddIncomingPutRequestsExceedThresholdAlarm() {
return this.addIncomingPutRequestsExceedThresholdAlarm;
}
@Override
public final java.util.Map getAddIncomingRecordsExceedThresholdAlarm() {
return this.addIncomingRecordsExceedThresholdAlarm;
}
@Override
public final java.util.Map getAddRecordsThrottledAlarm() {
return this.addRecordsThrottledAlarm;
}
@Override
public final io.github.cdklabs.cdkmonitoringconstructs.IAlarmConsumer getUseCreatedAlarms() {
return this.useCreatedAlarms;
}
@Override
public final java.lang.String getAlarmFriendlyName() {
return this.alarmFriendlyName;
}
@Override
public final java.lang.String getHumanReadableName() {
return this.humanReadableName;
}
@Override
public final java.lang.String getLocalAlarmNamePrefixOverride() {
return this.localAlarmNamePrefixOverride;
}
@Override
public final java.lang.Boolean getAddToAlarmDashboard() {
return this.addToAlarmDashboard;
}
@Override
public final java.lang.Boolean getAddToDetailDashboard() {
return this.addToDetailDashboard;
}
@Override
public final java.lang.Boolean getAddToSummaryDashboard() {
return this.addToSummaryDashboard;
}
@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("deliveryStreamName", om.valueToTree(this.getDeliveryStreamName()));
if (this.getAddIncomingBytesExceedThresholdAlarm() != null) {
data.set("addIncomingBytesExceedThresholdAlarm", om.valueToTree(this.getAddIncomingBytesExceedThresholdAlarm()));
}
if (this.getAddIncomingPutRequestsExceedThresholdAlarm() != null) {
data.set("addIncomingPutRequestsExceedThresholdAlarm", om.valueToTree(this.getAddIncomingPutRequestsExceedThresholdAlarm()));
}
if (this.getAddIncomingRecordsExceedThresholdAlarm() != null) {
data.set("addIncomingRecordsExceedThresholdAlarm", om.valueToTree(this.getAddIncomingRecordsExceedThresholdAlarm()));
}
if (this.getAddRecordsThrottledAlarm() != null) {
data.set("addRecordsThrottledAlarm", om.valueToTree(this.getAddRecordsThrottledAlarm()));
}
if (this.getUseCreatedAlarms() != null) {
data.set("useCreatedAlarms", om.valueToTree(this.getUseCreatedAlarms()));
}
if (this.getAlarmFriendlyName() != null) {
data.set("alarmFriendlyName", om.valueToTree(this.getAlarmFriendlyName()));
}
if (this.getHumanReadableName() != null) {
data.set("humanReadableName", om.valueToTree(this.getHumanReadableName()));
}
if (this.getLocalAlarmNamePrefixOverride() != null) {
data.set("localAlarmNamePrefixOverride", om.valueToTree(this.getLocalAlarmNamePrefixOverride()));
}
if (this.getAddToAlarmDashboard() != null) {
data.set("addToAlarmDashboard", om.valueToTree(this.getAddToAlarmDashboard()));
}
if (this.getAddToDetailDashboard() != null) {
data.set("addToDetailDashboard", om.valueToTree(this.getAddToDetailDashboard()));
}
if (this.getAddToSummaryDashboard() != null) {
data.set("addToSummaryDashboard", om.valueToTree(this.getAddToSummaryDashboard()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("cdk-monitoring-constructs.KinesisFirehoseMonitoringProps"));
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;
KinesisFirehoseMonitoringProps.Jsii$Proxy that = (KinesisFirehoseMonitoringProps.Jsii$Proxy) o;
if (!deliveryStreamName.equals(that.deliveryStreamName)) return false;
if (this.addIncomingBytesExceedThresholdAlarm != null ? !this.addIncomingBytesExceedThresholdAlarm.equals(that.addIncomingBytesExceedThresholdAlarm) : that.addIncomingBytesExceedThresholdAlarm != null) return false;
if (this.addIncomingPutRequestsExceedThresholdAlarm != null ? !this.addIncomingPutRequestsExceedThresholdAlarm.equals(that.addIncomingPutRequestsExceedThresholdAlarm) : that.addIncomingPutRequestsExceedThresholdAlarm != null) return false;
if (this.addIncomingRecordsExceedThresholdAlarm != null ? !this.addIncomingRecordsExceedThresholdAlarm.equals(that.addIncomingRecordsExceedThresholdAlarm) : that.addIncomingRecordsExceedThresholdAlarm != null) return false;
if (this.addRecordsThrottledAlarm != null ? !this.addRecordsThrottledAlarm.equals(that.addRecordsThrottledAlarm) : that.addRecordsThrottledAlarm != null) return false;
if (this.useCreatedAlarms != null ? !this.useCreatedAlarms.equals(that.useCreatedAlarms) : that.useCreatedAlarms != null) return false;
if (this.alarmFriendlyName != null ? !this.alarmFriendlyName.equals(that.alarmFriendlyName) : that.alarmFriendlyName != null) return false;
if (this.humanReadableName != null ? !this.humanReadableName.equals(that.humanReadableName) : that.humanReadableName != null) return false;
if (this.localAlarmNamePrefixOverride != null ? !this.localAlarmNamePrefixOverride.equals(that.localAlarmNamePrefixOverride) : that.localAlarmNamePrefixOverride != null) return false;
if (this.addToAlarmDashboard != null ? !this.addToAlarmDashboard.equals(that.addToAlarmDashboard) : that.addToAlarmDashboard != null) return false;
if (this.addToDetailDashboard != null ? !this.addToDetailDashboard.equals(that.addToDetailDashboard) : that.addToDetailDashboard != null) return false;
return this.addToSummaryDashboard != null ? this.addToSummaryDashboard.equals(that.addToSummaryDashboard) : that.addToSummaryDashboard == null;
}
@Override
public final int hashCode() {
int result = this.deliveryStreamName.hashCode();
result = 31 * result + (this.addIncomingBytesExceedThresholdAlarm != null ? this.addIncomingBytesExceedThresholdAlarm.hashCode() : 0);
result = 31 * result + (this.addIncomingPutRequestsExceedThresholdAlarm != null ? this.addIncomingPutRequestsExceedThresholdAlarm.hashCode() : 0);
result = 31 * result + (this.addIncomingRecordsExceedThresholdAlarm != null ? this.addIncomingRecordsExceedThresholdAlarm.hashCode() : 0);
result = 31 * result + (this.addRecordsThrottledAlarm != null ? this.addRecordsThrottledAlarm.hashCode() : 0);
result = 31 * result + (this.useCreatedAlarms != null ? this.useCreatedAlarms.hashCode() : 0);
result = 31 * result + (this.alarmFriendlyName != null ? this.alarmFriendlyName.hashCode() : 0);
result = 31 * result + (this.humanReadableName != null ? this.humanReadableName.hashCode() : 0);
result = 31 * result + (this.localAlarmNamePrefixOverride != null ? this.localAlarmNamePrefixOverride.hashCode() : 0);
result = 31 * result + (this.addToAlarmDashboard != null ? this.addToAlarmDashboard.hashCode() : 0);
result = 31 * result + (this.addToDetailDashboard != null ? this.addToDetailDashboard.hashCode() : 0);
result = 31 * result + (this.addToSummaryDashboard != null ? this.addToSummaryDashboard.hashCode() : 0);
return result;
}
}
}