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

com.amazonaws.services.route53profiles.model.AssociateResourceToProfileRequest Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Route 53 Profiles module holds the client classes that are used for communicating with Route 53 Profiles Service

There is a newer version: 1.12.772
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.route53profiles.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 AssociateResourceToProfileRequest extends com.amazonaws.AmazonWebServiceRequest implements Serializable, Cloneable {

    /**
     * 

* Name for the resource association. *

*/ private String name; /** *

* ID of the Profile. *

*/ private String profileId; /** *

* Amazon resource number, ARN, of the DNS resource. *

*/ private String resourceArn; /** *

* If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the processing order * for the rule groups, starting with the priority assinged the lowest value. *

*

* The allowed values for priority are between 100 and 9900. *

*/ private String resourceProperties; /** *

* Name for the resource association. *

* * @param name * Name for the resource association. */ public void setName(String name) { this.name = name; } /** *

* Name for the resource association. *

* * @return Name for the resource association. */ public String getName() { return this.name; } /** *

* Name for the resource association. *

* * @param name * Name for the resource association. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateResourceToProfileRequest withName(String name) { setName(name); return this; } /** *

* ID of the Profile. *

* * @param profileId * ID of the Profile. */ public void setProfileId(String profileId) { this.profileId = profileId; } /** *

* ID of the Profile. *

* * @return ID of the Profile. */ public String getProfileId() { return this.profileId; } /** *

* ID of the Profile. *

* * @param profileId * ID of the Profile. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateResourceToProfileRequest withProfileId(String profileId) { setProfileId(profileId); return this; } /** *

* Amazon resource number, ARN, of the DNS resource. *

* * @param resourceArn * Amazon resource number, ARN, of the DNS resource. */ public void setResourceArn(String resourceArn) { this.resourceArn = resourceArn; } /** *

* Amazon resource number, ARN, of the DNS resource. *

* * @return Amazon resource number, ARN, of the DNS resource. */ public String getResourceArn() { return this.resourceArn; } /** *

* Amazon resource number, ARN, of the DNS resource. *

* * @param resourceArn * Amazon resource number, ARN, of the DNS resource. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateResourceToProfileRequest withResourceArn(String resourceArn) { setResourceArn(resourceArn); return this; } /** *

* If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the processing order * for the rule groups, starting with the priority assinged the lowest value. *

*

* The allowed values for priority are between 100 and 9900. *

* * @param resourceProperties * If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the * processing order for the rule groups, starting with the priority assinged the lowest value.

*

* The allowed values for priority are between 100 and 9900. */ public void setResourceProperties(String resourceProperties) { this.resourceProperties = resourceProperties; } /** *

* If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the processing order * for the rule groups, starting with the priority assinged the lowest value. *

*

* The allowed values for priority are between 100 and 9900. *

* * @return If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the * processing order for the rule groups, starting with the priority assinged the lowest value.

*

* The allowed values for priority are between 100 and 9900. */ public String getResourceProperties() { return this.resourceProperties; } /** *

* If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the processing order * for the rule groups, starting with the priority assinged the lowest value. *

*

* The allowed values for priority are between 100 and 9900. *

* * @param resourceProperties * If you are adding a DNS Firewall rule group, include also a priority. The priority indicates the * processing order for the rule groups, starting with the priority assinged the lowest value.

*

* The allowed values for priority are between 100 and 9900. * @return Returns a reference to this object so that method calls can be chained together. */ public AssociateResourceToProfileRequest withResourceProperties(String resourceProperties) { setResourceProperties(resourceProperties); 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 (getName() != null) sb.append("Name: ").append(getName()).append(","); if (getProfileId() != null) sb.append("ProfileId: ").append(getProfileId()).append(","); if (getResourceArn() != null) sb.append("ResourceArn: ").append(getResourceArn()).append(","); if (getResourceProperties() != null) sb.append("ResourceProperties: ").append(getResourceProperties()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AssociateResourceToProfileRequest == false) return false; AssociateResourceToProfileRequest other = (AssociateResourceToProfileRequest) obj; if (other.getName() == null ^ this.getName() == null) return false; if (other.getName() != null && other.getName().equals(this.getName()) == false) return false; if (other.getProfileId() == null ^ this.getProfileId() == null) return false; if (other.getProfileId() != null && other.getProfileId().equals(this.getProfileId()) == false) return false; if (other.getResourceArn() == null ^ this.getResourceArn() == null) return false; if (other.getResourceArn() != null && other.getResourceArn().equals(this.getResourceArn()) == false) return false; if (other.getResourceProperties() == null ^ this.getResourceProperties() == null) return false; if (other.getResourceProperties() != null && other.getResourceProperties().equals(this.getResourceProperties()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getName() == null) ? 0 : getName().hashCode()); hashCode = prime * hashCode + ((getProfileId() == null) ? 0 : getProfileId().hashCode()); hashCode = prime * hashCode + ((getResourceArn() == null) ? 0 : getResourceArn().hashCode()); hashCode = prime * hashCode + ((getResourceProperties() == null) ? 0 : getResourceProperties().hashCode()); return hashCode; } @Override public AssociateResourceToProfileRequest clone() { return (AssociateResourceToProfileRequest) super.clone(); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy