/* * 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.securityhub.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* VPN connection options. *
* * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class AwsEc2VpnConnectionOptionsDetails implements Serializable, Cloneable, StructuredPojo { /** ** Whether the VPN connection uses static routes only. *
*/ private Boolean staticRoutesOnly; /** ** The VPN tunnel options. *
*/ private java.util.List* Whether the VPN connection uses static routes only. *
* * @param staticRoutesOnly * Whether the VPN connection uses static routes only. */ public void setStaticRoutesOnly(Boolean staticRoutesOnly) { this.staticRoutesOnly = staticRoutesOnly; } /** ** Whether the VPN connection uses static routes only. *
* * @return Whether the VPN connection uses static routes only. */ public Boolean getStaticRoutesOnly() { return this.staticRoutesOnly; } /** ** Whether the VPN connection uses static routes only. *
* * @param staticRoutesOnly * Whether the VPN connection uses static routes only. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpnConnectionOptionsDetails withStaticRoutesOnly(Boolean staticRoutesOnly) { setStaticRoutesOnly(staticRoutesOnly); return this; } /** ** Whether the VPN connection uses static routes only. *
* * @return Whether the VPN connection uses static routes only. */ public Boolean isStaticRoutesOnly() { return this.staticRoutesOnly; } /** ** The VPN tunnel options. *
* * @return The VPN tunnel options. */ public java.util.List* The VPN tunnel options. *
* * @param tunnelOptions * The VPN tunnel options. */ public void setTunnelOptions(java.util.Collection* The VPN tunnel options. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTunnelOptions(java.util.Collection)} or {@link #withTunnelOptions(java.util.Collection)} if you want * to override the existing values. *
* * @param tunnelOptions * The VPN tunnel options. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpnConnectionOptionsDetails withTunnelOptions(AwsEc2VpnConnectionOptionsTunnelOptionsDetails... tunnelOptions) { if (this.tunnelOptions == null) { setTunnelOptions(new java.util.ArrayList* The VPN tunnel options. *
* * @param tunnelOptions * The VPN tunnel options. * @return Returns a reference to this object so that method calls can be chained together. */ public AwsEc2VpnConnectionOptionsDetails withTunnelOptions(java.util.Collection