/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace CloudFront { namespace Model { /** *

A list of real-time log configurations.

See Also:

AWS * API Reference

*/ class RealtimeLogConfigs { public: AWS_CLOUDFRONT_API RealtimeLogConfigs(); AWS_CLOUDFRONT_API RealtimeLogConfigs(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFRONT_API RealtimeLogConfigs& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_CLOUDFRONT_API void AddToNode(Aws::Utils::Xml::XmlNode& parentNode) const; /** *

The maximum number of real-time log configurations requested.

*/ inline int GetMaxItems() const{ return m_maxItems; } /** *

The maximum number of real-time log configurations requested.

*/ inline bool MaxItemsHasBeenSet() const { return m_maxItemsHasBeenSet; } /** *

The maximum number of real-time log configurations requested.

*/ inline void SetMaxItems(int value) { m_maxItemsHasBeenSet = true; m_maxItems = value; } /** *

The maximum number of real-time log configurations requested.

*/ inline RealtimeLogConfigs& WithMaxItems(int value) { SetMaxItems(value); return *this;} /** *

Contains the list of real-time log configurations.

*/ inline const Aws::Vector& GetItems() const{ return m_items; } /** *

Contains the list of real-time log configurations.

*/ inline bool ItemsHasBeenSet() const { return m_itemsHasBeenSet; } /** *

Contains the list of real-time log configurations.

*/ inline void SetItems(const Aws::Vector& value) { m_itemsHasBeenSet = true; m_items = value; } /** *

Contains the list of real-time log configurations.

*/ inline void SetItems(Aws::Vector&& value) { m_itemsHasBeenSet = true; m_items = std::move(value); } /** *

Contains the list of real-time log configurations.

*/ inline RealtimeLogConfigs& WithItems(const Aws::Vector& value) { SetItems(value); return *this;} /** *

Contains the list of real-time log configurations.

*/ inline RealtimeLogConfigs& WithItems(Aws::Vector&& value) { SetItems(std::move(value)); return *this;} /** *

Contains the list of real-time log configurations.

*/ inline RealtimeLogConfigs& AddItems(const RealtimeLogConfig& value) { m_itemsHasBeenSet = true; m_items.push_back(value); return *this; } /** *

Contains the list of real-time log configurations.

*/ inline RealtimeLogConfigs& AddItems(RealtimeLogConfig&& value) { m_itemsHasBeenSet = true; m_items.push_back(std::move(value)); return *this; } /** *

A flag that indicates whether there are more real-time log configurations * than are contained in this list.

*/ inline bool GetIsTruncated() const{ return m_isTruncated; } /** *

A flag that indicates whether there are more real-time log configurations * than are contained in this list.

*/ inline bool IsTruncatedHasBeenSet() const { return m_isTruncatedHasBeenSet; } /** *

A flag that indicates whether there are more real-time log configurations * than are contained in this list.

*/ inline void SetIsTruncated(bool value) { m_isTruncatedHasBeenSet = true; m_isTruncated = value; } /** *

A flag that indicates whether there are more real-time log configurations * than are contained in this list.

*/ inline RealtimeLogConfigs& WithIsTruncated(bool value) { SetIsTruncated(value); return *this;} /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline bool MarkerHasBeenSet() const { return m_markerHasBeenSet; } /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline void SetMarker(const Aws::String& value) { m_markerHasBeenSet = true; m_marker = value; } /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline void SetMarker(Aws::String&& value) { m_markerHasBeenSet = true; m_marker = std::move(value); } /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline void SetMarker(const char* value) { m_markerHasBeenSet = true; m_marker.assign(value); } /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline RealtimeLogConfigs& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline RealtimeLogConfigs& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

This parameter indicates where this list of real-time log configurations * begins. This list includes real-time log configurations that occur after the * marker.

*/ inline RealtimeLogConfigs& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline const Aws::String& GetNextMarker() const{ return m_nextMarker; } /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline bool NextMarkerHasBeenSet() const { return m_nextMarkerHasBeenSet; } /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline void SetNextMarker(const Aws::String& value) { m_nextMarkerHasBeenSet = true; m_nextMarker = value; } /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline void SetNextMarker(Aws::String&& value) { m_nextMarkerHasBeenSet = true; m_nextMarker = std::move(value); } /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline void SetNextMarker(const char* value) { m_nextMarkerHasBeenSet = true; m_nextMarker.assign(value); } /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline RealtimeLogConfigs& WithNextMarker(const Aws::String& value) { SetNextMarker(value); return *this;} /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline RealtimeLogConfigs& WithNextMarker(Aws::String&& value) { SetNextMarker(std::move(value)); return *this;} /** *

If there are more items in the list than are in this response, this element * is present. It contains the value that you should use in the Marker * field of a subsequent request to continue listing real-time log configurations * where you left off.

*/ inline RealtimeLogConfigs& WithNextMarker(const char* value) { SetNextMarker(value); return *this;} private: int m_maxItems; bool m_maxItemsHasBeenSet = false; Aws::Vector m_items; bool m_itemsHasBeenSet = false; bool m_isTruncated; bool m_isTruncatedHasBeenSet = false; Aws::String m_marker; bool m_markerHasBeenSet = false; Aws::String m_nextMarker; bool m_nextMarkerHasBeenSet = false; }; } // namespace Model } // namespace CloudFront } // namespace Aws