/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MediaConnect { namespace Model { class RemoveFlowVpcInterfaceResult { public: AWS_MEDIACONNECT_API RemoveFlowVpcInterfaceResult(); AWS_MEDIACONNECT_API RemoveFlowVpcInterfaceResult(const Aws::AmazonWebServiceResult& result); AWS_MEDIACONNECT_API RemoveFlowVpcInterfaceResult& operator=(const Aws::AmazonWebServiceResult& result); /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline const Aws::String& GetFlowArn() const{ return m_flowArn; } /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline void SetFlowArn(const Aws::String& value) { m_flowArn = value; } /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline void SetFlowArn(Aws::String&& value) { m_flowArn = std::move(value); } /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline void SetFlowArn(const char* value) { m_flowArn.assign(value); } /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline RemoveFlowVpcInterfaceResult& WithFlowArn(const Aws::String& value) { SetFlowArn(value); return *this;} /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline RemoveFlowVpcInterfaceResult& WithFlowArn(Aws::String&& value) { SetFlowArn(std::move(value)); return *this;} /** * The ARN of the flow that is associated with the VPC interface you removed. */ inline RemoveFlowVpcInterfaceResult& WithFlowArn(const char* value) { SetFlowArn(value); return *this;} /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline const Aws::Vector& GetNonDeletedNetworkInterfaceIds() const{ return m_nonDeletedNetworkInterfaceIds; } /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline void SetNonDeletedNetworkInterfaceIds(const Aws::Vector& value) { m_nonDeletedNetworkInterfaceIds = value; } /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline void SetNonDeletedNetworkInterfaceIds(Aws::Vector&& value) { m_nonDeletedNetworkInterfaceIds = std::move(value); } /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline RemoveFlowVpcInterfaceResult& WithNonDeletedNetworkInterfaceIds(const Aws::Vector& value) { SetNonDeletedNetworkInterfaceIds(value); return *this;} /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline RemoveFlowVpcInterfaceResult& WithNonDeletedNetworkInterfaceIds(Aws::Vector&& value) { SetNonDeletedNetworkInterfaceIds(std::move(value)); return *this;} /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline RemoveFlowVpcInterfaceResult& AddNonDeletedNetworkInterfaceIds(const Aws::String& value) { m_nonDeletedNetworkInterfaceIds.push_back(value); return *this; } /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline RemoveFlowVpcInterfaceResult& AddNonDeletedNetworkInterfaceIds(Aws::String&& value) { m_nonDeletedNetworkInterfaceIds.push_back(std::move(value)); return *this; } /** * IDs of network interfaces associated with the removed VPC interface that Media * Connect was unable to remove. */ inline RemoveFlowVpcInterfaceResult& AddNonDeletedNetworkInterfaceIds(const char* value) { m_nonDeletedNetworkInterfaceIds.push_back(value); return *this; } /** * The name of the VPC interface that was removed. */ inline const Aws::String& GetVpcInterfaceName() const{ return m_vpcInterfaceName; } /** * The name of the VPC interface that was removed. */ inline void SetVpcInterfaceName(const Aws::String& value) { m_vpcInterfaceName = value; } /** * The name of the VPC interface that was removed. */ inline void SetVpcInterfaceName(Aws::String&& value) { m_vpcInterfaceName = std::move(value); } /** * The name of the VPC interface that was removed. */ inline void SetVpcInterfaceName(const char* value) { m_vpcInterfaceName.assign(value); } /** * The name of the VPC interface that was removed. */ inline RemoveFlowVpcInterfaceResult& WithVpcInterfaceName(const Aws::String& value) { SetVpcInterfaceName(value); return *this;} /** * The name of the VPC interface that was removed. */ inline RemoveFlowVpcInterfaceResult& WithVpcInterfaceName(Aws::String&& value) { SetVpcInterfaceName(std::move(value)); return *this;} /** * The name of the VPC interface that was removed. */ inline RemoveFlowVpcInterfaceResult& WithVpcInterfaceName(const char* value) { SetVpcInterfaceName(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline RemoveFlowVpcInterfaceResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RemoveFlowVpcInterfaceResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RemoveFlowVpcInterfaceResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_flowArn; Aws::Vector m_nonDeletedNetworkInterfaceIds; Aws::String m_vpcInterfaceName; Aws::String m_requestId; }; } // namespace Model } // namespace MediaConnect } // namespace Aws