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

software.amazon.awssdk.services.globalaccelerator.model.CustomRoutingDestinationConfiguration Maven / Gradle / Ivy

Go to download

The AWS Java SDK for Global Accelerator module holds the client classes that are used for communicating with Global Accelerator.

There is a newer version: 2.28.4
Show newest version
/*
 * 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.globalaccelerator.model;

import java.io.Serializable;
import java.util.Arrays;
import java.util.Collection;
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.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.ListTrait;
import software.amazon.awssdk.core.traits.LocationTrait;
import software.amazon.awssdk.core.util.DefaultSdkAutoConstructList;
import software.amazon.awssdk.core.util.SdkAutoConstructList;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 * 

* For a custom routing accelerator, sets the port range and protocol for all endpoints (virtual private cloud subnets) * in an endpoint group to accept client traffic on. *

*/ @Generated("software.amazon.awssdk:codegen") public final class CustomRoutingDestinationConfiguration implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField FROM_PORT_FIELD = SdkField. builder(MarshallingType.INTEGER) .memberName("FromPort").getter(getter(CustomRoutingDestinationConfiguration::fromPort)) .setter(setter(Builder::fromPort)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("FromPort").build()).build(); private static final SdkField TO_PORT_FIELD = SdkField. builder(MarshallingType.INTEGER) .memberName("ToPort").getter(getter(CustomRoutingDestinationConfiguration::toPort)).setter(setter(Builder::toPort)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("ToPort").build()).build(); private static final SdkField> PROTOCOLS_FIELD = SdkField .> builder(MarshallingType.LIST) .memberName("Protocols") .getter(getter(CustomRoutingDestinationConfiguration::protocolsAsStrings)) .setter(setter(Builder::protocolsWithStrings)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Protocols").build(), ListTrait .builder() .memberLocationName(null) .memberFieldInfo( SdkField. builder(MarshallingType.STRING) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD) .locationName("member").build()).build()).build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(FROM_PORT_FIELD, TO_PORT_FIELD, PROTOCOLS_FIELD)); private static final long serialVersionUID = 1L; private final Integer fromPort; private final Integer toPort; private final List protocols; private CustomRoutingDestinationConfiguration(BuilderImpl builder) { this.fromPort = builder.fromPort; this.toPort = builder.toPort; this.protocols = builder.protocols; } /** *

* The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing * accelerator. *

* * @return The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom * routing accelerator. */ public final Integer fromPort() { return fromPort; } /** *

* The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom routing * accelerator. *

* * @return The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom * routing accelerator. */ public final Integer toPort() { return toPort; } /** *

* The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be * either TCP or UDP. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasProtocols} method. *

* * @return The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol * can be either TCP or UDP. */ public final List protocols() { return CustomRoutingProtocolsCopier.copyStringToEnum(protocols); } /** * For responses, this returns true if the service returned a value for the Protocols property. This DOES NOT check * that the value is non-empty (for which, you should check the {@code isEmpty()} method on the property). This is * useful because the SDK will never return a null collection or map, but you may need to differentiate between the * service returning nothing (or null) and the service returning an empty collection or map. For requests, this * returns true if a value for the property was specified in the request builder, and false if a value was not * specified. */ public final boolean hasProtocols() { return protocols != null && !(protocols instanceof SdkAutoConstructList); } /** *

* The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be * either TCP or UDP. *

*

* Attempts to modify the collection returned by this method will result in an UnsupportedOperationException. *

*

* This method will never return null. If you would like to know whether the service returned this field (so that * you can differentiate between null and empty), you can use the {@link #hasProtocols} method. *

* * @return The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol * can be either TCP or UDP. */ public final List protocolsAsStrings() { return protocols; } @Override public Builder toBuilder() { return new BuilderImpl(this); } public static Builder builder() { return new BuilderImpl(); } public static Class serializableBuilderClass() { return BuilderImpl.class; } @Override public final int hashCode() { int hashCode = 1; hashCode = 31 * hashCode + Objects.hashCode(fromPort()); hashCode = 31 * hashCode + Objects.hashCode(toPort()); hashCode = 31 * hashCode + Objects.hashCode(hasProtocols() ? protocolsAsStrings() : null); 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 CustomRoutingDestinationConfiguration)) { return false; } CustomRoutingDestinationConfiguration other = (CustomRoutingDestinationConfiguration) obj; return Objects.equals(fromPort(), other.fromPort()) && Objects.equals(toPort(), other.toPort()) && hasProtocols() == other.hasProtocols() && Objects.equals(protocolsAsStrings(), other.protocolsAsStrings()); } /** * 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("CustomRoutingDestinationConfiguration").add("FromPort", fromPort()).add("ToPort", toPort()) .add("Protocols", hasProtocols() ? protocolsAsStrings() : null).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "FromPort": return Optional.ofNullable(clazz.cast(fromPort())); case "ToPort": return Optional.ofNullable(clazz.cast(toPort())); case "Protocols": return Optional.ofNullable(clazz.cast(protocolsAsStrings())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((CustomRoutingDestinationConfiguration) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The first port, inclusive, in the range of ports for the endpoint group that is associated with a custom * routing accelerator. *

* * @param fromPort * The first port, inclusive, in the range of ports for the endpoint group that is associated with a * custom routing accelerator. * @return Returns a reference to this object so that method calls can be chained together. */ Builder fromPort(Integer fromPort); /** *

* The last port, inclusive, in the range of ports for the endpoint group that is associated with a custom * routing accelerator. *

* * @param toPort * The last port, inclusive, in the range of ports for the endpoint group that is associated with a * custom routing accelerator. * @return Returns a reference to this object so that method calls can be chained together. */ Builder toPort(Integer toPort); /** *

* The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be * either TCP or UDP. *

* * @param protocols * The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol * can be either TCP or UDP. * @return Returns a reference to this object so that method calls can be chained together. */ Builder protocolsWithStrings(Collection protocols); /** *

* The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be * either TCP or UDP. *

* * @param protocols * The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol * can be either TCP or UDP. * @return Returns a reference to this object so that method calls can be chained together. */ Builder protocolsWithStrings(String... protocols); /** *

* The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be * either TCP or UDP. *

* * @param protocols * The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol * can be either TCP or UDP. * @return Returns a reference to this object so that method calls can be chained together. */ Builder protocols(Collection protocols); /** *

* The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol can be * either TCP or UDP. *

* * @param protocols * The protocol for the endpoint group that is associated with a custom routing accelerator. The protocol * can be either TCP or UDP. * @return Returns a reference to this object so that method calls can be chained together. */ Builder protocols(CustomRoutingProtocol... protocols); } static final class BuilderImpl implements Builder { private Integer fromPort; private Integer toPort; private List protocols = DefaultSdkAutoConstructList.getInstance(); private BuilderImpl() { } private BuilderImpl(CustomRoutingDestinationConfiguration model) { fromPort(model.fromPort); toPort(model.toPort); protocolsWithStrings(model.protocols); } public final Integer getFromPort() { return fromPort; } public final void setFromPort(Integer fromPort) { this.fromPort = fromPort; } @Override public final Builder fromPort(Integer fromPort) { this.fromPort = fromPort; return this; } public final Integer getToPort() { return toPort; } public final void setToPort(Integer toPort) { this.toPort = toPort; } @Override public final Builder toPort(Integer toPort) { this.toPort = toPort; return this; } public final Collection getProtocols() { if (protocols instanceof SdkAutoConstructList) { return null; } return protocols; } public final void setProtocols(Collection protocols) { this.protocols = CustomRoutingProtocolsCopier.copy(protocols); } @Override public final Builder protocolsWithStrings(Collection protocols) { this.protocols = CustomRoutingProtocolsCopier.copy(protocols); return this; } @Override @SafeVarargs public final Builder protocolsWithStrings(String... protocols) { protocolsWithStrings(Arrays.asList(protocols)); return this; } @Override public final Builder protocols(Collection protocols) { this.protocols = CustomRoutingProtocolsCopier.copyEnumToString(protocols); return this; } @Override @SafeVarargs public final Builder protocols(CustomRoutingProtocol... protocols) { protocols(Arrays.asList(protocols)); return this; } @Override public CustomRoutingDestinationConfiguration build() { return new CustomRoutingDestinationConfiguration(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy