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

com.amazonaws.services.resiliencehub.model.DeleteAppVersionResourceRequest 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

There is a newer version: 1.12.768
Show 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 DeleteAppVersionResourceRequest 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; /** *

* Amazon Web Services account that owns the physical resource. *

*/ private String awsAccountId; /** *

* Amazon Web Services region that owns the physical resource. *

*/ private String awsRegion; /** *

* Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. * You should not reuse the same client token for other API requests. *

*/ private String clientToken; /** *

* Logical identifier of the resource. *

*/ private LogicalResourceId logicalResourceId; /** *

* Physical identifier of the resource. *

*/ private String physicalResourceId; /** *

* Name of the resource. *

*/ private String resourceName; /** *

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

* Amazon Web Services account that owns the physical resource. *

* * @param awsAccountId * Amazon Web Services account that owns the physical resource. */ public void setAwsAccountId(String awsAccountId) { this.awsAccountId = awsAccountId; } /** *

* Amazon Web Services account that owns the physical resource. *

* * @return Amazon Web Services account that owns the physical resource. */ public String getAwsAccountId() { return this.awsAccountId; } /** *

* Amazon Web Services account that owns the physical resource. *

* * @param awsAccountId * Amazon Web Services account that owns the physical resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteAppVersionResourceRequest withAwsAccountId(String awsAccountId) { setAwsAccountId(awsAccountId); return this; } /** *

* Amazon Web Services region that owns the physical resource. *

* * @param awsRegion * Amazon Web Services region that owns the physical resource. */ public void setAwsRegion(String awsRegion) { this.awsRegion = awsRegion; } /** *

* Amazon Web Services region that owns the physical resource. *

* * @return Amazon Web Services region that owns the physical resource. */ public String getAwsRegion() { return this.awsRegion; } /** *

* Amazon Web Services region that owns the physical resource. *

* * @param awsRegion * Amazon Web Services region that owns the physical resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteAppVersionResourceRequest withAwsRegion(String awsRegion) { setAwsRegion(awsRegion); return this; } /** *

* Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. * You should not reuse the same client token for other API requests. *

* * @param clientToken * Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII * characters. You should not reuse the same client token for other API requests. */ public void setClientToken(String clientToken) { this.clientToken = clientToken; } /** *

* Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. * You should not reuse the same client token for other API requests. *

* * @return Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII * characters. You should not reuse the same client token for other API requests. */ public String getClientToken() { return this.clientToken; } /** *

* Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII characters. * You should not reuse the same client token for other API requests. *

* * @param clientToken * Used for an idempotency token. A client token is a unique, case-sensitive string of up to 64 ASCII * characters. You should not reuse the same client token for other API requests. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteAppVersionResourceRequest withClientToken(String clientToken) { setClientToken(clientToken); return this; } /** *

* Logical identifier of the resource. *

* * @param logicalResourceId * Logical identifier of the resource. */ public void setLogicalResourceId(LogicalResourceId logicalResourceId) { this.logicalResourceId = logicalResourceId; } /** *

* Logical identifier of the resource. *

* * @return Logical identifier of the resource. */ public LogicalResourceId getLogicalResourceId() { return this.logicalResourceId; } /** *

* Logical identifier of the resource. *

* * @param logicalResourceId * Logical identifier of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteAppVersionResourceRequest withLogicalResourceId(LogicalResourceId logicalResourceId) { setLogicalResourceId(logicalResourceId); return this; } /** *

* Physical identifier of the resource. *

* * @param physicalResourceId * Physical identifier of the resource. */ public void setPhysicalResourceId(String physicalResourceId) { this.physicalResourceId = physicalResourceId; } /** *

* Physical identifier of the resource. *

* * @return Physical identifier of the resource. */ public String getPhysicalResourceId() { return this.physicalResourceId; } /** *

* Physical identifier of the resource. *

* * @param physicalResourceId * Physical identifier of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteAppVersionResourceRequest withPhysicalResourceId(String physicalResourceId) { setPhysicalResourceId(physicalResourceId); return this; } /** *

* Name of the resource. *

* * @param resourceName * Name of the resource. */ public void setResourceName(String resourceName) { this.resourceName = resourceName; } /** *

* Name of the resource. *

* * @return Name of the resource. */ public String getResourceName() { return this.resourceName; } /** *

* Name of the resource. *

* * @param resourceName * Name of the resource. * @return Returns a reference to this object so that method calls can be chained together. */ public DeleteAppVersionResourceRequest withResourceName(String resourceName) { setResourceName(resourceName); 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 (getAwsAccountId() != null) sb.append("AwsAccountId: ").append(getAwsAccountId()).append(","); if (getAwsRegion() != null) sb.append("AwsRegion: ").append(getAwsRegion()).append(","); if (getClientToken() != null) sb.append("ClientToken: ").append(getClientToken()).append(","); if (getLogicalResourceId() != null) sb.append("LogicalResourceId: ").append(getLogicalResourceId()).append(","); if (getPhysicalResourceId() != null) sb.append("PhysicalResourceId: ").append(getPhysicalResourceId()).append(","); if (getResourceName() != null) sb.append("ResourceName: ").append(getResourceName()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof DeleteAppVersionResourceRequest == false) return false; DeleteAppVersionResourceRequest other = (DeleteAppVersionResourceRequest) obj; if (other.getAppArn() == null ^ this.getAppArn() == null) return false; if (other.getAppArn() != null && other.getAppArn().equals(this.getAppArn()) == false) return false; if (other.getAwsAccountId() == null ^ this.getAwsAccountId() == null) return false; if (other.getAwsAccountId() != null && other.getAwsAccountId().equals(this.getAwsAccountId()) == false) return false; if (other.getAwsRegion() == null ^ this.getAwsRegion() == null) return false; if (other.getAwsRegion() != null && other.getAwsRegion().equals(this.getAwsRegion()) == false) return false; if (other.getClientToken() == null ^ this.getClientToken() == null) return false; if (other.getClientToken() != null && other.getClientToken().equals(this.getClientToken()) == false) return false; if (other.getLogicalResourceId() == null ^ this.getLogicalResourceId() == null) return false; if (other.getLogicalResourceId() != null && other.getLogicalResourceId().equals(this.getLogicalResourceId()) == false) return false; if (other.getPhysicalResourceId() == null ^ this.getPhysicalResourceId() == null) return false; if (other.getPhysicalResourceId() != null && other.getPhysicalResourceId().equals(this.getPhysicalResourceId()) == false) return false; if (other.getResourceName() == null ^ this.getResourceName() == null) return false; if (other.getResourceName() != null && other.getResourceName().equals(this.getResourceName()) == 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 + ((getAwsAccountId() == null) ? 0 : getAwsAccountId().hashCode()); hashCode = prime * hashCode + ((getAwsRegion() == null) ? 0 : getAwsRegion().hashCode()); hashCode = prime * hashCode + ((getClientToken() == null) ? 0 : getClientToken().hashCode()); hashCode = prime * hashCode + ((getLogicalResourceId() == null) ? 0 : getLogicalResourceId().hashCode()); hashCode = prime * hashCode + ((getPhysicalResourceId() == null) ? 0 : getPhysicalResourceId().hashCode()); hashCode = prime * hashCode + ((getResourceName() == null) ? 0 : getResourceName().hashCode()); return hashCode; } @Override public DeleteAppVersionResourceRequest clone() { return (DeleteAppVersionResourceRequest) super.clone(); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy