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

com.amazonaws.services.resiliencehub.model.AddDraftAppVersionResourceMappingsRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for AWS Resilience Hub module holds the client classes that are used for communicating with AWS Resilience Hub Service

The newest version!
/*
 * 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;

import com.amazonaws.AmazonWebServiceRequest;

/**
 * 
 * @see AWS API Documentation
 */
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class AddDraftAppVersionResourceMappingsRequest extends com.amazonaws.AmazonWebServiceRequest 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; /** *

* Mappings used to map logical resources from the template to physical resources. You can use the mapping type * CFN_STACK if the application template uses a logical stack name. Or you can map individual resources * by using the mapping type RESOURCE. We recommend using the mapping type CFN_STACK if * the application is backed by a CloudFormation stack. *

*/ 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 AddDraftAppVersionResourceMappingsRequest withAppArn(String appArn) { setAppArn(appArn); return this; } /** *

* Mappings used to map logical resources from the template to physical resources. You can use the mapping type * CFN_STACK if the application template uses a logical stack name. Or you can map individual resources * by using the mapping type RESOURCE. We recommend using the mapping type CFN_STACK if * the application is backed by a CloudFormation stack. *

* * @return Mappings used to map logical resources from the template to physical resources. You can use the mapping * type CFN_STACK if the application template uses a logical stack name. Or you can map * individual resources by using the mapping type RESOURCE. We recommend using the mapping type * CFN_STACK if the application is backed by a CloudFormation stack. */ public java.util.List getResourceMappings() { return resourceMappings; } /** *

* Mappings used to map logical resources from the template to physical resources. You can use the mapping type * CFN_STACK if the application template uses a logical stack name. Or you can map individual resources * by using the mapping type RESOURCE. We recommend using the mapping type CFN_STACK if * the application is backed by a CloudFormation stack. *

* * @param resourceMappings * Mappings used to map logical resources from the template to physical resources. You can use the mapping * type CFN_STACK if the application template uses a logical stack name. Or you can map * individual resources by using the mapping type RESOURCE. We recommend using the mapping type * CFN_STACK if the application is backed by a CloudFormation stack. */ public void setResourceMappings(java.util.Collection resourceMappings) { if (resourceMappings == null) { this.resourceMappings = null; return; } this.resourceMappings = new java.util.ArrayList(resourceMappings); } /** *

* Mappings used to map logical resources from the template to physical resources. You can use the mapping type * CFN_STACK if the application template uses a logical stack name. Or you can map individual resources * by using the mapping type RESOURCE. We recommend using the mapping type CFN_STACK if * the application is backed by a CloudFormation stack. *

*

* 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 * Mappings used to map logical resources from the template to physical resources. You can use the mapping * type CFN_STACK if the application template uses a logical stack name. Or you can map * individual resources by using the mapping type RESOURCE. We recommend using the mapping type * CFN_STACK if the application is backed by a CloudFormation stack. * @return Returns a reference to this object so that method calls can be chained together. */ public AddDraftAppVersionResourceMappingsRequest withResourceMappings(ResourceMapping... resourceMappings) { if (this.resourceMappings == null) { setResourceMappings(new java.util.ArrayList(resourceMappings.length)); } for (ResourceMapping ele : resourceMappings) { this.resourceMappings.add(ele); } return this; } /** *

* Mappings used to map logical resources from the template to physical resources. You can use the mapping type * CFN_STACK if the application template uses a logical stack name. Or you can map individual resources * by using the mapping type RESOURCE. We recommend using the mapping type CFN_STACK if * the application is backed by a CloudFormation stack. *

* * @param resourceMappings * Mappings used to map logical resources from the template to physical resources. You can use the mapping * type CFN_STACK if the application template uses a logical stack name. Or you can map * individual resources by using the mapping type RESOURCE. We recommend using the mapping type * CFN_STACK if the application is backed by a CloudFormation stack. * @return Returns a reference to this object so that method calls can be chained together. */ public AddDraftAppVersionResourceMappingsRequest 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 (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 AddDraftAppVersionResourceMappingsRequest == false) return false; AddDraftAppVersionResourceMappingsRequest other = (AddDraftAppVersionResourceMappingsRequest) obj; if (other.getAppArn() == null ^ this.getAppArn() == null) return false; if (other.getAppArn() != null && other.getAppArn().equals(this.getAppArn()) == 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 + ((getResourceMappings() == null) ? 0 : getResourceMappings().hashCode()); return hashCode; } @Override public AddDraftAppVersionResourceMappingsRequest clone() { return (AddDraftAppVersionResourceMappingsRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy