/** * 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 KinesisVideoArchivedMedia { namespace Model { /** */ class GetMediaForFragmentListRequest : public KinesisVideoArchivedMediaRequest { public: AWS_KINESISVIDEOARCHIVEDMEDIA_API GetMediaForFragmentListRequest(); // 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 "GetMediaForFragmentList"; } AWS_KINESISVIDEOARCHIVEDMEDIA_API Aws::String SerializePayload() const override; /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline const Aws::String& GetStreamName() const{ return m_streamName; } /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline bool StreamNameHasBeenSet() const { return m_streamNameHasBeenSet; } /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline void SetStreamName(const Aws::String& value) { m_streamNameHasBeenSet = true; m_streamName = value; } /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline void SetStreamName(Aws::String&& value) { m_streamNameHasBeenSet = true; m_streamName = std::move(value); } /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline void SetStreamName(const char* value) { m_streamNameHasBeenSet = true; m_streamName.assign(value); } /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline GetMediaForFragmentListRequest& WithStreamName(const Aws::String& value) { SetStreamName(value); return *this;} /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline GetMediaForFragmentListRequest& WithStreamName(Aws::String&& value) { SetStreamName(std::move(value)); return *this;} /** *

The name of the stream from which to retrieve fragment media. Specify either * this parameter or the StreamARN parameter.

*/ inline GetMediaForFragmentListRequest& WithStreamName(const char* value) { SetStreamName(value); return *this;} /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline const Aws::String& GetStreamARN() const{ return m_streamARN; } /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline bool StreamARNHasBeenSet() const { return m_streamARNHasBeenSet; } /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline void SetStreamARN(const Aws::String& value) { m_streamARNHasBeenSet = true; m_streamARN = value; } /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline void SetStreamARN(Aws::String&& value) { m_streamARNHasBeenSet = true; m_streamARN = std::move(value); } /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline void SetStreamARN(const char* value) { m_streamARNHasBeenSet = true; m_streamARN.assign(value); } /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline GetMediaForFragmentListRequest& WithStreamARN(const Aws::String& value) { SetStreamARN(value); return *this;} /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline GetMediaForFragmentListRequest& WithStreamARN(Aws::String&& value) { SetStreamARN(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the stream from which to retrieve fragment * media. Specify either this parameter or the StreamName * parameter.

*/ inline GetMediaForFragmentListRequest& WithStreamARN(const char* value) { SetStreamARN(value); return *this;} /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline const Aws::Vector& GetFragments() const{ return m_fragments; } /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline bool FragmentsHasBeenSet() const { return m_fragmentsHasBeenSet; } /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline void SetFragments(const Aws::Vector& value) { m_fragmentsHasBeenSet = true; m_fragments = value; } /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline void SetFragments(Aws::Vector&& value) { m_fragmentsHasBeenSet = true; m_fragments = std::move(value); } /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline GetMediaForFragmentListRequest& WithFragments(const Aws::Vector& value) { SetFragments(value); return *this;} /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline GetMediaForFragmentListRequest& WithFragments(Aws::Vector&& value) { SetFragments(std::move(value)); return *this;} /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline GetMediaForFragmentListRequest& AddFragments(const Aws::String& value) { m_fragmentsHasBeenSet = true; m_fragments.push_back(value); return *this; } /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline GetMediaForFragmentListRequest& AddFragments(Aws::String&& value) { m_fragmentsHasBeenSet = true; m_fragments.push_back(std::move(value)); return *this; } /** *

A list of the numbers of fragments for which to retrieve media. You retrieve * these values with ListFragments.

*/ inline GetMediaForFragmentListRequest& AddFragments(const char* value) { m_fragmentsHasBeenSet = true; m_fragments.push_back(value); return *this; } private: Aws::String m_streamName; bool m_streamNameHasBeenSet = false; Aws::String m_streamARN; bool m_streamARNHasBeenSet = false; Aws::Vector m_fragments; bool m_fragmentsHasBeenSet = false; }; } // namespace Model } // namespace KinesisVideoArchivedMedia } // namespace Aws