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

software.amazon.awssdk.services.opsworks.model.ElasticIp Maven / Gradle / Ivy

Go to download

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

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.opsworks.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.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;

/**
 * 

* Describes an Elastic IP address. *

*/ @Generated("software.amazon.awssdk:codegen") public final class ElasticIp implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField IP_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Ip") .getter(getter(ElasticIp::ip)).setter(setter(Builder::ip)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Ip").build()).build(); private static final SdkField NAME_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Name") .getter(getter(ElasticIp::name)).setter(setter(Builder::name)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Name").build()).build(); private static final SdkField DOMAIN_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Domain") .getter(getter(ElasticIp::domain)).setter(setter(Builder::domain)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Domain").build()).build(); private static final SdkField REGION_FIELD = SdkField. builder(MarshallingType.STRING).memberName("Region") .getter(getter(ElasticIp::region)).setter(setter(Builder::region)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("Region").build()).build(); private static final SdkField INSTANCE_ID_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("InstanceId").getter(getter(ElasticIp::instanceId)).setter(setter(Builder::instanceId)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("InstanceId").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(IP_FIELD, NAME_FIELD, DOMAIN_FIELD, REGION_FIELD, INSTANCE_ID_FIELD)); private static final long serialVersionUID = 1L; private final String ip; private final String name; private final String domain; private final String region; private final String instanceId; private ElasticIp(BuilderImpl builder) { this.ip = builder.ip; this.name = builder.name; this.domain = builder.domain; this.region = builder.region; this.instanceId = builder.instanceId; } /** *

* The IP address. *

* * @return The IP address. */ public final String ip() { return ip; } /** *

* The name, which can be a maximum of 32 characters. *

* * @return The name, which can be a maximum of 32 characters. */ public final String name() { return name; } /** *

* The domain. *

* * @return The domain. */ public final String domain() { return domain; } /** *

* The Amazon Web Services Region. For more information, see Regions and Endpoints. *

* * @return The Amazon Web Services Region. For more information, see Regions and Endpoints. */ public final String region() { return region; } /** *

* The ID of the instance that the address is attached to. *

* * @return The ID of the instance that the address is attached to. */ public final String instanceId() { return instanceId; } @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(ip()); hashCode = 31 * hashCode + Objects.hashCode(name()); hashCode = 31 * hashCode + Objects.hashCode(domain()); hashCode = 31 * hashCode + Objects.hashCode(region()); hashCode = 31 * hashCode + Objects.hashCode(instanceId()); 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 ElasticIp)) { return false; } ElasticIp other = (ElasticIp) obj; return Objects.equals(ip(), other.ip()) && Objects.equals(name(), other.name()) && Objects.equals(domain(), other.domain()) && Objects.equals(region(), other.region()) && Objects.equals(instanceId(), other.instanceId()); } /** * 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("ElasticIp").add("Ip", ip()).add("Name", name()).add("Domain", domain()).add("Region", region()) .add("InstanceId", instanceId()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "Ip": return Optional.ofNullable(clazz.cast(ip())); case "Name": return Optional.ofNullable(clazz.cast(name())); case "Domain": return Optional.ofNullable(clazz.cast(domain())); case "Region": return Optional.ofNullable(clazz.cast(region())); case "InstanceId": return Optional.ofNullable(clazz.cast(instanceId())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((ElasticIp) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** *

* The IP address. *

* * @param ip * The IP address. * @return Returns a reference to this object so that method calls can be chained together. */ Builder ip(String ip); /** *

* The name, which can be a maximum of 32 characters. *

* * @param name * The name, which can be a maximum of 32 characters. * @return Returns a reference to this object so that method calls can be chained together. */ Builder name(String name); /** *

* The domain. *

* * @param domain * The domain. * @return Returns a reference to this object so that method calls can be chained together. */ Builder domain(String domain); /** *

* The Amazon Web Services Region. For more information, see Regions and Endpoints. *

* * @param region * The Amazon Web Services Region. For more information, see Regions and Endpoints. * @return Returns a reference to this object so that method calls can be chained together. */ Builder region(String region); /** *

* The ID of the instance that the address is attached to. *

* * @param instanceId * The ID of the instance that the address is attached to. * @return Returns a reference to this object so that method calls can be chained together. */ Builder instanceId(String instanceId); } static final class BuilderImpl implements Builder { private String ip; private String name; private String domain; private String region; private String instanceId; private BuilderImpl() { } private BuilderImpl(ElasticIp model) { ip(model.ip); name(model.name); domain(model.domain); region(model.region); instanceId(model.instanceId); } public final String getIp() { return ip; } public final void setIp(String ip) { this.ip = ip; } @Override public final Builder ip(String ip) { this.ip = ip; return this; } public final String getName() { return name; } public final void setName(String name) { this.name = name; } @Override public final Builder name(String name) { this.name = name; return this; } public final String getDomain() { return domain; } public final void setDomain(String domain) { this.domain = domain; } @Override public final Builder domain(String domain) { this.domain = domain; return this; } public final String getRegion() { return region; } public final void setRegion(String region) { this.region = region; } @Override public final Builder region(String region) { this.region = region; return this; } public final String getInstanceId() { return instanceId; } public final void setInstanceId(String instanceId) { this.instanceId = instanceId; } @Override public final Builder instanceId(String instanceId) { this.instanceId = instanceId; return this; } @Override public ElasticIp build() { return new ElasticIp(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy