
software.amazon.awssdk.services.appmesh.model.HttpGatewayRouteRewrite Maven / Gradle / Ivy
/*
* Copyright 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 software.amazon.awssdk.services.appmesh.model;
import java.io.Serializable;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import java.util.Objects;
import java.util.Optional;
import java.util.function.BiConsumer;
import java.util.function.Consumer;
import java.util.function.Function;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.core.SdkField;
import software.amazon.awssdk.core.SdkPojo;
import software.amazon.awssdk.core.protocol.MarshallLocation;
import software.amazon.awssdk.core.protocol.MarshallingType;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
* An object representing the gateway route to rewrite.
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class HttpGatewayRouteRewrite implements SdkPojo, Serializable,
ToCopyableBuilder {
private static final SdkField HOSTNAME_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("hostname")
.getter(getter(HttpGatewayRouteRewrite::hostname)).setter(setter(Builder::hostname))
.constructor(GatewayRouteHostnameRewrite::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("hostname").build()).build();
private static final SdkField PATH_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("path")
.getter(getter(HttpGatewayRouteRewrite::path)).setter(setter(Builder::path))
.constructor(HttpGatewayRoutePathRewrite::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("path").build()).build();
private static final SdkField PREFIX_FIELD = SdkField
. builder(MarshallingType.SDK_POJO).memberName("prefix")
.getter(getter(HttpGatewayRouteRewrite::prefix)).setter(setter(Builder::prefix))
.constructor(HttpGatewayRoutePrefixRewrite::builder)
.traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("prefix").build()).build();
private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(HOSTNAME_FIELD, PATH_FIELD,
PREFIX_FIELD));
private static final long serialVersionUID = 1L;
private final GatewayRouteHostnameRewrite hostname;
private final HttpGatewayRoutePathRewrite path;
private final HttpGatewayRoutePrefixRewrite prefix;
private HttpGatewayRouteRewrite(BuilderImpl builder) {
this.hostname = builder.hostname;
this.path = builder.path;
this.prefix = builder.prefix;
}
/**
*
* The host name to rewrite.
*
*
* @return The host name to rewrite.
*/
public final GatewayRouteHostnameRewrite hostname() {
return hostname;
}
/**
*
* The path to rewrite.
*
*
* @return The path to rewrite.
*/
public final HttpGatewayRoutePathRewrite path() {
return path;
}
/**
*
* The specified beginning characters to rewrite.
*
*
* @return The specified beginning characters to rewrite.
*/
public final HttpGatewayRoutePrefixRewrite prefix() {
return prefix;
}
@Override
public Builder toBuilder() {
return new BuilderImpl(this);
}
public static Builder builder() {
return new BuilderImpl();
}
public static Class extends Builder> serializableBuilderClass() {
return BuilderImpl.class;
}
@Override
public final int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(hostname());
hashCode = 31 * hashCode + Objects.hashCode(path());
hashCode = 31 * hashCode + Objects.hashCode(prefix());
return hashCode;
}
@Override
public final boolean equals(Object obj) {
return equalsBySdkFields(obj);
}
@Override
public final boolean equalsBySdkFields(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof HttpGatewayRouteRewrite)) {
return false;
}
HttpGatewayRouteRewrite other = (HttpGatewayRouteRewrite) obj;
return Objects.equals(hostname(), other.hostname()) && Objects.equals(path(), other.path())
&& Objects.equals(prefix(), other.prefix());
}
/**
* 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.
*/
@Override
public final String toString() {
return ToString.builder("HttpGatewayRouteRewrite").add("Hostname", hostname()).add("Path", path())
.add("Prefix", prefix()).build();
}
public final Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "hostname":
return Optional.ofNullable(clazz.cast(hostname()));
case "path":
return Optional.ofNullable(clazz.cast(path()));
case "prefix":
return Optional.ofNullable(clazz.cast(prefix()));
default:
return Optional.empty();
}
}
@Override
public final List> sdkFields() {
return SDK_FIELDS;
}
private static Function
© 2015 - 2025 Weber Informatics LLC | Privacy Policy