/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include namespace Aws { namespace Lightsail { namespace Model { /** */ class GetBucketBundlesRequest : public LightsailRequest { public: AWS_LIGHTSAIL_API GetBucketBundlesRequest(); // 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 "GetBucketBundles"; } AWS_LIGHTSAIL_API Aws::String SerializePayload() const override; AWS_LIGHTSAIL_API Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

A Boolean value that indicates whether to include inactive (unavailable) * bundles in the response of your request.

*/ inline bool GetIncludeInactive() const{ return m_includeInactive; } /** *

A Boolean value that indicates whether to include inactive (unavailable) * bundles in the response of your request.

*/ inline bool IncludeInactiveHasBeenSet() const { return m_includeInactiveHasBeenSet; } /** *

A Boolean value that indicates whether to include inactive (unavailable) * bundles in the response of your request.

*/ inline void SetIncludeInactive(bool value) { m_includeInactiveHasBeenSet = true; m_includeInactive = value; } /** *

A Boolean value that indicates whether to include inactive (unavailable) * bundles in the response of your request.

*/ inline GetBucketBundlesRequest& WithIncludeInactive(bool value) { SetIncludeInactive(value); return *this;} private: bool m_includeInactive; bool m_includeInactiveHasBeenSet = false; }; } // namespace Model } // namespace Lightsail } // namespace Aws