com.amazonaws.services.resiliencehub.model.AddDraftAppVersionResourceMappingsResult Maven / Gradle / Ivy
Show all versions of aws-java-sdk-resiliencehub 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.resiliencehub.model;
import java.io.Serializable;
import javax.annotation.Generated;
/**
*
* @see AWS API Documentation
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AddDraftAppVersionResourceMappingsResult extends com.amazonaws.AmazonWebServiceResult implements Serializable,
Cloneable {
/**
*
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
*
*/
private String appArn;
/**
*
* The version of the application.
*
*/
private String appVersion;
/**
*
* List of sources that are used to map a logical resource from the template to a physical resource. You can use
* sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*
*/
private java.util.List resourceMappings;
/**
*
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
*
*
* @param appArn
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For
* more information about ARNs, see Amazon Resource Names
* (ARNs) in the Amazon Web Services General Reference guide.
*/
public void setAppArn(String appArn) {
this.appArn = appArn;
}
/**
*
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
*
*
* @return Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
.
* For more information about ARNs, see Amazon Resource Names
* (ARNs) in the Amazon Web Services General Reference guide.
*/
public String getAppArn() {
return this.appArn;
}
/**
*
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For more
* information about ARNs, see
* Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.
*
*
* @param appArn
* Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:
* partition
:resiliencehub:region
:account
:app/app-id
. For
* more information about ARNs, see Amazon Resource Names
* (ARNs) in the Amazon Web Services General Reference guide.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddDraftAppVersionResourceMappingsResult withAppArn(String appArn) {
setAppArn(appArn);
return this;
}
/**
*
* The version of the application.
*
*
* @param appVersion
* The version of the application.
*/
public void setAppVersion(String appVersion) {
this.appVersion = appVersion;
}
/**
*
* The version of the application.
*
*
* @return The version of the application.
*/
public String getAppVersion() {
return this.appVersion;
}
/**
*
* The version of the application.
*
*
* @param appVersion
* The version of the application.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddDraftAppVersionResourceMappingsResult withAppVersion(String appVersion) {
setAppVersion(appVersion);
return this;
}
/**
*
* List of sources that are used to map a logical resource from the template to a physical resource. You can use
* sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*
*
* @return List of sources that are used to map a logical resource from the template to a physical resource. You can
* use sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*/
public java.util.List getResourceMappings() {
return resourceMappings;
}
/**
*
* List of sources that are used to map a logical resource from the template to a physical resource. You can use
* sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*
*
* @param resourceMappings
* List of sources that are used to map a logical resource from the template to a physical resource. You can
* use sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*/
public void setResourceMappings(java.util.Collection resourceMappings) {
if (resourceMappings == null) {
this.resourceMappings = null;
return;
}
this.resourceMappings = new java.util.ArrayList(resourceMappings);
}
/**
*
* List of sources that are used to map a logical resource from the template to a physical resource. You can use
* sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*
*
* NOTE: This method appends the values to the existing list (if any). Use
* {@link #setResourceMappings(java.util.Collection)} or {@link #withResourceMappings(java.util.Collection)} if you
* want to override the existing values.
*
*
* @param resourceMappings
* List of sources that are used to map a logical resource from the template to a physical resource. You can
* use sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddDraftAppVersionResourceMappingsResult withResourceMappings(ResourceMapping... resourceMappings) {
if (this.resourceMappings == null) {
setResourceMappings(new java.util.ArrayList(resourceMappings.length));
}
for (ResourceMapping ele : resourceMappings) {
this.resourceMappings.add(ele);
}
return this;
}
/**
*
* List of sources that are used to map a logical resource from the template to a physical resource. You can use
* sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
*
*
* @param resourceMappings
* List of sources that are used to map a logical resource from the template to a physical resource. You can
* use sources such as CloudFormation, Terraform state files, AppRegistry applications, or Amazon EKS.
* @return Returns a reference to this object so that method calls can be chained together.
*/
public AddDraftAppVersionResourceMappingsResult withResourceMappings(java.util.Collection resourceMappings) {
setResourceMappings(resourceMappings);
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 (getAppArn() != null)
sb.append("AppArn: ").append(getAppArn()).append(",");
if (getAppVersion() != null)
sb.append("AppVersion: ").append(getAppVersion()).append(",");
if (getResourceMappings() != null)
sb.append("ResourceMappings: ").append(getResourceMappings());
sb.append("}");
return sb.toString();
}
@Override
public boolean equals(Object obj) {
if (this == obj)
return true;
if (obj == null)
return false;
if (obj instanceof AddDraftAppVersionResourceMappingsResult == false)
return false;
AddDraftAppVersionResourceMappingsResult other = (AddDraftAppVersionResourceMappingsResult) obj;
if (other.getAppArn() == null ^ this.getAppArn() == null)
return false;
if (other.getAppArn() != null && other.getAppArn().equals(this.getAppArn()) == false)
return false;
if (other.getAppVersion() == null ^ this.getAppVersion() == null)
return false;
if (other.getAppVersion() != null && other.getAppVersion().equals(this.getAppVersion()) == false)
return false;
if (other.getResourceMappings() == null ^ this.getResourceMappings() == null)
return false;
if (other.getResourceMappings() != null && other.getResourceMappings().equals(this.getResourceMappings()) == false)
return false;
return true;
}
@Override
public int hashCode() {
final int prime = 31;
int hashCode = 1;
hashCode = prime * hashCode + ((getAppArn() == null) ? 0 : getAppArn().hashCode());
hashCode = prime * hashCode + ((getAppVersion() == null) ? 0 : getAppVersion().hashCode());
hashCode = prime * hashCode + ((getResourceMappings() == null) ? 0 : getResourceMappings().hashCode());
return hashCode;
}
@Override
public AddDraftAppVersionResourceMappingsResult clone() {
try {
return (AddDraftAppVersionResourceMappingsResult) super.clone();
} catch (CloneNotSupportedException e) {
throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e);
}
}
}