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

shiver.me.timbers.aws.apigateway.DomainName Maven / Gradle / Ivy


package shiver.me.timbers.aws.apigateway;

import com.fasterxml.jackson.annotation.JsonIgnore;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonPropertyDescription;
import com.fasterxml.jackson.annotation.JsonPropertyOrder;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
import shiver.me.timbers.aws.Property;


/**
 * DomainName
 * 

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html * */ @JsonInclude(JsonInclude.Include.NON_EMPTY) @JsonPropertyOrder({ "CertificateArn", "DomainName", "EndpointConfiguration", "RegionalCertificateArn" }) public class DomainName { /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn * */ @JsonProperty("CertificateArn") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn") private CharSequence certificateArn; /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname * */ @JsonProperty("DomainName") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname") private CharSequence domainName; /** * DomainNameEndpointConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-endpointconfiguration.html * */ @JsonProperty("EndpointConfiguration") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-endpointconfiguration.html") private Property endpointConfiguration; /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn * */ @JsonProperty("RegionalCertificateArn") @JsonPropertyDescription("http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn") private CharSequence regionalCertificateArn; /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn * */ @JsonIgnore public CharSequence getCertificateArn() { return certificateArn; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-certificatearn * */ @JsonIgnore public void setCertificateArn(CharSequence certificateArn) { this.certificateArn = certificateArn; } public DomainName withCertificateArn(CharSequence certificateArn) { this.certificateArn = certificateArn; return this; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname * */ @JsonIgnore public CharSequence getDomainName() { return domainName; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-domainname * */ @JsonIgnore public void setDomainName(CharSequence domainName) { this.domainName = domainName; } public DomainName withDomainName(CharSequence domainName) { this.domainName = domainName; return this; } /** * DomainNameEndpointConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-endpointconfiguration.html * */ @JsonIgnore public Property getEndpointConfiguration() { return endpointConfiguration; } /** * DomainNameEndpointConfiguration *

* http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-apigateway-domainname-endpointconfiguration.html * */ @JsonIgnore public void setEndpointConfiguration(Property endpointConfiguration) { this.endpointConfiguration = endpointConfiguration; } public DomainName withEndpointConfiguration(Property endpointConfiguration) { this.endpointConfiguration = endpointConfiguration; return this; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn * */ @JsonIgnore public CharSequence getRegionalCertificateArn() { return regionalCertificateArn; } /** * http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-domainname.html#cfn-apigateway-domainname-regionalcertificatearn * */ @JsonIgnore public void setRegionalCertificateArn(CharSequence regionalCertificateArn) { this.regionalCertificateArn = regionalCertificateArn; } public DomainName withRegionalCertificateArn(CharSequence regionalCertificateArn) { this.regionalCertificateArn = regionalCertificateArn; return this; } @Override public String toString() { return new ToStringBuilder(this).append("certificateArn", certificateArn).append("domainName", domainName).append("endpointConfiguration", endpointConfiguration).append("regionalCertificateArn", regionalCertificateArn).toString(); } @Override public int hashCode() { return new HashCodeBuilder().append(endpointConfiguration).append(certificateArn).append(regionalCertificateArn).append(domainName).toHashCode(); } @Override public boolean equals(Object other) { if (other == this) { return true; } if ((other instanceof DomainName) == false) { return false; } DomainName rhs = ((DomainName) other); return new EqualsBuilder().append(endpointConfiguration, rhs.endpointConfiguration).append(certificateArn, rhs.certificateArn).append(regionalCertificateArn, rhs.regionalCertificateArn).append(domainName, rhs.domainName).isEquals(); } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy