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

com.amazonaws.services.securityhub.model.AwsEc2VpcEndpointServiceDetails Maven / Gradle / Ivy

Go to download

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

There is a newer version: 1.12.780
Show newest version
/*
 * Copyright 2016-2021 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 com.amazonaws.services.securityhub.model;

import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.protocol.StructuredPojo;
import com.amazonaws.protocol.ProtocolMarshaller;

/**
 * 

* Contains details about the service configuration for a VPC endpoint service. *

* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AwsEc2VpcEndpointServiceDetails implements Serializable, Cloneable, StructuredPojo { /** *

* Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be * accepted. *

*/ private Boolean acceptanceRequired; /** *

* The Availability Zones where the service is available. *

*/ private java.util.List availabilityZones; /** *

* The DNS names for the service. *

*/ private java.util.List baseEndpointDnsNames; /** *

* Whether the service manages its VPC endpoints. *

*/ private Boolean managesVpcEndpoints; /** *

* The ARNs of the Gateway Load Balancers for the service. *

*/ private java.util.List gatewayLoadBalancerArns; /** *

* The ARNs of the Network Load Balancers for the service. *

*/ private java.util.List networkLoadBalancerArns; /** *

* The private DNS name for the service. *

*/ private String privateDnsName; /** *

* The identifier of the service. *

*/ private String serviceId; /** *

* The name of the service. *

*/ private String serviceName; /** *

* The current state of the service. *

*/ private String serviceState; /** *

* The types for the service. *

*/ private java.util.List serviceType; /** *

* Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be * accepted. *

* * @param acceptanceRequired * Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first * be accepted. */ public void setAcceptanceRequired(Boolean acceptanceRequired) { this.acceptanceRequired = acceptanceRequired; } /** *

* Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be * accepted. *

* * @return Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first * be accepted. */ public Boolean getAcceptanceRequired() { return this.acceptanceRequired; } /** *

* Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be * accepted. *

* * @param acceptanceRequired * Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first * be accepted. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withAcceptanceRequired(Boolean acceptanceRequired) { setAcceptanceRequired(acceptanceRequired); return this; } /** *

* Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first be * accepted. *

* * @return Whether requests from other Amazon Web Services accounts to create an endpoint to the service must first * be accepted. */ public Boolean isAcceptanceRequired() { return this.acceptanceRequired; } /** *

* The Availability Zones where the service is available. *

* * @return The Availability Zones where the service is available. */ public java.util.List getAvailabilityZones() { return availabilityZones; } /** *

* The Availability Zones where the service is available. *

* * @param availabilityZones * The Availability Zones where the service is available. */ public void setAvailabilityZones(java.util.Collection availabilityZones) { if (availabilityZones == null) { this.availabilityZones = null; return; } this.availabilityZones = new java.util.ArrayList(availabilityZones); } /** *

* The Availability Zones where the service is available. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setAvailabilityZones(java.util.Collection)} or {@link #withAvailabilityZones(java.util.Collection)} if * you want to override the existing values. *

* * @param availabilityZones * The Availability Zones where the service is available. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withAvailabilityZones(String... availabilityZones) { if (this.availabilityZones == null) { setAvailabilityZones(new java.util.ArrayList(availabilityZones.length)); } for (String ele : availabilityZones) { this.availabilityZones.add(ele); } return this; } /** *

* The Availability Zones where the service is available. *

* * @param availabilityZones * The Availability Zones where the service is available. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withAvailabilityZones(java.util.Collection availabilityZones) { setAvailabilityZones(availabilityZones); return this; } /** *

* The DNS names for the service. *

* * @return The DNS names for the service. */ public java.util.List getBaseEndpointDnsNames() { return baseEndpointDnsNames; } /** *

* The DNS names for the service. *

* * @param baseEndpointDnsNames * The DNS names for the service. */ public void setBaseEndpointDnsNames(java.util.Collection baseEndpointDnsNames) { if (baseEndpointDnsNames == null) { this.baseEndpointDnsNames = null; return; } this.baseEndpointDnsNames = new java.util.ArrayList(baseEndpointDnsNames); } /** *

* The DNS names for the service. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setBaseEndpointDnsNames(java.util.Collection)} or {@link #withBaseEndpointDnsNames(java.util.Collection)} * if you want to override the existing values. *

* * @param baseEndpointDnsNames * The DNS names for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withBaseEndpointDnsNames(String... baseEndpointDnsNames) { if (this.baseEndpointDnsNames == null) { setBaseEndpointDnsNames(new java.util.ArrayList(baseEndpointDnsNames.length)); } for (String ele : baseEndpointDnsNames) { this.baseEndpointDnsNames.add(ele); } return this; } /** *

* The DNS names for the service. *

* * @param baseEndpointDnsNames * The DNS names for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withBaseEndpointDnsNames(java.util.Collection baseEndpointDnsNames) { setBaseEndpointDnsNames(baseEndpointDnsNames); return this; } /** *

* Whether the service manages its VPC endpoints. *

* * @param managesVpcEndpoints * Whether the service manages its VPC endpoints. */ public void setManagesVpcEndpoints(Boolean managesVpcEndpoints) { this.managesVpcEndpoints = managesVpcEndpoints; } /** *

* Whether the service manages its VPC endpoints. *

* * @return Whether the service manages its VPC endpoints. */ public Boolean getManagesVpcEndpoints() { return this.managesVpcEndpoints; } /** *

* Whether the service manages its VPC endpoints. *

* * @param managesVpcEndpoints * Whether the service manages its VPC endpoints. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withManagesVpcEndpoints(Boolean managesVpcEndpoints) { setManagesVpcEndpoints(managesVpcEndpoints); return this; } /** *

* Whether the service manages its VPC endpoints. *

* * @return Whether the service manages its VPC endpoints. */ public Boolean isManagesVpcEndpoints() { return this.managesVpcEndpoints; } /** *

* The ARNs of the Gateway Load Balancers for the service. *

* * @return The ARNs of the Gateway Load Balancers for the service. */ public java.util.List getGatewayLoadBalancerArns() { return gatewayLoadBalancerArns; } /** *

* The ARNs of the Gateway Load Balancers for the service. *

* * @param gatewayLoadBalancerArns * The ARNs of the Gateway Load Balancers for the service. */ public void setGatewayLoadBalancerArns(java.util.Collection gatewayLoadBalancerArns) { if (gatewayLoadBalancerArns == null) { this.gatewayLoadBalancerArns = null; return; } this.gatewayLoadBalancerArns = new java.util.ArrayList(gatewayLoadBalancerArns); } /** *

* The ARNs of the Gateway Load Balancers for the service. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setGatewayLoadBalancerArns(java.util.Collection)} or * {@link #withGatewayLoadBalancerArns(java.util.Collection)} if you want to override the existing values. *

* * @param gatewayLoadBalancerArns * The ARNs of the Gateway Load Balancers for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withGatewayLoadBalancerArns(String... gatewayLoadBalancerArns) { if (this.gatewayLoadBalancerArns == null) { setGatewayLoadBalancerArns(new java.util.ArrayList(gatewayLoadBalancerArns.length)); } for (String ele : gatewayLoadBalancerArns) { this.gatewayLoadBalancerArns.add(ele); } return this; } /** *

* The ARNs of the Gateway Load Balancers for the service. *

* * @param gatewayLoadBalancerArns * The ARNs of the Gateway Load Balancers for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withGatewayLoadBalancerArns(java.util.Collection gatewayLoadBalancerArns) { setGatewayLoadBalancerArns(gatewayLoadBalancerArns); return this; } /** *

* The ARNs of the Network Load Balancers for the service. *

* * @return The ARNs of the Network Load Balancers for the service. */ public java.util.List getNetworkLoadBalancerArns() { return networkLoadBalancerArns; } /** *

* The ARNs of the Network Load Balancers for the service. *

* * @param networkLoadBalancerArns * The ARNs of the Network Load Balancers for the service. */ public void setNetworkLoadBalancerArns(java.util.Collection networkLoadBalancerArns) { if (networkLoadBalancerArns == null) { this.networkLoadBalancerArns = null; return; } this.networkLoadBalancerArns = new java.util.ArrayList(networkLoadBalancerArns); } /** *

* The ARNs of the Network Load Balancers for the service. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setNetworkLoadBalancerArns(java.util.Collection)} or * {@link #withNetworkLoadBalancerArns(java.util.Collection)} if you want to override the existing values. *

* * @param networkLoadBalancerArns * The ARNs of the Network Load Balancers for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withNetworkLoadBalancerArns(String... networkLoadBalancerArns) { if (this.networkLoadBalancerArns == null) { setNetworkLoadBalancerArns(new java.util.ArrayList(networkLoadBalancerArns.length)); } for (String ele : networkLoadBalancerArns) { this.networkLoadBalancerArns.add(ele); } return this; } /** *

* The ARNs of the Network Load Balancers for the service. *

* * @param networkLoadBalancerArns * The ARNs of the Network Load Balancers for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withNetworkLoadBalancerArns(java.util.Collection networkLoadBalancerArns) { setNetworkLoadBalancerArns(networkLoadBalancerArns); return this; } /** *

* The private DNS name for the service. *

* * @param privateDnsName * The private DNS name for the service. */ public void setPrivateDnsName(String privateDnsName) { this.privateDnsName = privateDnsName; } /** *

* The private DNS name for the service. *

* * @return The private DNS name for the service. */ public String getPrivateDnsName() { return this.privateDnsName; } /** *

* The private DNS name for the service. *

* * @param privateDnsName * The private DNS name for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withPrivateDnsName(String privateDnsName) { setPrivateDnsName(privateDnsName); return this; } /** *

* The identifier of the service. *

* * @param serviceId * The identifier of the service. */ public void setServiceId(String serviceId) { this.serviceId = serviceId; } /** *

* The identifier of the service. *

* * @return The identifier of the service. */ public String getServiceId() { return this.serviceId; } /** *

* The identifier of the service. *

* * @param serviceId * The identifier of the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withServiceId(String serviceId) { setServiceId(serviceId); return this; } /** *

* The name of the service. *

* * @param serviceName * The name of the service. */ public void setServiceName(String serviceName) { this.serviceName = serviceName; } /** *

* The name of the service. *

* * @return The name of the service. */ public String getServiceName() { return this.serviceName; } /** *

* The name of the service. *

* * @param serviceName * The name of the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withServiceName(String serviceName) { setServiceName(serviceName); return this; } /** *

* The current state of the service. *

* * @param serviceState * The current state of the service. */ public void setServiceState(String serviceState) { this.serviceState = serviceState; } /** *

* The current state of the service. *

* * @return The current state of the service. */ public String getServiceState() { return this.serviceState; } /** *

* The current state of the service. *

* * @param serviceState * The current state of the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withServiceState(String serviceState) { setServiceState(serviceState); return this; } /** *

* The types for the service. *

* * @return The types for the service. */ public java.util.List getServiceType() { return serviceType; } /** *

* The types for the service. *

* * @param serviceType * The types for the service. */ public void setServiceType(java.util.Collection serviceType) { if (serviceType == null) { this.serviceType = null; return; } this.serviceType = new java.util.ArrayList(serviceType); } /** *

* The types for the service. *

*

* NOTE: This method appends the values to the existing list (if any). Use * {@link #setServiceType(java.util.Collection)} or {@link #withServiceType(java.util.Collection)} if you want to * override the existing values. *

* * @param serviceType * The types for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withServiceType(AwsEc2VpcEndpointServiceServiceTypeDetails... serviceType) { if (this.serviceType == null) { setServiceType(new java.util.ArrayList(serviceType.length)); } for (AwsEc2VpcEndpointServiceServiceTypeDetails ele : serviceType) { this.serviceType.add(ele); } return this; } /** *

* The types for the service. *

* * @param serviceType * The types for the service. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpcEndpointServiceDetails withServiceType(java.util.Collection serviceType) { setServiceType(serviceType); return this; } /** * 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. * * @return A string representation of this object. * * @see java.lang.Object#toString() */ @Override public String toString() { StringBuilder sb = new StringBuilder(); sb.append("{"); if (getAcceptanceRequired() != null) sb.append("AcceptanceRequired: ").append(getAcceptanceRequired()).append(","); if (getAvailabilityZones() != null) sb.append("AvailabilityZones: ").append(getAvailabilityZones()).append(","); if (getBaseEndpointDnsNames() != null) sb.append("BaseEndpointDnsNames: ").append(getBaseEndpointDnsNames()).append(","); if (getManagesVpcEndpoints() != null) sb.append("ManagesVpcEndpoints: ").append(getManagesVpcEndpoints()).append(","); if (getGatewayLoadBalancerArns() != null) sb.append("GatewayLoadBalancerArns: ").append(getGatewayLoadBalancerArns()).append(","); if (getNetworkLoadBalancerArns() != null) sb.append("NetworkLoadBalancerArns: ").append(getNetworkLoadBalancerArns()).append(","); if (getPrivateDnsName() != null) sb.append("PrivateDnsName: ").append(getPrivateDnsName()).append(","); if (getServiceId() != null) sb.append("ServiceId: ").append(getServiceId()).append(","); if (getServiceName() != null) sb.append("ServiceName: ").append(getServiceName()).append(","); if (getServiceState() != null) sb.append("ServiceState: ").append(getServiceState()).append(","); if (getServiceType() != null) sb.append("ServiceType: ").append(getServiceType()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof AwsEc2VpcEndpointServiceDetails == false) return false; AwsEc2VpcEndpointServiceDetails other = (AwsEc2VpcEndpointServiceDetails) obj; if (other.getAcceptanceRequired() == null ^ this.getAcceptanceRequired() == null) return false; if (other.getAcceptanceRequired() != null && other.getAcceptanceRequired().equals(this.getAcceptanceRequired()) == false) return false; if (other.getAvailabilityZones() == null ^ this.getAvailabilityZones() == null) return false; if (other.getAvailabilityZones() != null && other.getAvailabilityZones().equals(this.getAvailabilityZones()) == false) return false; if (other.getBaseEndpointDnsNames() == null ^ this.getBaseEndpointDnsNames() == null) return false; if (other.getBaseEndpointDnsNames() != null && other.getBaseEndpointDnsNames().equals(this.getBaseEndpointDnsNames()) == false) return false; if (other.getManagesVpcEndpoints() == null ^ this.getManagesVpcEndpoints() == null) return false; if (other.getManagesVpcEndpoints() != null && other.getManagesVpcEndpoints().equals(this.getManagesVpcEndpoints()) == false) return false; if (other.getGatewayLoadBalancerArns() == null ^ this.getGatewayLoadBalancerArns() == null) return false; if (other.getGatewayLoadBalancerArns() != null && other.getGatewayLoadBalancerArns().equals(this.getGatewayLoadBalancerArns()) == false) return false; if (other.getNetworkLoadBalancerArns() == null ^ this.getNetworkLoadBalancerArns() == null) return false; if (other.getNetworkLoadBalancerArns() != null && other.getNetworkLoadBalancerArns().equals(this.getNetworkLoadBalancerArns()) == false) return false; if (other.getPrivateDnsName() == null ^ this.getPrivateDnsName() == null) return false; if (other.getPrivateDnsName() != null && other.getPrivateDnsName().equals(this.getPrivateDnsName()) == false) return false; if (other.getServiceId() == null ^ this.getServiceId() == null) return false; if (other.getServiceId() != null && other.getServiceId().equals(this.getServiceId()) == false) return false; if (other.getServiceName() == null ^ this.getServiceName() == null) return false; if (other.getServiceName() != null && other.getServiceName().equals(this.getServiceName()) == false) return false; if (other.getServiceState() == null ^ this.getServiceState() == null) return false; if (other.getServiceState() != null && other.getServiceState().equals(this.getServiceState()) == false) return false; if (other.getServiceType() == null ^ this.getServiceType() == null) return false; if (other.getServiceType() != null && other.getServiceType().equals(this.getServiceType()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getAcceptanceRequired() == null) ? 0 : getAcceptanceRequired().hashCode()); hashCode = prime * hashCode + ((getAvailabilityZones() == null) ? 0 : getAvailabilityZones().hashCode()); hashCode = prime * hashCode + ((getBaseEndpointDnsNames() == null) ? 0 : getBaseEndpointDnsNames().hashCode()); hashCode = prime * hashCode + ((getManagesVpcEndpoints() == null) ? 0 : getManagesVpcEndpoints().hashCode()); hashCode = prime * hashCode + ((getGatewayLoadBalancerArns() == null) ? 0 : getGatewayLoadBalancerArns().hashCode()); hashCode = prime * hashCode + ((getNetworkLoadBalancerArns() == null) ? 0 : getNetworkLoadBalancerArns().hashCode()); hashCode = prime * hashCode + ((getPrivateDnsName() == null) ? 0 : getPrivateDnsName().hashCode()); hashCode = prime * hashCode + ((getServiceId() == null) ? 0 : getServiceId().hashCode()); hashCode = prime * hashCode + ((getServiceName() == null) ? 0 : getServiceName().hashCode()); hashCode = prime * hashCode + ((getServiceState() == null) ? 0 : getServiceState().hashCode()); hashCode = prime * hashCode + ((getServiceType() == null) ? 0 : getServiceType().hashCode()); return hashCode; } @Override public AwsEc2VpcEndpointServiceDetails clone() { try { return (AwsEc2VpcEndpointServiceDetails) super.clone(); } catch (CloneNotSupportedException e) { throw new IllegalStateException("Got a CloneNotSupportedException from Object.clone() " + "even though we're Cloneable!", e); } } @com.amazonaws.annotation.SdkInternalApi @Override public void marshall(ProtocolMarshaller protocolMarshaller) { com.amazonaws.services.securityhub.model.transform.AwsEc2VpcEndpointServiceDetailsMarshaller.getInstance().marshall(this, protocolMarshaller); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy