/* * Copyright 2010-2018 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 com.amazonaws.AmazonWebServiceRequest; import com.amazonaws.Request; import com.amazonaws.services.ec2.model.transform.ModifyVpcPeeringConnectionOptionsRequestMarshaller; /** * Container for the parameters to the {@link com.amazonaws.services.ec2.AmazonEC2#modifyVpcPeeringConnectionOptions(ModifyVpcPeeringConnectionOptionsRequest) ModifyVpcPeeringConnectionOptions operation}. *
* Modifies the VPC peering connection options on one side of a VPC * peering connection. You can do the following: *
* ** Enable/disable communication over the peering connection between an * EC2-Classic instance that's linked to your VPC (using ClassicLink) and * instances in the peer VPC. *
** Enable/disable communication over the peering connection between * instances in your VPC and an EC2-Classic instance that's linked to the * peer VPC. *
** If the peered VPCs are in different accounts, each owner must initiate * a separate request to enable or disable communication in either * direction, depending on whether their VPC was the requester or * accepter for the VPC peering connection. If the peered VPCs are in the * same account, you can modify the requester and accepter options in the * same request. To confirm which VPC is the accepter and requester for a * VPC peering connection, use the DescribeVpcPeeringConnections command. *
* * @see com.amazonaws.services.ec2.AmazonEC2#modifyVpcPeeringConnectionOptions(ModifyVpcPeeringConnectionOptionsRequest) */ public class ModifyVpcPeeringConnectionOptionsRequest extends AmazonWebServiceRequest implements Serializable, DryRunSupportedRequest* Returns a reference to this object so that method calls can be chained together. * * @param vpcPeeringConnectionId The ID of the VPC peering connection. * * @return A reference to this updated object so that method calls can be chained * together. */ public ModifyVpcPeeringConnectionOptionsRequest withVpcPeeringConnectionId(String vpcPeeringConnectionId) { this.vpcPeeringConnectionId = vpcPeeringConnectionId; return this; } /** * The VPC peering connection options for the requester VPC. * * @return The VPC peering connection options for the requester VPC. */ public PeeringConnectionOptionsRequest getRequesterPeeringConnectionOptions() { return requesterPeeringConnectionOptions; } /** * The VPC peering connection options for the requester VPC. * * @param requesterPeeringConnectionOptions The VPC peering connection options for the requester VPC. */ public void setRequesterPeeringConnectionOptions(PeeringConnectionOptionsRequest requesterPeeringConnectionOptions) { this.requesterPeeringConnectionOptions = requesterPeeringConnectionOptions; } /** * The VPC peering connection options for the requester VPC. *
* Returns a reference to this object so that method calls can be chained together. * * @param requesterPeeringConnectionOptions The VPC peering connection options for the requester VPC. * * @return A reference to this updated object so that method calls can be chained * together. */ public ModifyVpcPeeringConnectionOptionsRequest withRequesterPeeringConnectionOptions(PeeringConnectionOptionsRequest requesterPeeringConnectionOptions) { this.requesterPeeringConnectionOptions = requesterPeeringConnectionOptions; return this; } /** * The VPC peering connection options for the accepter VPC. * * @return The VPC peering connection options for the accepter VPC. */ public PeeringConnectionOptionsRequest getAccepterPeeringConnectionOptions() { return accepterPeeringConnectionOptions; } /** * The VPC peering connection options for the accepter VPC. * * @param accepterPeeringConnectionOptions The VPC peering connection options for the accepter VPC. */ public void setAccepterPeeringConnectionOptions(PeeringConnectionOptionsRequest accepterPeeringConnectionOptions) { this.accepterPeeringConnectionOptions = accepterPeeringConnectionOptions; } /** * The VPC peering connection options for the accepter VPC. *
* Returns a reference to this object so that method calls can be chained together.
*
* @param accepterPeeringConnectionOptions The VPC peering connection options for the accepter VPC.
*
* @return A reference to this updated object so that method calls can be chained
* together.
*/
public ModifyVpcPeeringConnectionOptionsRequest withAccepterPeeringConnectionOptions(PeeringConnectionOptionsRequest accepterPeeringConnectionOptions) {
this.accepterPeeringConnectionOptions = accepterPeeringConnectionOptions;
return this;
}
/**
* This method is intended for internal use only.
* Returns the marshaled request configured with additional parameters to
* enable operation dry-run.
*/
@Override
public Request