/** * 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 KinesisVideo { namespace Model { /** */ class UpdateNotificationConfigurationRequest : public KinesisVideoRequest { public: AWS_KINESISVIDEO_API UpdateNotificationConfigurationRequest(); // 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 "UpdateNotificationConfiguration"; } AWS_KINESISVIDEO_API Aws::String SerializePayload() const override; /** *

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The name of the stream from which to update the notification configuration. * You must specify either the StreamName or the * StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The Amazon Resource Name (ARN) of the Kinesis video stream from where you * want to update the notification configuration. You must specify either the * StreamName or the StreamARN.

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

The structure containing the information required for notifications. If the * structure is null, the configuration will be deleted from the stream.

*/ inline const NotificationConfiguration& GetNotificationConfiguration() const{ return m_notificationConfiguration; } /** *

The structure containing the information required for notifications. If the * structure is null, the configuration will be deleted from the stream.

*/ inline bool NotificationConfigurationHasBeenSet() const { return m_notificationConfigurationHasBeenSet; } /** *

The structure containing the information required for notifications. If the * structure is null, the configuration will be deleted from the stream.

*/ inline void SetNotificationConfiguration(const NotificationConfiguration& value) { m_notificationConfigurationHasBeenSet = true; m_notificationConfiguration = value; } /** *

The structure containing the information required for notifications. If the * structure is null, the configuration will be deleted from the stream.

*/ inline void SetNotificationConfiguration(NotificationConfiguration&& value) { m_notificationConfigurationHasBeenSet = true; m_notificationConfiguration = std::move(value); } /** *

The structure containing the information required for notifications. If the * structure is null, the configuration will be deleted from the stream.

*/ inline UpdateNotificationConfigurationRequest& WithNotificationConfiguration(const NotificationConfiguration& value) { SetNotificationConfiguration(value); return *this;} /** *

The structure containing the information required for notifications. If the * structure is null, the configuration will be deleted from the stream.

*/ inline UpdateNotificationConfigurationRequest& WithNotificationConfiguration(NotificationConfiguration&& value) { SetNotificationConfiguration(std::move(value)); return *this;} private: Aws::String m_streamName; bool m_streamNameHasBeenSet = false; Aws::String m_streamARN; bool m_streamARNHasBeenSet = false; NotificationConfiguration m_notificationConfiguration; bool m_notificationConfigurationHasBeenSet = false; }; } // namespace Model } // namespace KinesisVideo } // namespace Aws