/** * 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 CodeStarconnections { namespace Model { /** */ class DeleteHostRequest : public CodeStarconnectionsRequest { public: AWS_CODESTARCONNECTIONS_API DeleteHostRequest(); // 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 "DeleteHost"; } AWS_CODESTARCONNECTIONS_API Aws::String SerializePayload() const override; AWS_CODESTARCONNECTIONS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline const Aws::String& GetHostArn() const{ return m_hostArn; } /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline bool HostArnHasBeenSet() const { return m_hostArnHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline void SetHostArn(const Aws::String& value) { m_hostArnHasBeenSet = true; m_hostArn = value; } /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline void SetHostArn(Aws::String&& value) { m_hostArnHasBeenSet = true; m_hostArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline void SetHostArn(const char* value) { m_hostArnHasBeenSet = true; m_hostArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline DeleteHostRequest& WithHostArn(const Aws::String& value) { SetHostArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline DeleteHostRequest& WithHostArn(Aws::String&& value) { SetHostArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the host to be deleted.

*/ inline DeleteHostRequest& WithHostArn(const char* value) { SetHostArn(value); return *this;} private: Aws::String m_hostArn; bool m_hostArnHasBeenSet = false; }; } // namespace Model } // namespace CodeStarconnections } // namespace Aws