/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include The request to create a new distribution.See Also:
AWS
* API Reference
The distribution's configuration information.
*/ inline const DistributionConfig& GetDistributionConfig() const{ return m_distributionConfig; } /** *The distribution's configuration information.
*/ inline bool DistributionConfigHasBeenSet() const { return m_distributionConfigHasBeenSet; } /** *The distribution's configuration information.
*/ inline void SetDistributionConfig(const DistributionConfig& value) { m_distributionConfigHasBeenSet = true; m_distributionConfig = value; } /** *The distribution's configuration information.
*/ inline void SetDistributionConfig(DistributionConfig&& value) { m_distributionConfigHasBeenSet = true; m_distributionConfig = std::move(value); } /** *The distribution's configuration information.
*/ inline CreateDistribution2020_05_31Request& WithDistributionConfig(const DistributionConfig& value) { SetDistributionConfig(value); return *this;} /** *The distribution's configuration information.
*/ inline CreateDistribution2020_05_31Request& WithDistributionConfig(DistributionConfig&& value) { SetDistributionConfig(std::move(value)); return *this;} private: DistributionConfig m_distributionConfig; bool m_distributionConfigHasBeenSet = false; }; } // namespace Model } // namespace CloudFront } // namespace Aws