com.amazonaws.services.lambda.model.ListFunctionsByCodeSigningConfigResult Maven / Gradle / Ivy
/*
* Copyright 2018-2023 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.lambda.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ListFunctionsByCodeSigningConfigResult extends com.amazonaws.AmazonWebServiceResult implements Serializable,
Cloneable {
/**
*
* The pagination token that's included if more results are available.
*
*/
private String nextMarker;
/**
*
* The function ARNs.
*
*/
private com.amazonaws.internal.SdkInternalList functionArns;
/**
*
* The pagination token that's included if more results are available.
*
*
* @param nextMarker
* The pagination token that's included if more results are available.
*/
public void setNextMarker(String nextMarker) {
this.nextMarker = nextMarker;
}
/**
*
* The pagination token that's included if more results are available.
*
*
* @return The pagination token that's included if more results are available.
*/
public String getNextMarker() {
return this.nextMarker;
}
/**
*
* The pagination token that's included if more results are available.
*
*
* @param nextMarker
* The pagination token that's included if more results are available.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListFunctionsByCodeSigningConfigResult withNextMarker(String nextMarker) {
setNextMarker(nextMarker);
return this;
}
/**
*
* The function ARNs.
*
*
* @return The function ARNs.
*/
public java.util.List getFunctionArns() {
if (functionArns == null) {
functionArns = new com.amazonaws.internal.SdkInternalList();
}
return functionArns;
}
/**
*
* The function ARNs.
*
*
* @param functionArns
* The function ARNs.
*/
public void setFunctionArns(java.util.Collection functionArns) {
if (functionArns == null) {
this.functionArns = null;
return;
}
this.functionArns = new com.amazonaws.internal.SdkInternalList(functionArns);
}
/**
*
* The function ARNs.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setFunctionArns(java.util.Collection)} or {@link #withFunctionArns(java.util.Collection)} if you want to
* override the existing values.
*
*
* @param functionArns
* The function ARNs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListFunctionsByCodeSigningConfigResult withFunctionArns(String... functionArns) {
if (this.functionArns == null) {
setFunctionArns(new com.amazonaws.internal.SdkInternalList(functionArns.length));
}
for (String ele : functionArns) {
this.functionArns.add(ele);
}
return this;
}
/**
*
* The function ARNs.
*
*
* @param functionArns
* The function ARNs.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ListFunctionsByCodeSigningConfigResult withFunctionArns(java.util.Collection functionArns) {
setFunctionArns(functionArns);
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 (getNextMarker() != null)
sb.append("NextMarker: ").append(getNextMarker()).append(",");
if (getFunctionArns() != null)
sb.append("FunctionArns: ").append(getFunctionArns());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof ListFunctionsByCodeSigningConfigResult == false)
return false;
ListFunctionsByCodeSigningConfigResult other = (ListFunctionsByCodeSigningConfigResult) obj;
if (other.getNextMarker() == null ^ this.getNextMarker() == null)
return false;
if (other.getNextMarker() != null && other.getNextMarker().equals(this.getNextMarker()) == false)
return false;
if (other.getFunctionArns() == null ^ this.getFunctionArns() == null)
return false;
if (other.getFunctionArns() != null && other.getFunctionArns().equals(this.getFunctionArns()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getNextMarker() == null) ? 0 : getNextMarker().hashCode());
hashCode = prime * hashCode + ((getFunctionArns() == null) ? 0 : getFunctionArns().hashCode());
return hashCode;
}
@Override
public ListFunctionsByCodeSigningConfigResult clone() {
try {
return (ListFunctionsByCodeSigningConfigResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}