/** * 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 CloudWatchEvents { namespace Model { /** */ class DeletePartnerEventSourceRequest : public CloudWatchEventsRequest { public: AWS_CLOUDWATCHEVENTS_API DeletePartnerEventSourceRequest(); // 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 "DeletePartnerEventSource"; } AWS_CLOUDWATCHEVENTS_API Aws::String SerializePayload() const override; AWS_CLOUDWATCHEVENTS_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the event source to delete.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the event source to delete.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the event source to delete.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the event source to delete.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the event source to delete.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the event source to delete.

*/ inline DeletePartnerEventSourceRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the event source to delete.

*/ inline DeletePartnerEventSourceRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the event source to delete.

*/ inline DeletePartnerEventSourceRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline const Aws::String& GetAccount() const{ return m_account; } /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline bool AccountHasBeenSet() const { return m_accountHasBeenSet; } /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline void SetAccount(const Aws::String& value) { m_accountHasBeenSet = true; m_account = value; } /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline void SetAccount(Aws::String&& value) { m_accountHasBeenSet = true; m_account = std::move(value); } /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline void SetAccount(const char* value) { m_accountHasBeenSet = true; m_account.assign(value); } /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline DeletePartnerEventSourceRequest& WithAccount(const Aws::String& value) { SetAccount(value); return *this;} /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline DeletePartnerEventSourceRequest& WithAccount(Aws::String&& value) { SetAccount(std::move(value)); return *this;} /** *

The Amazon Web Services account ID of the Amazon Web Services customer that * the event source was created for.

*/ inline DeletePartnerEventSourceRequest& WithAccount(const char* value) { SetAccount(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_account; bool m_accountHasBeenSet = false; }; } // namespace Model } // namespace CloudWatchEvents } // namespace Aws