/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Clip range configuration for the VOD source associated with the
* program.See Also:
AWS
* API Reference
The end offset of the clip range, in milliseconds, starting from the * beginning of the VOD source associated with the program.
*/ inline long long GetEndOffsetMillis() const{ return m_endOffsetMillis; } /** *The end offset of the clip range, in milliseconds, starting from the * beginning of the VOD source associated with the program.
*/ inline bool EndOffsetMillisHasBeenSet() const { return m_endOffsetMillisHasBeenSet; } /** *The end offset of the clip range, in milliseconds, starting from the * beginning of the VOD source associated with the program.
*/ inline void SetEndOffsetMillis(long long value) { m_endOffsetMillisHasBeenSet = true; m_endOffsetMillis = value; } /** *The end offset of the clip range, in milliseconds, starting from the * beginning of the VOD source associated with the program.
*/ inline ClipRange& WithEndOffsetMillis(long long value) { SetEndOffsetMillis(value); return *this;} private: long long m_endOffsetMillis; bool m_endOffsetMillisHasBeenSet = false; }; } // namespace Model } // namespace MediaTailor } // namespace Aws