/* * Copyright 2018-2023 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.accessanalyzer.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* The proposed InternetConfiguration or VpcConfiguration to apply to the Amazon S3 access * point. VpcConfiguration does not apply to multi-region access points. You can make the access point * accessible from the internet, or you can specify that all requests made through that access point must originate from * a specific virtual private cloud (VPC). You can specify only one type of network configuration. For more information, * see Creating access points. *

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

* The configuration for the Amazon S3 access point or multi-region access point with an Internet * origin. *

*/ private InternetConfiguration internetConfiguration; /** * @param vpcConfiguration */ public void setVpcConfiguration(VpcConfiguration vpcConfiguration) { this.vpcConfiguration = vpcConfiguration; } /** * @return */ public VpcConfiguration getVpcConfiguration() { return this.vpcConfiguration; } /** * @param vpcConfiguration * @return Returns a reference to this object so that method calls can be chained together. */ public NetworkOriginConfiguration withVpcConfiguration(VpcConfiguration vpcConfiguration) { setVpcConfiguration(vpcConfiguration); return this; } /** *

* The configuration for the Amazon S3 access point or multi-region access point with an Internet * origin. *

* * @param internetConfiguration * The configuration for the Amazon S3 access point or multi-region access point with an * Internet origin. */ public void setInternetConfiguration(InternetConfiguration internetConfiguration) { this.internetConfiguration = internetConfiguration; } /** *

* The configuration for the Amazon S3 access point or multi-region access point with an Internet * origin. *

* * @return The configuration for the Amazon S3 access point or multi-region access point with an * Internet origin. */ public InternetConfiguration getInternetConfiguration() { return this.internetConfiguration; } /** *

* The configuration for the Amazon S3 access point or multi-region access point with an Internet * origin. *

* * @param internetConfiguration * The configuration for the Amazon S3 access point or multi-region access point with an * Internet origin. * @return Returns a reference to this object so that method calls can be chained together. */ public NetworkOriginConfiguration withInternetConfiguration(InternetConfiguration internetConfiguration) { setInternetConfiguration(internetConfiguration); 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 (getVpcConfiguration() != null) sb.append("VpcConfiguration: ").append(getVpcConfiguration()).append(","); if (getInternetConfiguration() != null) sb.append("InternetConfiguration: ").append(getInternetConfiguration()); sb.append("}"); return sb.toString(); } @Override public boolean equals(Object obj) { if (this == obj) return true; if (obj == null) return false; if (obj instanceof NetworkOriginConfiguration == false) return false; NetworkOriginConfiguration other = (NetworkOriginConfiguration) obj; if (other.getVpcConfiguration() == null ^ this.getVpcConfiguration() == null) return false; if (other.getVpcConfiguration() != null && other.getVpcConfiguration().equals(this.getVpcConfiguration()) == false) return false; if (other.getInternetConfiguration() == null ^ this.getInternetConfiguration() == null) return false; if (other.getInternetConfiguration() != null && other.getInternetConfiguration().equals(this.getInternetConfiguration()) == false) return false; return true; } @Override public int hashCode() { final int prime = 31; int hashCode = 1; hashCode = prime * hashCode + ((getVpcConfiguration() == null) ? 0 : getVpcConfiguration().hashCode()); hashCode = prime * hashCode + ((getInternetConfiguration() == null) ? 0 : getInternetConfiguration().hashCode()); return hashCode; } @Override public NetworkOriginConfiguration clone() { try { return (NetworkOriginConfiguration) 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.accessanalyzer.model.transform.NetworkOriginConfigurationMarshaller.getInstance().marshall(this, protocolMarshaller); } }