/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Updates an existing VpcLink of a specified identifier.See
* Also:
AWS
* API Reference
[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline const Aws::String& GetVpcLinkId() const{ return m_vpcLinkId; } /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline bool VpcLinkIdHasBeenSet() const { return m_vpcLinkIdHasBeenSet; } /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline void SetVpcLinkId(const Aws::String& value) { m_vpcLinkIdHasBeenSet = true; m_vpcLinkId = value; } /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline void SetVpcLinkId(Aws::String&& value) { m_vpcLinkIdHasBeenSet = true; m_vpcLinkId = std::move(value); } /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline void SetVpcLinkId(const char* value) { m_vpcLinkIdHasBeenSet = true; m_vpcLinkId.assign(value); } /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline UpdateVpcLinkRequest& WithVpcLinkId(const Aws::String& value) { SetVpcLinkId(value); return *this;} /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline UpdateVpcLinkRequest& WithVpcLinkId(Aws::String&& value) { SetVpcLinkId(std::move(value)); return *this;} /** *[Required] The identifier of the VpcLink. It is used in an * Integration to reference this VpcLink.
*/ inline UpdateVpcLinkRequest& WithVpcLinkId(const char* value) { SetVpcLinkId(value); return *this;} /** *A list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline const Aws::VectorA list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline bool PatchOperationsHasBeenSet() const { return m_patchOperationsHasBeenSet; } /** *A list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline void SetPatchOperations(const Aws::VectorA list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline void SetPatchOperations(Aws::VectorA list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline UpdateVpcLinkRequest& WithPatchOperations(const Aws::VectorA list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline UpdateVpcLinkRequest& WithPatchOperations(Aws::VectorA list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline UpdateVpcLinkRequest& AddPatchOperations(const PatchOperation& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(value); return *this; } /** *A list of update operations to be applied to the specified resource and in * the order specified in this list.
*/ inline UpdateVpcLinkRequest& AddPatchOperations(PatchOperation&& value) { m_patchOperationsHasBeenSet = true; m_patchOperations.push_back(std::move(value)); return *this; } private: Aws::String m_vpcLinkId; bool m_vpcLinkIdHasBeenSet; Aws::Vector