/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace MediaConnect { namespace Model { /** */ class DeleteBridgeRequest : public MediaConnectRequest { public: AWS_MEDIACONNECT_API DeleteBridgeRequest(); // Service request name is the Operation name which will send this request out, // each operation should has unique request name, so that we can get operation's name from this request. // Note: this is not true for response, multiple operations may have the same response name, // so we can not get operation's name from response. inline virtual const char* GetServiceRequestName() const override { return "DeleteBridge"; } AWS_MEDIACONNECT_API Aws::String SerializePayload() const override; /** * The ARN of the bridge that you want to delete. */ inline const Aws::String& GetBridgeArn() const{ return m_bridgeArn; } /** * The ARN of the bridge that you want to delete. */ inline bool BridgeArnHasBeenSet() const { return m_bridgeArnHasBeenSet; } /** * The ARN of the bridge that you want to delete. */ inline void SetBridgeArn(const Aws::String& value) { m_bridgeArnHasBeenSet = true; m_bridgeArn = value; } /** * The ARN of the bridge that you want to delete. */ inline void SetBridgeArn(Aws::String&& value) { m_bridgeArnHasBeenSet = true; m_bridgeArn = std::move(value); } /** * The ARN of the bridge that you want to delete. */ inline void SetBridgeArn(const char* value) { m_bridgeArnHasBeenSet = true; m_bridgeArn.assign(value); } /** * The ARN of the bridge that you want to delete. */ inline DeleteBridgeRequest& WithBridgeArn(const Aws::String& value) { SetBridgeArn(value); return *this;} /** * The ARN of the bridge that you want to delete. */ inline DeleteBridgeRequest& WithBridgeArn(Aws::String&& value) { SetBridgeArn(std::move(value)); return *this;} /** * The ARN of the bridge that you want to delete. */ inline DeleteBridgeRequest& WithBridgeArn(const char* value) { SetBridgeArn(value); return *this;} private: Aws::String m_bridgeArn; bool m_bridgeArnHasBeenSet = false; }; } // namespace Model } // namespace MediaConnect } // namespace Aws