/*
* 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.ec2.model;
import java.io.Serializable;
import javax.annotation.Generated;
import com.amazonaws.AmazonWebServiceRequest;
import com.amazonaws.Request;
import com.amazonaws.services.ec2.model.transform.CreateVpcPeeringConnectionRequestMarshaller;
/**
*
*/
@Generated("com.amazonaws:aws-java-sdk-code-generator")
public class CreateVpcPeeringConnectionRequest extends AmazonWebServiceRequest implements Serializable, Cloneable,
DryRunSupportedRequest
* The Amazon Web Services account ID of the owner of the accepter VPC.
*
* Default: Your Amazon Web Services account ID
*
* The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the
* request.
*
* The ID of the requester VPC. You must specify this parameter in the request.
*
* The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which
* you make the request.
*
* Default: The Region in which you make the request.
*
* The tags to assign to the peering connection.
*
* The Amazon Web Services account ID of the owner of the accepter VPC.
*
* Default: Your Amazon Web Services account ID
*
* Default: Your Amazon Web Services account ID */ public void setPeerOwnerId(String peerOwnerId) { this.peerOwnerId = peerOwnerId; } /** *
* The Amazon Web Services account ID of the owner of the accepter VPC. *
** Default: Your Amazon Web Services account ID *
* * @return The Amazon Web Services account ID of the owner of the accepter VPC. ** Default: Your Amazon Web Services account ID */ public String getPeerOwnerId() { return this.peerOwnerId; } /** *
* The Amazon Web Services account ID of the owner of the accepter VPC. *
** Default: Your Amazon Web Services account ID *
* * @param peerOwnerId * The Amazon Web Services account ID of the owner of the accepter VPC. ** Default: Your Amazon Web Services account ID * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcPeeringConnectionRequest withPeerOwnerId(String peerOwnerId) { setPeerOwnerId(peerOwnerId); return this; } /** *
* The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the * request. *
* * @param peerVpcId * The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter * in the request. */ public void setPeerVpcId(String peerVpcId) { this.peerVpcId = peerVpcId; } /** ** The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the * request. *
* * @return The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter * in the request. */ public String getPeerVpcId() { return this.peerVpcId; } /** ** The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter in the * request. *
* * @param peerVpcId * The ID of the VPC with which you are creating the VPC peering connection. You must specify this parameter * in the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcPeeringConnectionRequest withPeerVpcId(String peerVpcId) { setPeerVpcId(peerVpcId); return this; } /** ** The ID of the requester VPC. You must specify this parameter in the request. *
* * @param vpcId * The ID of the requester VPC. You must specify this parameter in the request. */ public void setVpcId(String vpcId) { this.vpcId = vpcId; } /** ** The ID of the requester VPC. You must specify this parameter in the request. *
* * @return The ID of the requester VPC. You must specify this parameter in the request. */ public String getVpcId() { return this.vpcId; } /** ** The ID of the requester VPC. You must specify this parameter in the request. *
* * @param vpcId * The ID of the requester VPC. You must specify this parameter in the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcPeeringConnectionRequest withVpcId(String vpcId) { setVpcId(vpcId); return this; } /** ** The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which * you make the request. *
** Default: The Region in which you make the request. *
* * @param peerRegion * The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in * which you make the request. ** Default: The Region in which you make the request. */ public void setPeerRegion(String peerRegion) { this.peerRegion = peerRegion; } /** *
* The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which * you make the request. *
** Default: The Region in which you make the request. *
* * @return The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in * which you make the request. ** Default: The Region in which you make the request. */ public String getPeerRegion() { return this.peerRegion; } /** *
* The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in which * you make the request. *
** Default: The Region in which you make the request. *
* * @param peerRegion * The Region code for the accepter VPC, if the accepter VPC is located in a Region other than the Region in * which you make the request. ** Default: The Region in which you make the request. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcPeeringConnectionRequest withPeerRegion(String peerRegion) { setPeerRegion(peerRegion); return this; } /** *
* The tags to assign to the peering connection. *
* * @return The tags to assign to the peering connection. */ public java.util.List* The tags to assign to the peering connection. *
* * @param tagSpecifications * The tags to assign to the peering connection. */ public void setTagSpecifications(java.util.Collection* The tags to assign to the peering connection. *
** NOTE: This method appends the values to the existing list (if any). Use * {@link #setTagSpecifications(java.util.Collection)} or {@link #withTagSpecifications(java.util.Collection)} if * you want to override the existing values. *
* * @param tagSpecifications * The tags to assign to the peering connection. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcPeeringConnectionRequest withTagSpecifications(TagSpecification... tagSpecifications) { if (this.tagSpecifications == null) { setTagSpecifications(new com.amazonaws.internal.SdkInternalList* The tags to assign to the peering connection. *
* * @param tagSpecifications * The tags to assign to the peering connection. * @return Returns a reference to this object so that method calls can be chained together. */ public CreateVpcPeeringConnectionRequest withTagSpecifications(java.util.Collection