com.amazonaws.services.panorama.model.ConflictException Maven / Gradle / Ivy
Show all versions of aws-java-sdk-panorama 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.panorama.model;
import javax.annotation.Generated;
/**
*
* The target resource is in use.
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class ConflictException extends com.amazonaws.services.panorama.model.AWSPanoramaException {
private static final long serialVersionUID = 1L;
/**
*
* A list of attributes that led to the exception and their values.
*
*/
private java.util.List errorArguments;
/**
*
* A unique ID for the error.
*
*/
private String errorId;
/**
*
* The resource's ID.
*
*/
private String resourceId;
/**
*
* The resource's type.
*
*/
private String resourceType;
/**
* Constructs a new ConflictException with the specified error message.
*
* @param message
* Describes the error encountered.
*/
public ConflictException(String message) {
super(message);
}
/**
*
* A list of attributes that led to the exception and their values.
*
*
* @return A list of attributes that led to the exception and their values.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ErrorArguments")
public java.util.List getErrorArguments() {
return errorArguments;
}
/**
*
* A list of attributes that led to the exception and their values.
*
*
* @param errorArguments
* A list of attributes that led to the exception and their values.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ErrorArguments")
public void setErrorArguments(java.util.Collection errorArguments) {
if (errorArguments == null) {
this.errorArguments = null;
return;
}
this.errorArguments = new java.util.ArrayList(errorArguments);
}
/**
*
* A list of attributes that led to the exception and their values.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setErrorArguments(java.util.Collection)} or {@link #withErrorArguments(java.util.Collection)} if you want
* to override the existing values.
*
*
* @param errorArguments
* A list of attributes that led to the exception and their values.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConflictException withErrorArguments(ConflictExceptionErrorArgument... errorArguments) {
if (this.errorArguments == null) {
setErrorArguments(new java.util.ArrayList(errorArguments.length));
}
for (ConflictExceptionErrorArgument ele : errorArguments) {
this.errorArguments.add(ele);
}
return this;
}
/**
*
* A list of attributes that led to the exception and their values.
*
*
* @param errorArguments
* A list of attributes that led to the exception and their values.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConflictException withErrorArguments(java.util.Collection errorArguments) {
setErrorArguments(errorArguments);
return this;
}
/**
*
* A unique ID for the error.
*
*
* @param errorId
* A unique ID for the error.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ErrorId")
public void setErrorId(String errorId) {
this.errorId = errorId;
}
/**
*
* A unique ID for the error.
*
*
* @return A unique ID for the error.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ErrorId")
public String getErrorId() {
return this.errorId;
}
/**
*
* A unique ID for the error.
*
*
* @param errorId
* A unique ID for the error.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConflictException withErrorId(String errorId) {
setErrorId(errorId);
return this;
}
/**
*
* The resource's ID.
*
*
* @param resourceId
* The resource's ID.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceId")
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
/**
*
* The resource's ID.
*
*
* @return The resource's ID.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceId")
public String getResourceId() {
return this.resourceId;
}
/**
*
* The resource's ID.
*
*
* @param resourceId
* The resource's ID.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConflictException withResourceId(String resourceId) {
setResourceId(resourceId);
return this;
}
/**
*
* The resource's type.
*
*
* @param resourceType
* The resource's type.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceType")
public void setResourceType(String resourceType) {
this.resourceType = resourceType;
}
/**
*
* The resource's type.
*
*
* @return The resource's type.
*/
@com.fasterxml.jackson.annotation.JsonProperty("ResourceType")
public String getResourceType() {
return this.resourceType;
}
/**
*
* The resource's type.
*
*
* @param resourceType
* The resource's type.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public ConflictException withResourceType(String resourceType) {
setResourceType(resourceType);
return this;
}
}