com.amazonaws.services.iamrolesanywhere.model.NotificationSettingDetail Maven / Gradle / Ivy
Show all versions of aws-java-sdk-iamrolesanywhere Show documentation
/*
* Copyright 2019-2024 Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with
* the License. A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
* CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions
* and limitations under the License.
*/
package com.amazonaws.services.iamrolesanywhere.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;
/**
*
* The state of a notification setting.
*
*
* A notification setting includes information such as event name, threshold, status of the notification setting, and
* the channel to notify.
*
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class NotificationSettingDetail implements Serializable, Cloneable, StructuredPojo {
/**
*
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
*
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
*
*/
private String channel;
/**
*
* The principal that configured the notification setting. For default settings configured by IAM Roles Anywhere,
* the value is rolesanywhere.amazonaws.com
, and for customized notifications settings, it is the
* respective account ID.
*
*/
private String configuredBy;
/**
*
* Indicates whether the notification setting is enabled.
*
*/
private Boolean enabled;
/**
*
* The event to which this notification setting is applied.
*
*/
private String event;
/**
*
* The number of days before a notification event.
*
*/
private Integer threshold;
/**
*
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
*
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
*
*
* @param channel
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
* @see NotificationChannel
*/
public void setChannel(String channel) {
this.channel = channel;
}
/**
*
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
*
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
*
*
* @return The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and
* Health Dashboard to notify for an event.
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
* @see NotificationChannel
*/
public String getChannel() {
return this.channel;
}
/**
*
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
*
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
*
*
* @param channel
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see NotificationChannel
*/
public NotificationSettingDetail withChannel(String channel) {
setChannel(channel);
return this;
}
/**
*
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
*
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
*
*
* @param channel
* The specified channel of notification. IAM Roles Anywhere uses CloudWatch metrics, EventBridge, and Health
* Dashboard to notify for an event.
*
* In the absence of a specific channel, IAM Roles Anywhere applies this setting to 'ALL' channels.
*
* @return Returns a reference to this object so that method calls can be chained together.
* @see NotificationChannel
*/
public NotificationSettingDetail withChannel(NotificationChannel channel) {
this.channel = channel.toString();
return this;
}
/**
*
* The principal that configured the notification setting. For default settings configured by IAM Roles Anywhere,
* the value is rolesanywhere.amazonaws.com
, and for customized notifications settings, it is the
* respective account ID.
*
*
* @param configuredBy
* The principal that configured the notification setting. For default settings configured by IAM Roles
* Anywhere, the value is rolesanywhere.amazonaws.com
, and for customized notifications
* settings, it is the respective account ID.
*/
public void setConfiguredBy(String configuredBy) {
this.configuredBy = configuredBy;
}
/**
*
* The principal that configured the notification setting. For default settings configured by IAM Roles Anywhere,
* the value is rolesanywhere.amazonaws.com
, and for customized notifications settings, it is the
* respective account ID.
*
*
* @return The principal that configured the notification setting. For default settings configured by IAM Roles
* Anywhere, the value is rolesanywhere.amazonaws.com
, and for customized notifications
* settings, it is the respective account ID.
*/
public String getConfiguredBy() {
return this.configuredBy;
}
/**
*
* The principal that configured the notification setting. For default settings configured by IAM Roles Anywhere,
* the value is rolesanywhere.amazonaws.com
, and for customized notifications settings, it is the
* respective account ID.
*
*
* @param configuredBy
* The principal that configured the notification setting. For default settings configured by IAM Roles
* Anywhere, the value is rolesanywhere.amazonaws.com
, and for customized notifications
* settings, it is the respective account ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NotificationSettingDetail withConfiguredBy(String configuredBy) {
setConfiguredBy(configuredBy);
return this;
}
/**
*
* Indicates whether the notification setting is enabled.
*
*
* @param enabled
* Indicates whether the notification setting is enabled.
*/
public void setEnabled(Boolean enabled) {
this.enabled = enabled;
}
/**
*
* Indicates whether the notification setting is enabled.
*
*
* @return Indicates whether the notification setting is enabled.
*/
public Boolean getEnabled() {
return this.enabled;
}
/**
*
* Indicates whether the notification setting is enabled.
*
*
* @param enabled
* Indicates whether the notification setting is enabled.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NotificationSettingDetail withEnabled(Boolean enabled) {
setEnabled(enabled);
return this;
}
/**
*
* Indicates whether the notification setting is enabled.
*
*
* @return Indicates whether the notification setting is enabled.
*/
public Boolean isEnabled() {
return this.enabled;
}
/**
*
* The event to which this notification setting is applied.
*
*
* @param event
* The event to which this notification setting is applied.
* @see NotificationEvent
*/
public void setEvent(String event) {
this.event = event;
}
/**
*
* The event to which this notification setting is applied.
*
*
* @return The event to which this notification setting is applied.
* @see NotificationEvent
*/
public String getEvent() {
return this.event;
}
/**
*
* The event to which this notification setting is applied.
*
*
* @param event
* The event to which this notification setting is applied.
* @return Returns a reference to this object so that method calls can be chained together.
* @see NotificationEvent
*/
public NotificationSettingDetail withEvent(String event) {
setEvent(event);
return this;
}
/**
*
* The event to which this notification setting is applied.
*
*
* @param event
* The event to which this notification setting is applied.
* @return Returns a reference to this object so that method calls can be chained together.
* @see NotificationEvent
*/
public NotificationSettingDetail withEvent(NotificationEvent event) {
this.event = event.toString();
return this;
}
/**
*
* The number of days before a notification event.
*
*
* @param threshold
* The number of days before a notification event.
*/
public void setThreshold(Integer threshold) {
this.threshold = threshold;
}
/**
*
* The number of days before a notification event.
*
*
* @return The number of days before a notification event.
*/
public Integer getThreshold() {
return this.threshold;
}
/**
*
* The number of days before a notification event.
*
*
* @param threshold
* The number of days before a notification event.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public NotificationSettingDetail withThreshold(Integer threshold) {
setThreshold(threshold);
return this;
}
/**
* Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be
* redacted from this string using a placeholder value.
*
* @return A string representation of this object.
*
* @see java.lang.Object#toString()
*/
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("{");
if (getChannel() != null)
sb.append("Channel: ").append(getChannel()).append(",");
if (getConfiguredBy() != null)
sb.append("ConfiguredBy: ").append(getConfiguredBy()).append(",");
if (getEnabled() != null)
sb.append("Enabled: ").append(getEnabled()).append(",");
if (getEvent() != null)
sb.append("Event: ").append(getEvent()).append(",");
if (getThreshold() != null)
sb.append("Threshold: ").append(getThreshold());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof NotificationSettingDetail == false)
return false;
NotificationSettingDetail other = (NotificationSettingDetail) obj;
if (other.getChannel() == null ^ this.getChannel() == null)
return false;
if (other.getChannel() != null && other.getChannel().equals(this.getChannel()) == false)
return false;
if (other.getConfiguredBy() == null ^ this.getConfiguredBy() == null)
return false;
if (other.getConfiguredBy() != null && other.getConfiguredBy().equals(this.getConfiguredBy()) == false)
return false;
if (other.getEnabled() == null ^ this.getEnabled() == null)
return false;
if (other.getEnabled() != null && other.getEnabled().equals(this.getEnabled()) == false)
return false;
if (other.getEvent() == null ^ this.getEvent() == null)
return false;
if (other.getEvent() != null && other.getEvent().equals(this.getEvent()) == false)
return false;
if (other.getThreshold() == null ^ this.getThreshold() == null)
return false;
if (other.getThreshold() != null && other.getThreshold().equals(this.getThreshold()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getChannel() == null) ? 0 : getChannel().hashCode());
hashCode = prime * hashCode + ((getConfiguredBy() == null) ? 0 : getConfiguredBy().hashCode());
hashCode = prime * hashCode + ((getEnabled() == null) ? 0 : getEnabled().hashCode());
hashCode = prime * hashCode + ((getEvent() == null) ? 0 : getEvent().hashCode());
hashCode = prime * hashCode + ((getThreshold() == null) ? 0 : getThreshold().hashCode());
return hashCode;
}
@Override
public NotificationSettingDetail clone() {
try {
return (NotificationSettingDetail) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
@com.amazonaws.annotation.SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
com.amazonaws.services.iamrolesanywhere.model.transform.NotificationSettingDetailMarshaller.getInstance().marshall(this, protocolMarshaller);
}
}