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

software.amazon.awssdk.services.kafka.model.VpcConnection Maven / Gradle / Ivy

Go to download

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

There is a newer version: 2.29.15
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.kafka.model;

import java.io.Serializable;
import java.time.Instant;
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.core.traits.TimestampFormatTrait;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;

/**
 *
 * 

* The VPC connection object. *

* */ @Generated("software.amazon.awssdk:codegen") public final class VpcConnection implements SdkPojo, Serializable, ToCopyableBuilder { private static final SdkField VPC_CONNECTION_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("VpcConnectionArn").getter(getter(VpcConnection::vpcConnectionArn)) .setter(setter(Builder::vpcConnectionArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("vpcConnectionArn").build()).build(); private static final SdkField TARGET_CLUSTER_ARN_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("TargetClusterArn").getter(getter(VpcConnection::targetClusterArn)) .setter(setter(Builder::targetClusterArn)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("targetClusterArn").build()).build(); private static final SdkField CREATION_TIME_FIELD = SdkField . builder(MarshallingType.INSTANT) .memberName("CreationTime") .getter(getter(VpcConnection::creationTime)) .setter(setter(Builder::creationTime)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("creationTime").build(), TimestampFormatTrait.create(TimestampFormatTrait.Format.ISO_8601)).build(); private static final SdkField AUTHENTICATION_FIELD = SdkField. builder(MarshallingType.STRING) .memberName("Authentication").getter(getter(VpcConnection::authentication)).setter(setter(Builder::authentication)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("authentication").build()).build(); private static final SdkField VPC_ID_FIELD = SdkField. builder(MarshallingType.STRING).memberName("VpcId") .getter(getter(VpcConnection::vpcId)).setter(setter(Builder::vpcId)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("vpcId").build()).build(); private static final SdkField STATE_FIELD = SdkField. builder(MarshallingType.STRING).memberName("State") .getter(getter(VpcConnection::stateAsString)).setter(setter(Builder::state)) .traits(LocationTrait.builder().location(MarshallLocation.PAYLOAD).locationName("state").build()).build(); private static final List> SDK_FIELDS = Collections.unmodifiableList(Arrays.asList(VPC_CONNECTION_ARN_FIELD, TARGET_CLUSTER_ARN_FIELD, CREATION_TIME_FIELD, AUTHENTICATION_FIELD, VPC_ID_FIELD, STATE_FIELD)); private static final long serialVersionUID = 1L; private final String vpcConnectionArn; private final String targetClusterArn; private final Instant creationTime; private final String authentication; private final String vpcId; private final String state; private VpcConnection(BuilderImpl builder) { this.vpcConnectionArn = builder.vpcConnectionArn; this.targetClusterArn = builder.targetClusterArn; this.creationTime = builder.creationTime; this.authentication = builder.authentication; this.vpcId = builder.vpcId; this.state = builder.state; } /** * *

* The ARN that identifies the Vpc Connection. *

* * @return

* The ARN that identifies the Vpc Connection. *

*/ public final String vpcConnectionArn() { return vpcConnectionArn; } /** * *

* The ARN that identifies the Cluster which the Vpc Connection belongs to. *

* * @return

* The ARN that identifies the Cluster which the Vpc Connection belongs to. *

*/ public final String targetClusterArn() { return targetClusterArn; } /** * *

* Creation time of the Vpc Connection. *

* * @return

* Creation time of the Vpc Connection. *

*/ public final Instant creationTime() { return creationTime; } /** * *

* Information about the auth scheme of Vpc Connection. *

* * @return

* Information about the auth scheme of Vpc Connection. *

*/ public final String authentication() { return authentication; } /** * *

* The vpcId that belongs to the Vpc Connection. *

* * @return

* The vpcId that belongs to the Vpc Connection. *

*/ public final String vpcId() { return vpcId; } /** * *

* State of the Vpc Connection. *

* *

* If the service returns an enum value that is not available in the current SDK version, {@link #state} will return * {@link VpcConnectionState#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #stateAsString}. *

* * @return

* State of the Vpc Connection. *

* @see VpcConnectionState */ public final VpcConnectionState state() { return VpcConnectionState.fromValue(state); } /** * *

* State of the Vpc Connection. *

* *

* If the service returns an enum value that is not available in the current SDK version, {@link #state} will return * {@link VpcConnectionState#UNKNOWN_TO_SDK_VERSION}. The raw value returned by the service is available from * {@link #stateAsString}. *

* * @return

* State of the Vpc Connection. *

* @see VpcConnectionState */ public final String stateAsString() { return state; } @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(vpcConnectionArn()); hashCode = 31 * hashCode + Objects.hashCode(targetClusterArn()); hashCode = 31 * hashCode + Objects.hashCode(creationTime()); hashCode = 31 * hashCode + Objects.hashCode(authentication()); hashCode = 31 * hashCode + Objects.hashCode(vpcId()); hashCode = 31 * hashCode + Objects.hashCode(stateAsString()); 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 VpcConnection)) { return false; } VpcConnection other = (VpcConnection) obj; return Objects.equals(vpcConnectionArn(), other.vpcConnectionArn()) && Objects.equals(targetClusterArn(), other.targetClusterArn()) && Objects.equals(creationTime(), other.creationTime()) && Objects.equals(authentication(), other.authentication()) && Objects.equals(vpcId(), other.vpcId()) && Objects.equals(stateAsString(), other.stateAsString()); } /** * 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("VpcConnection").add("VpcConnectionArn", vpcConnectionArn()) .add("TargetClusterArn", targetClusterArn()).add("CreationTime", creationTime()) .add("Authentication", authentication()).add("VpcId", vpcId()).add("State", stateAsString()).build(); } public final Optional getValueForField(String fieldName, Class clazz) { switch (fieldName) { case "VpcConnectionArn": return Optional.ofNullable(clazz.cast(vpcConnectionArn())); case "TargetClusterArn": return Optional.ofNullable(clazz.cast(targetClusterArn())); case "CreationTime": return Optional.ofNullable(clazz.cast(creationTime())); case "Authentication": return Optional.ofNullable(clazz.cast(authentication())); case "VpcId": return Optional.ofNullable(clazz.cast(vpcId())); case "State": return Optional.ofNullable(clazz.cast(stateAsString())); default: return Optional.empty(); } } @Override public final List> sdkFields() { return SDK_FIELDS; } private static Function getter(Function g) { return obj -> g.apply((VpcConnection) obj); } private static BiConsumer setter(BiConsumer s) { return (obj, val) -> s.accept((Builder) obj, val); } public interface Builder extends SdkPojo, CopyableBuilder { /** * *

* The ARN that identifies the Vpc Connection. *

* * @param vpcConnectionArn *

* The ARN that identifies the Vpc Connection. *

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

* The ARN that identifies the Cluster which the Vpc Connection belongs to. *

* * @param targetClusterArn *

* The ARN that identifies the Cluster which the Vpc Connection belongs to. *

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

* Creation time of the Vpc Connection. *

* * @param creationTime *

* Creation time of the Vpc Connection. *

* @return Returns a reference to this object so that method calls can be chained together. */ Builder creationTime(Instant creationTime); /** * *

* Information about the auth scheme of Vpc Connection. *

* * @param authentication *

* Information about the auth scheme of Vpc Connection. *

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

* The vpcId that belongs to the Vpc Connection. *

* * @param vpcId *

* The vpcId that belongs to the Vpc Connection. *

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

* State of the Vpc Connection. *

* * @param state *

* State of the Vpc Connection. *

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

* State of the Vpc Connection. *

* * @param state *

* State of the Vpc Connection. *

* @see VpcConnectionState * @return Returns a reference to this object so that method calls can be chained together. * @see VpcConnectionState */ Builder state(VpcConnectionState state); } static final class BuilderImpl implements Builder { private String vpcConnectionArn; private String targetClusterArn; private Instant creationTime; private String authentication; private String vpcId; private String state; private BuilderImpl() { } private BuilderImpl(VpcConnection model) { vpcConnectionArn(model.vpcConnectionArn); targetClusterArn(model.targetClusterArn); creationTime(model.creationTime); authentication(model.authentication); vpcId(model.vpcId); state(model.state); } public final String getVpcConnectionArn() { return vpcConnectionArn; } public final void setVpcConnectionArn(String vpcConnectionArn) { this.vpcConnectionArn = vpcConnectionArn; } @Override public final Builder vpcConnectionArn(String vpcConnectionArn) { this.vpcConnectionArn = vpcConnectionArn; return this; } public final String getTargetClusterArn() { return targetClusterArn; } public final void setTargetClusterArn(String targetClusterArn) { this.targetClusterArn = targetClusterArn; } @Override public final Builder targetClusterArn(String targetClusterArn) { this.targetClusterArn = targetClusterArn; return this; } public final Instant getCreationTime() { return creationTime; } public final void setCreationTime(Instant creationTime) { this.creationTime = creationTime; } @Override public final Builder creationTime(Instant creationTime) { this.creationTime = creationTime; return this; } public final String getAuthentication() { return authentication; } public final void setAuthentication(String authentication) { this.authentication = authentication; } @Override public final Builder authentication(String authentication) { this.authentication = authentication; return this; } public final String getVpcId() { return vpcId; } public final void setVpcId(String vpcId) { this.vpcId = vpcId; } @Override public final Builder vpcId(String vpcId) { this.vpcId = vpcId; return this; } public final String getState() { return state; } public final void setState(String state) { this.state = state; } @Override public final Builder state(String state) { this.state = state; return this; } @Override public final Builder state(VpcConnectionState state) { this.state(state == null ? null : state.toString()); return this; } @Override public VpcConnection build() { return new VpcConnection(this); } @Override public List> sdkFields() { return SDK_FIELDS; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy