/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Container for the parameters to the DescribeDomainChangeProgress
* operation.See Also:
AWS
* API Reference
The name of the domain to get progress information for.
*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *The name of the domain to get progress information for.
*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *The name of the domain to get progress information for.
*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *The name of the domain to get progress information for.
*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *The name of the domain to get progress information for.
*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *The name of the domain to get progress information for.
*/ inline DescribeDomainChangeProgressRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *The name of the domain to get progress information for.
*/ inline DescribeDomainChangeProgressRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *The name of the domain to get progress information for.
*/ inline DescribeDomainChangeProgressRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline const Aws::String& GetChangeId() const{ return m_changeId; } /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline bool ChangeIdHasBeenSet() const { return m_changeIdHasBeenSet; } /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline void SetChangeId(const Aws::String& value) { m_changeIdHasBeenSet = true; m_changeId = value; } /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline void SetChangeId(Aws::String&& value) { m_changeIdHasBeenSet = true; m_changeId = std::move(value); } /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline void SetChangeId(const char* value) { m_changeIdHasBeenSet = true; m_changeId.assign(value); } /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline DescribeDomainChangeProgressRequest& WithChangeId(const Aws::String& value) { SetChangeId(value); return *this;} /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline DescribeDomainChangeProgressRequest& WithChangeId(Aws::String&& value) { SetChangeId(std::move(value)); return *this;} /** *The specific change ID for which you want to get progress information. If * omitted, the request returns information about the most recent configuration * change.
*/ inline DescribeDomainChangeProgressRequest& WithChangeId(const char* value) { SetChangeId(value); return *this;} private: Aws::String m_domainName; bool m_domainNameHasBeenSet = false; Aws::String m_changeId; bool m_changeIdHasBeenSet = false; }; } // namespace Model } // namespace OpenSearchService } // namespace Aws