/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Updates a DomainName.See Also:
AWS
* API Reference
The domain name.
*/ inline const Aws::String& GetDomainName() const{ return m_domainName; } /** *The domain name.
*/ inline bool DomainNameHasBeenSet() const { return m_domainNameHasBeenSet; } /** *The domain name.
*/ inline void SetDomainName(const Aws::String& value) { m_domainNameHasBeenSet = true; m_domainName = value; } /** *The domain name.
*/ inline void SetDomainName(Aws::String&& value) { m_domainNameHasBeenSet = true; m_domainName = std::move(value); } /** *The domain name.
*/ inline void SetDomainName(const char* value) { m_domainNameHasBeenSet = true; m_domainName.assign(value); } /** *The domain name.
*/ inline UpdateDomainNameRequest& WithDomainName(const Aws::String& value) { SetDomainName(value); return *this;} /** *The domain name.
*/ inline UpdateDomainNameRequest& WithDomainName(Aws::String&& value) { SetDomainName(std::move(value)); return *this;} /** *The domain name.
*/ inline UpdateDomainNameRequest& WithDomainName(const char* value) { SetDomainName(value); return *this;} /** *The domain name configurations.
*/ inline const Aws::VectorThe domain name configurations.
*/ inline bool DomainNameConfigurationsHasBeenSet() const { return m_domainNameConfigurationsHasBeenSet; } /** *The domain name configurations.
*/ inline void SetDomainNameConfigurations(const Aws::VectorThe domain name configurations.
*/ inline void SetDomainNameConfigurations(Aws::VectorThe domain name configurations.
*/ inline UpdateDomainNameRequest& WithDomainNameConfigurations(const Aws::VectorThe domain name configurations.
*/ inline UpdateDomainNameRequest& WithDomainNameConfigurations(Aws::VectorThe domain name configurations.
*/ inline UpdateDomainNameRequest& AddDomainNameConfigurations(const DomainNameConfiguration& value) { m_domainNameConfigurationsHasBeenSet = true; m_domainNameConfigurations.push_back(value); return *this; } /** *The domain name configurations.
*/ inline UpdateDomainNameRequest& AddDomainNameConfigurations(DomainNameConfiguration&& value) { m_domainNameConfigurationsHasBeenSet = true; m_domainNameConfigurations.push_back(std::move(value)); return *this; } private: Aws::String m_domainName; bool m_domainNameHasBeenSet; Aws::Vector