/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include #include namespace Aws { namespace Kinesis { namespace Model { /** *

Represents the input for DisableEnhancedMonitoring.

See * Also:

AWS * API Reference

*/ class AWS_KINESIS_API DisableEnhancedMonitoringRequest : public KinesisRequest { public: DisableEnhancedMonitoringRequest(); // 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 "DisableEnhancedMonitoring"; } Aws::String SerializePayload() const override; Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override; /** *

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

The name of the Kinesis data stream for which to disable enhanced * monitoring.

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

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline const Aws::Vector& GetShardLevelMetrics() const{ return m_shardLevelMetrics; } /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline bool ShardLevelMetricsHasBeenSet() const { return m_shardLevelMetricsHasBeenSet; } /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline void SetShardLevelMetrics(const Aws::Vector& value) { m_shardLevelMetricsHasBeenSet = true; m_shardLevelMetrics = value; } /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline void SetShardLevelMetrics(Aws::Vector&& value) { m_shardLevelMetricsHasBeenSet = true; m_shardLevelMetrics = std::move(value); } /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline DisableEnhancedMonitoringRequest& WithShardLevelMetrics(const Aws::Vector& value) { SetShardLevelMetrics(value); return *this;} /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline DisableEnhancedMonitoringRequest& WithShardLevelMetrics(Aws::Vector&& value) { SetShardLevelMetrics(std::move(value)); return *this;} /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline DisableEnhancedMonitoringRequest& AddShardLevelMetrics(const MetricsName& value) { m_shardLevelMetricsHasBeenSet = true; m_shardLevelMetrics.push_back(value); return *this; } /** *

List of shard-level metrics to disable.

The following are the valid * shard-level metrics. The value "ALL" disables every metric.

*
  • IncomingBytes

  • * IncomingRecords

  • OutgoingBytes

    *
  • OutgoingRecords

  • * WriteProvisionedThroughputExceeded

  • * ReadProvisionedThroughputExceeded

  • * IteratorAgeMilliseconds

  • ALL

    *

For more information, see Monitoring * the Amazon Kinesis Data Streams Service with Amazon CloudWatch in the * Amazon Kinesis Data Streams Developer Guide.

*/ inline DisableEnhancedMonitoringRequest& AddShardLevelMetrics(MetricsName&& value) { m_shardLevelMetricsHasBeenSet = true; m_shardLevelMetrics.push_back(std::move(value)); return *this; } private: Aws::String m_streamName; bool m_streamNameHasBeenSet; Aws::Vector m_shardLevelMetrics; bool m_shardLevelMetricsHasBeenSet; }; } // namespace Model } // namespace Kinesis } // namespace Aws