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

com.amazonaws.services.kinesis.model.EnableEnhancedMonitoringResult Maven / Gradle / Ivy

Go to download

The AWS Android SDK for Amazon Kinesis module holds the client classes that are used for communicating with Amazon Kinesis Service

There is a newer version: 2.77.0
Show newest version
/*
 * Copyright 2010-2016 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.kinesis.model;

import java.io.Serializable;

/**
 * 

* Represents the output for EnableEnhancedMonitoring and * DisableEnhancedMonitoring. *

*/ public class EnableEnhancedMonitoringResult implements Serializable { /** *

* The name of the Amazon Kinesis stream. *

*

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_.-]+
*/ private String streamName; /** *

* Represents the current state of the metrics that are in the enhanced * state before the operation. *

*/ private java.util.List currentShardLevelMetrics = new java.util.ArrayList(); /** *

* Represents the list of all the metrics that would be in the enhanced * state after the operation. *

*/ private java.util.List desiredShardLevelMetrics = new java.util.ArrayList(); /** *

* The name of the Amazon Kinesis stream. *

*

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_.-]+
* * @return

* The name of the Amazon Kinesis stream. *

*/ public String getStreamName() { return streamName; } /** *

* The name of the Amazon Kinesis stream. *

*

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_.-]+
* * @param streamName

* The name of the Amazon Kinesis stream. *

*/ public void setStreamName(String streamName) { this.streamName = streamName; } /** *

* The name of the Amazon Kinesis stream. *

*

* Returns a reference to this object so that method calls can be chained * together. *

* Constraints:
* Length: 1 - 128
* Pattern: [a-zA-Z0-9_.-]+
* * @param streamName

* The name of the Amazon Kinesis stream. *

* @return A reference to this updated object so that method calls can be * chained together. */ public EnableEnhancedMonitoringResult withStreamName(String streamName) { this.streamName = streamName; return this; } /** *

* Represents the current state of the metrics that are in the enhanced * state before the operation. *

* * @return

* Represents the current state of the metrics that are in the * enhanced state before the operation. *

*/ public java.util.List getCurrentShardLevelMetrics() { return currentShardLevelMetrics; } /** *

* Represents the current state of the metrics that are in the enhanced * state before the operation. *

* * @param currentShardLevelMetrics

* Represents the current state of the metrics that are in the * enhanced state before the operation. *

*/ public void setCurrentShardLevelMetrics(java.util.Collection currentShardLevelMetrics) { if (currentShardLevelMetrics == null) { this.currentShardLevelMetrics = null; return; } this.currentShardLevelMetrics = new java.util.ArrayList(currentShardLevelMetrics); } /** *

* Represents the current state of the metrics that are in the enhanced * state before the operation. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param currentShardLevelMetrics

* Represents the current state of the metrics that are in the * enhanced state before the operation. *

* @return A reference to this updated object so that method calls can be * chained together. */ public EnableEnhancedMonitoringResult withCurrentShardLevelMetrics( String... currentShardLevelMetrics) { if (getCurrentShardLevelMetrics() == null) { this.currentShardLevelMetrics = new java.util.ArrayList( currentShardLevelMetrics.length); } for (String value : currentShardLevelMetrics) { this.currentShardLevelMetrics.add(value); } return this; } /** *

* Represents the current state of the metrics that are in the enhanced * state before the operation. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param currentShardLevelMetrics

* Represents the current state of the metrics that are in the * enhanced state before the operation. *

* @return A reference to this updated object so that method calls can be * chained together. */ public EnableEnhancedMonitoringResult withCurrentShardLevelMetrics( java.util.Collection currentShardLevelMetrics) { setCurrentShardLevelMetrics(currentShardLevelMetrics); return this; } /** *

* Represents the list of all the metrics that would be in the enhanced * state after the operation. *

* * @return

* Represents the list of all the metrics that would be in the * enhanced state after the operation. *

*/ public java.util.List getDesiredShardLevelMetrics() { return desiredShardLevelMetrics; } /** *

* Represents the list of all the metrics that would be in the enhanced * state after the operation. *

* * @param desiredShardLevelMetrics

* Represents the list of all the metrics that would be in the * enhanced state after the operation. *

*/ public void setDesiredShardLevelMetrics(java.util.Collection desiredShardLevelMetrics) { if (desiredShardLevelMetrics == null) { this.desiredShardLevelMetrics = null; return; } this.desiredShardLevelMetrics = new java.util.ArrayList(desiredShardLevelMetrics); } /** *

* Represents the list of all the metrics that would be in the enhanced * state after the operation. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param desiredShardLevelMetrics

* Represents the list of all the metrics that would be in the * enhanced state after the operation. *

* @return A reference to this updated object so that method calls can be * chained together. */ public EnableEnhancedMonitoringResult withDesiredShardLevelMetrics( String... desiredShardLevelMetrics) { if (getDesiredShardLevelMetrics() == null) { this.desiredShardLevelMetrics = new java.util.ArrayList( desiredShardLevelMetrics.length); } for (String value : desiredShardLevelMetrics) { this.desiredShardLevelMetrics.add(value); } return this; } /** *

* Represents the list of all the metrics that would be in the enhanced * state after the operation. *

*

* Returns a reference to this object so that method calls can be chained * together. * * @param desiredShardLevelMetrics

* Represents the list of all the metrics that would be in the * enhanced state after the operation. *

* @return A reference to this updated object so that method calls can be * chained together. */ public EnableEnhancedMonitoringResult withDesiredShardLevelMetrics( java.util.Collection desiredShardLevelMetrics) { setDesiredShardLevelMetrics(desiredShardLevelMetrics); return this; } /** * Returns a string representation of this object; useful for testing and * debugging. * * @return A string representation of this object. * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getStreamName() != null) sb.append("StreamName: " + getStreamName() + ","); if (getCurrentShardLevelMetrics() != null) sb.append("CurrentShardLevelMetrics: " + getCurrentShardLevelMetrics() + ","); if (getDesiredShardLevelMetrics() != null) sb.append("DesiredShardLevelMetrics: " + getDesiredShardLevelMetrics()); sb.append("}"); return sb.toString(); } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getStreamName() == null) ? 0 : getStreamName().hashCode()); hashCode = prime * hashCode + ((getCurrentShardLevelMetrics() == null) ? 0 : getCurrentShardLevelMetrics() .hashCode()); hashCode = prime * hashCode + ((getDesiredShardLevelMetrics() == null) ? 0 : getDesiredShardLevelMetrics() .hashCode()); return hashCode; } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof EnableEnhancedMonitoringResult == false) return false; EnableEnhancedMonitoringResult other = (EnableEnhancedMonitoringResult) obj; if (other.getStreamName() == null ^ this.getStreamName() == null) return false; if (other.getStreamName() != null && other.getStreamName().equals(this.getStreamName()) == false) return false; if (other.getCurrentShardLevelMetrics() == null ^ this.getCurrentShardLevelMetrics() == null) return false; if (other.getCurrentShardLevelMetrics() != null && other.getCurrentShardLevelMetrics().equals(this.getCurrentShardLevelMetrics()) == false) return false; if (other.getDesiredShardLevelMetrics() == null ^ this.getDesiredShardLevelMetrics() == null) return false; if (other.getDesiredShardLevelMetrics() != null && other.getDesiredShardLevelMetrics().equals(this.getDesiredShardLevelMetrics()) == false) return false; return true; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy