software.amazon.awssdk.services.kafka.model.VpcConnection Maven / Gradle / Ivy
Show all versions of kafka Show documentation
/*
* 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 extends Builder> 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