/* * 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.synthetics.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *
* If this canary is to test an endpoint in a VPC, this structure contains information about the subnets and security * groups of the VPC endpoint. For more information, see * Running a Canary in a VPC. *
* * @see AWS API * Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class VpcConfigOutput implements Serializable, Cloneable, StructuredPojo { /** ** The IDs of the VPC where this canary is to run. *
*/ private String vpcId; /** ** The IDs of the subnets where this canary is to run. *
*/ private java.util.List* The IDs of the security groups for this canary. *
*/ private java.util.List* The IDs of the VPC where this canary is to run. *
* * @param vpcId * The IDs of the VPC where this canary is to run. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** ** The IDs of the VPC where this canary is to run. *
* * @return The IDs of the VPC where this canary is to run. */ public String getVpcId() { return this.vpcId; } /** ** The IDs of the VPC where this canary is to run. *
* * @param vpcId * The IDs of the VPC where this canary is to run. * @return Returns a reference to this object so that method calls can be chained together. */ public VpcConfigOutput withVpcId(String vpcId) { setVpcId(vpcId); return this; } /** ** The IDs of the subnets where this canary is to run. *
* * @return The IDs of the subnets where this canary is to run. */ public java.util.List* The IDs of the subnets where this canary is to run. *
* * @param subnetIds * The IDs of the subnets where this canary is to run. */ public void setSubnetIds(java.util.Collection* The IDs of the subnets where this canary is to run. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setSubnetIds(java.util.Collection)} or {@link #withSubnetIds(java.util.Collection)} if you want to * override the existing values. *
* * @param subnetIds * The IDs of the subnets where this canary is to run. * @return Returns a reference to this object so that method calls can be chained together. */ public VpcConfigOutput withSubnetIds(String... subnetIds) { if (this.subnetIds == null) { setSubnetIds(new java.util.ArrayList* The IDs of the subnets where this canary is to run. *
* * @param subnetIds * The IDs of the subnets where this canary is to run. * @return Returns a reference to this object so that method calls can be chained together. */ public VpcConfigOutput withSubnetIds(java.util.Collection* The IDs of the security groups for this canary. *
* * @return The IDs of the security groups for this canary. */ public java.util.List* The IDs of the security groups for this canary. *
* * @param securityGroupIds * The IDs of the security groups for this canary. */ public void setSecurityGroupIds(java.util.Collection* The IDs of the security groups for this canary. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setSecurityGroupIds(java.util.Collection)} or {@link #withSecurityGroupIds(java.util.Collection)} if you * want to override the existing values. *
* * @param securityGroupIds * The IDs of the security groups for this canary. * @return Returns a reference to this object so that method calls can be chained together. */ public VpcConfigOutput withSecurityGroupIds(String... securityGroupIds) { if (this.securityGroupIds == null) { setSecurityGroupIds(new java.util.ArrayList* The IDs of the security groups for this canary. *
* * @param securityGroupIds * The IDs of the security groups for this canary. * @return Returns a reference to this object so that method calls can be chained together. */ public VpcConfigOutput withSecurityGroupIds(java.util.Collection