![JAR search and dependency download from the Maven repository](/logo.png)
software.amazon.awssdk.services.databasemigration.model.VpcSecurityGroupMembership Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dms Show documentation
Show all versions of dms Show documentation
The AWS Java SDK for AWS Database Migration Service module holds the client classes that are used for
communicating with AWS Database Migration Service.
The newest version!
/*
* Copyright 2013-2018 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.databasemigration.model;
import java.util.Objects;
import java.util.Optional;
import software.amazon.awssdk.annotations.Generated;
import software.amazon.awssdk.annotations.SdkInternalApi;
import software.amazon.awssdk.core.protocol.ProtocolMarshaller;
import software.amazon.awssdk.core.protocol.StructuredPojo;
import software.amazon.awssdk.services.databasemigration.transform.VpcSecurityGroupMembershipMarshaller;
import software.amazon.awssdk.utils.ToString;
import software.amazon.awssdk.utils.builder.CopyableBuilder;
import software.amazon.awssdk.utils.builder.ToCopyableBuilder;
/**
*
*/
@Generated("software.amazon.awssdk:codegen")
public final class VpcSecurityGroupMembership implements StructuredPojo,
ToCopyableBuilder {
private final String vpcSecurityGroupId;
private final String status;
private VpcSecurityGroupMembership(BuilderImpl builder) {
this.vpcSecurityGroupId = builder.vpcSecurityGroupId;
this.status = builder.status;
}
/**
*
* The VPC security group Id.
*
*
* @return The VPC security group Id.
*/
public String vpcSecurityGroupId() {
return vpcSecurityGroupId;
}
/**
*
* The status of the VPC security group.
*
*
* @return The status of the VPC security group.
*/
public String status() {
return status;
}
@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 int hashCode() {
int hashCode = 1;
hashCode = 31 * hashCode + Objects.hashCode(vpcSecurityGroupId());
hashCode = 31 * hashCode + Objects.hashCode(status());
return hashCode;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (!(obj instanceof VpcSecurityGroupMembership)) {
return false;
}
VpcSecurityGroupMembership other = (VpcSecurityGroupMembership) obj;
return Objects.equals(vpcSecurityGroupId(), other.vpcSecurityGroupId()) && Objects.equals(status(), other.status());
}
@Override
public String toString() {
return ToString.builder("VpcSecurityGroupMembership").add("VpcSecurityGroupId", vpcSecurityGroupId())
.add("Status", status()).build();
}
public Optional getValueForField(String fieldName, Class clazz) {
switch (fieldName) {
case "VpcSecurityGroupId":
return Optional.ofNullable(clazz.cast(vpcSecurityGroupId()));
case "Status":
return Optional.ofNullable(clazz.cast(status()));
default:
return Optional.empty();
}
}
@SdkInternalApi
@Override
public void marshall(ProtocolMarshaller protocolMarshaller) {
VpcSecurityGroupMembershipMarshaller.getInstance().marshall(this, protocolMarshaller);
}
public interface Builder extends CopyableBuilder {
/**
*
* The VPC security group Id.
*
*
* @param vpcSecurityGroupId
* The VPC security group Id.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder vpcSecurityGroupId(String vpcSecurityGroupId);
/**
*
* The status of the VPC security group.
*
*
* @param status
* The status of the VPC security group.
* @return Returns a reference to this object so that method calls can be chained together.
*/
Builder status(String status);
}
static final class BuilderImpl implements Builder {
private String vpcSecurityGroupId;
private String status;
private BuilderImpl() {
}
private BuilderImpl(VpcSecurityGroupMembership model) {
vpcSecurityGroupId(model.vpcSecurityGroupId);
status(model.status);
}
public final String getVpcSecurityGroupId() {
return vpcSecurityGroupId;
}
@Override
public final Builder vpcSecurityGroupId(String vpcSecurityGroupId) {
this.vpcSecurityGroupId = vpcSecurityGroupId;
return this;
}
public final void setVpcSecurityGroupId(String vpcSecurityGroupId) {
this.vpcSecurityGroupId = vpcSecurityGroupId;
}
public final String getStatus() {
return status;
}
@Override
public final Builder status(String status) {
this.status = status;
return this;
}
public final void setStatus(String status) {
this.status = status;
}
@Override
public VpcSecurityGroupMembership build() {
return new VpcSecurityGroupMembership(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy