/** * 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 ConfigService { namespace Model { /** */ class DeletePendingAggregationRequestRequest : public ConfigServiceRequest { public: AWS_CONFIGSERVICE_API DeletePendingAggregationRequestRequest(); // 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 "DeletePendingAggregationRequest"; } AWS_CONFIGSERVICE_API Aws::String SerializePayload() const override; AWS_CONFIGSERVICE_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline const Aws::String& GetRequesterAccountId() const{ return m_requesterAccountId; } /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline bool RequesterAccountIdHasBeenSet() const { return m_requesterAccountIdHasBeenSet; } /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline void SetRequesterAccountId(const Aws::String& value) { m_requesterAccountIdHasBeenSet = true; m_requesterAccountId = value; } /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline void SetRequesterAccountId(Aws::String&& value) { m_requesterAccountIdHasBeenSet = true; m_requesterAccountId = std::move(value); } /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline void SetRequesterAccountId(const char* value) { m_requesterAccountIdHasBeenSet = true; m_requesterAccountId.assign(value); } /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline DeletePendingAggregationRequestRequest& WithRequesterAccountId(const Aws::String& value) { SetRequesterAccountId(value); return *this;} /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline DeletePendingAggregationRequestRequest& WithRequesterAccountId(Aws::String&& value) { SetRequesterAccountId(std::move(value)); return *this;} /** *

The 12-digit account ID of the account requesting to aggregate data.

*/ inline DeletePendingAggregationRequestRequest& WithRequesterAccountId(const char* value) { SetRequesterAccountId(value); return *this;} /** *

The region requesting to aggregate data.

*/ inline const Aws::String& GetRequesterAwsRegion() const{ return m_requesterAwsRegion; } /** *

The region requesting to aggregate data.

*/ inline bool RequesterAwsRegionHasBeenSet() const { return m_requesterAwsRegionHasBeenSet; } /** *

The region requesting to aggregate data.

*/ inline void SetRequesterAwsRegion(const Aws::String& value) { m_requesterAwsRegionHasBeenSet = true; m_requesterAwsRegion = value; } /** *

The region requesting to aggregate data.

*/ inline void SetRequesterAwsRegion(Aws::String&& value) { m_requesterAwsRegionHasBeenSet = true; m_requesterAwsRegion = std::move(value); } /** *

The region requesting to aggregate data.

*/ inline void SetRequesterAwsRegion(const char* value) { m_requesterAwsRegionHasBeenSet = true; m_requesterAwsRegion.assign(value); } /** *

The region requesting to aggregate data.

*/ inline DeletePendingAggregationRequestRequest& WithRequesterAwsRegion(const Aws::String& value) { SetRequesterAwsRegion(value); return *this;} /** *

The region requesting to aggregate data.

*/ inline DeletePendingAggregationRequestRequest& WithRequesterAwsRegion(Aws::String&& value) { SetRequesterAwsRegion(std::move(value)); return *this;} /** *

The region requesting to aggregate data.

*/ inline DeletePendingAggregationRequestRequest& WithRequesterAwsRegion(const char* value) { SetRequesterAwsRegion(value); return *this;} private: Aws::String m_requesterAccountId; bool m_requesterAccountIdHasBeenSet = false; Aws::String m_requesterAwsRegion; bool m_requesterAwsRegionHasBeenSet = false; }; } // namespace Model } // namespace ConfigService } // namespace Aws