/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the input for IncreaseStreamRetentionPeriod.See
* Also:
AWS
* API Reference
The name of the stream to modify.
*/ inline const Aws::String& GetStreamName() const{ return m_streamName; } /** *The name of the stream to modify.
*/ inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; } /** *The name of the stream to modify.
*/ inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; } /** *The name of the stream to modify.
*/ inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); } /** *The name of the stream to modify.
*/ inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); } /** *The name of the stream to modify.
*/ inline IncreaseStreamRetentionPeriodRequest& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;} /** *The name of the stream to modify.
*/ inline IncreaseStreamRetentionPeriodRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;} /** *The name of the stream to modify.
*/ inline IncreaseStreamRetentionPeriodRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;} /** *The new retention period of the stream, in hours. Must be more than the * current retention period.
*/ inline int GetRetentionPeriodHours() const{ return m_retentionPeriodHours; } /** *The new retention period of the stream, in hours. Must be more than the * current retention period.
*/ inline bool RetentionPeriodHoursHasBeenSet() const { return m_retentionPeriodHoursHasBeenSet; } /** *The new retention period of the stream, in hours. Must be more than the * current retention period.
*/ inline void SetRetentionPeriodHours(int value) { m_retentionPeriodHoursHasBeenSet = true; m_retentionPeriodHours = value; } /** *The new retention period of the stream, in hours. Must be more than the * current retention period.
*/ inline IncreaseStreamRetentionPeriodRequest& WithRetentionPeriodHours(int value) { SetRetentionPeriodHours(value); return *this;} private: Aws::String m_streamName; bool m_streamNameHasBeenSet; int m_retentionPeriodHours; bool m_retentionPeriodHoursHasBeenSet; }; } // namespace Model } // namespace Kinesis } // namespace Aws