/** * 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 CloudFront { namespace Model { /** */ class CreateKeyGroup2020_05_31Request : public CloudFrontRequest { public: AWS_CLOUDFRONT_API CreateKeyGroup2020_05_31Request(); // 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 "CreateKeyGroup"; } AWS_CLOUDFRONT_API Aws::String SerializePayload() const override; /** *

A key group configuration.

*/ inline const KeyGroupConfig& GetKeyGroupConfig() const{ return m_keyGroupConfig; } /** *

A key group configuration.

*/ inline bool KeyGroupConfigHasBeenSet() const { return m_keyGroupConfigHasBeenSet; } /** *

A key group configuration.

*/ inline void SetKeyGroupConfig(const KeyGroupConfig& value) { m_keyGroupConfigHasBeenSet = true; m_keyGroupConfig = value; } /** *

A key group configuration.

*/ inline void SetKeyGroupConfig(KeyGroupConfig&& value) { m_keyGroupConfigHasBeenSet = true; m_keyGroupConfig = std::move(value); } /** *

A key group configuration.

*/ inline CreateKeyGroup2020_05_31Request& WithKeyGroupConfig(const KeyGroupConfig& value) { SetKeyGroupConfig(value); return *this;} /** *

A key group configuration.

*/ inline CreateKeyGroup2020_05_31Request& WithKeyGroupConfig(KeyGroupConfig&& value) { SetKeyGroupConfig(std::move(value)); return *this;} private: KeyGroupConfig m_keyGroupConfig; bool m_keyGroupConfigHasBeenSet = false; }; } // namespace Model } // namespace CloudFront } // namespace Aws