/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { namespace MediaTailor { namespace Model { /** */ class DeletePrefetchScheduleRequest : public MediaTailorRequest { public: AWS_MEDIATAILOR_API DeletePrefetchScheduleRequest(); // 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 "DeletePrefetchSchedule"; } AWS_MEDIATAILOR_API Aws::String SerializePayload() const override; /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline const Aws::String& GetName() const{ return m_name; } /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline bool NameHasBeenSet() const { return m_nameHasBeenSet; } /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline void SetName(const Aws::String& value) { m_nameHasBeenSet = true; m_name = value; } /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline void SetName(Aws::String&& value) { m_nameHasBeenSet = true; m_name = std::move(value); } /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline void SetName(const char* value) { m_nameHasBeenSet = true; m_name.assign(value); } /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline DeletePrefetchScheduleRequest& WithName(const Aws::String& value) { SetName(value); return *this;} /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline DeletePrefetchScheduleRequest& WithName(Aws::String&& value) { SetName(std::move(value)); return *this;} /** *

The name of the prefetch schedule. If the action is successful, the service * sends back an HTTP 204 response with an empty HTTP body.

*/ inline DeletePrefetchScheduleRequest& WithName(const char* value) { SetName(value); return *this;} /** *

The name of the playback configuration for this prefetch schedule.

*/ inline const Aws::String& GetPlaybackConfigurationName() const{ return m_playbackConfigurationName; } /** *

The name of the playback configuration for this prefetch schedule.

*/ inline bool PlaybackConfigurationNameHasBeenSet() const { return m_playbackConfigurationNameHasBeenSet; } /** *

The name of the playback configuration for this prefetch schedule.

*/ inline void SetPlaybackConfigurationName(const Aws::String& value) { m_playbackConfigurationNameHasBeenSet = true; m_playbackConfigurationName = value; } /** *

The name of the playback configuration for this prefetch schedule.

*/ inline void SetPlaybackConfigurationName(Aws::String&& value) { m_playbackConfigurationNameHasBeenSet = true; m_playbackConfigurationName = std::move(value); } /** *

The name of the playback configuration for this prefetch schedule.

*/ inline void SetPlaybackConfigurationName(const char* value) { m_playbackConfigurationNameHasBeenSet = true; m_playbackConfigurationName.assign(value); } /** *

The name of the playback configuration for this prefetch schedule.

*/ inline DeletePrefetchScheduleRequest& WithPlaybackConfigurationName(const Aws::String& value) { SetPlaybackConfigurationName(value); return *this;} /** *

The name of the playback configuration for this prefetch schedule.

*/ inline DeletePrefetchScheduleRequest& WithPlaybackConfigurationName(Aws::String&& value) { SetPlaybackConfigurationName(std::move(value)); return *this;} /** *

The name of the playback configuration for this prefetch schedule.

*/ inline DeletePrefetchScheduleRequest& WithPlaybackConfigurationName(const char* value) { SetPlaybackConfigurationName(value); return *this;} private: Aws::String m_name; bool m_nameHasBeenSet = false; Aws::String m_playbackConfigurationName; bool m_playbackConfigurationNameHasBeenSet = false; }; } // namespace Model } // namespace MediaTailor } // namespace Aws