478 lines
23 KiB
C++
478 lines
23 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/pi/PI_EXPORTS.h>
|
|
#include <aws/pi/PIRequest.h>
|
|
#include <aws/pi/model/ServiceType.h>
|
|
#include <aws/core/utils/memory/stl/AWSString.h>
|
|
#include <aws/core/utils/memory/stl/AWSVector.h>
|
|
#include <aws/core/utils/DateTime.h>
|
|
#include <aws/pi/model/MetricQuery.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
namespace PI
|
|
{
|
|
namespace Model
|
|
{
|
|
|
|
/**
|
|
*/
|
|
class AWS_PI_API GetResourceMetricsRequest : public PIRequest
|
|
{
|
|
public:
|
|
GetResourceMetricsRequest();
|
|
|
|
// 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 "GetResourceMetrics"; }
|
|
|
|
Aws::String SerializePayload() const override;
|
|
|
|
Aws::Http::HeaderValueCollection GetRequestSpecificHeaders() const override;
|
|
|
|
|
|
/**
|
|
* <p>The AWS service for which Performance Insights will return metrics. The only
|
|
* valid value for <i>ServiceType</i> is: <code>RDS</code> </p>
|
|
*/
|
|
inline const ServiceType& GetServiceType() const{ return m_serviceType; }
|
|
|
|
/**
|
|
* <p>The AWS service for which Performance Insights will return metrics. The only
|
|
* valid value for <i>ServiceType</i> is: <code>RDS</code> </p>
|
|
*/
|
|
inline bool ServiceTypeHasBeenSet() const { return m_serviceTypeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The AWS service for which Performance Insights will return metrics. The only
|
|
* valid value for <i>ServiceType</i> is: <code>RDS</code> </p>
|
|
*/
|
|
inline void SetServiceType(const ServiceType& value) { m_serviceTypeHasBeenSet = true; m_serviceType = value; }
|
|
|
|
/**
|
|
* <p>The AWS service for which Performance Insights will return metrics. The only
|
|
* valid value for <i>ServiceType</i> is: <code>RDS</code> </p>
|
|
*/
|
|
inline void SetServiceType(ServiceType&& value) { m_serviceTypeHasBeenSet = true; m_serviceType = std::move(value); }
|
|
|
|
/**
|
|
* <p>The AWS service for which Performance Insights will return metrics. The only
|
|
* valid value for <i>ServiceType</i> is: <code>RDS</code> </p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithServiceType(const ServiceType& value) { SetServiceType(value); return *this;}
|
|
|
|
/**
|
|
* <p>The AWS service for which Performance Insights will return metrics. The only
|
|
* valid value for <i>ServiceType</i> is: <code>RDS</code> </p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithServiceType(ServiceType&& value) { SetServiceType(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline const Aws::String& GetIdentifier() const{ return m_identifier; }
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline bool IdentifierHasBeenSet() const { return m_identifierHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline void SetIdentifier(const Aws::String& value) { m_identifierHasBeenSet = true; m_identifier = value; }
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline void SetIdentifier(Aws::String&& value) { m_identifierHasBeenSet = true; m_identifier = std::move(value); }
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline void SetIdentifier(const char* value) { m_identifierHasBeenSet = true; m_identifier.assign(value); }
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithIdentifier(const Aws::String& value) { SetIdentifier(value); return *this;}
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithIdentifier(Aws::String&& value) { SetIdentifier(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An immutable, AWS Region-unique identifier for a data source. Performance
|
|
* Insights gathers metrics from this data source.</p> <p>To use an Amazon RDS
|
|
* instance as a data source, you specify its <code>DbiResourceId</code> value -
|
|
* for example: <code>db-FAIHNTYBKTGAUSUZQYPDS2GW4A</code> </p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithIdentifier(const char* value) { SetIdentifier(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline const Aws::Vector<MetricQuery>& GetMetricQueries() const{ return m_metricQueries; }
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline bool MetricQueriesHasBeenSet() const { return m_metricQueriesHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline void SetMetricQueries(const Aws::Vector<MetricQuery>& value) { m_metricQueriesHasBeenSet = true; m_metricQueries = value; }
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline void SetMetricQueries(Aws::Vector<MetricQuery>&& value) { m_metricQueriesHasBeenSet = true; m_metricQueries = std::move(value); }
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithMetricQueries(const Aws::Vector<MetricQuery>& value) { SetMetricQueries(value); return *this;}
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithMetricQueries(Aws::Vector<MetricQuery>&& value) { SetMetricQueries(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& AddMetricQueries(const MetricQuery& value) { m_metricQueriesHasBeenSet = true; m_metricQueries.push_back(value); return *this; }
|
|
|
|
/**
|
|
* <p>An array of one or more queries to perform. Each query must specify a
|
|
* Performance Insights metric, and can optionally specify aggregation and
|
|
* filtering criteria.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& AddMetricQueries(MetricQuery&& value) { m_metricQueriesHasBeenSet = true; m_metricQueries.push_back(std::move(value)); return *this; }
|
|
|
|
|
|
/**
|
|
* <p>The date and time specifying the beginning of the requested time series data.
|
|
* You can't specify a <code>StartTime</code> that's earlier than 7 days ago. The
|
|
* value specified is <i>inclusive</i> - data points equal to or greater than
|
|
* <code>StartTime</code> will be returned.</p> <p>The value for
|
|
* <code>StartTime</code> must be earlier than the value for
|
|
* <code>EndTime</code>.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetStartTime() const{ return m_startTime; }
|
|
|
|
/**
|
|
* <p>The date and time specifying the beginning of the requested time series data.
|
|
* You can't specify a <code>StartTime</code> that's earlier than 7 days ago. The
|
|
* value specified is <i>inclusive</i> - data points equal to or greater than
|
|
* <code>StartTime</code> will be returned.</p> <p>The value for
|
|
* <code>StartTime</code> must be earlier than the value for
|
|
* <code>EndTime</code>.</p>
|
|
*/
|
|
inline bool StartTimeHasBeenSet() const { return m_startTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The date and time specifying the beginning of the requested time series data.
|
|
* You can't specify a <code>StartTime</code> that's earlier than 7 days ago. The
|
|
* value specified is <i>inclusive</i> - data points equal to or greater than
|
|
* <code>StartTime</code> will be returned.</p> <p>The value for
|
|
* <code>StartTime</code> must be earlier than the value for
|
|
* <code>EndTime</code>.</p>
|
|
*/
|
|
inline void SetStartTime(const Aws::Utils::DateTime& value) { m_startTimeHasBeenSet = true; m_startTime = value; }
|
|
|
|
/**
|
|
* <p>The date and time specifying the beginning of the requested time series data.
|
|
* You can't specify a <code>StartTime</code> that's earlier than 7 days ago. The
|
|
* value specified is <i>inclusive</i> - data points equal to or greater than
|
|
* <code>StartTime</code> will be returned.</p> <p>The value for
|
|
* <code>StartTime</code> must be earlier than the value for
|
|
* <code>EndTime</code>.</p>
|
|
*/
|
|
inline void SetStartTime(Aws::Utils::DateTime&& value) { m_startTimeHasBeenSet = true; m_startTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The date and time specifying the beginning of the requested time series data.
|
|
* You can't specify a <code>StartTime</code> that's earlier than 7 days ago. The
|
|
* value specified is <i>inclusive</i> - data points equal to or greater than
|
|
* <code>StartTime</code> will be returned.</p> <p>The value for
|
|
* <code>StartTime</code> must be earlier than the value for
|
|
* <code>EndTime</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithStartTime(const Aws::Utils::DateTime& value) { SetStartTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time specifying the beginning of the requested time series data.
|
|
* You can't specify a <code>StartTime</code> that's earlier than 7 days ago. The
|
|
* value specified is <i>inclusive</i> - data points equal to or greater than
|
|
* <code>StartTime</code> will be returned.</p> <p>The value for
|
|
* <code>StartTime</code> must be earlier than the value for
|
|
* <code>EndTime</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithStartTime(Aws::Utils::DateTime&& value) { SetStartTime(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The date and time specifiying the end of the requested time series data. The
|
|
* value specified is <i>exclusive</i> - data points less than (but not equal to)
|
|
* <code>EndTime</code> will be returned.</p> <p>The value for <code>EndTime</code>
|
|
* must be later than the value for <code>StartTime</code>.</p>
|
|
*/
|
|
inline const Aws::Utils::DateTime& GetEndTime() const{ return m_endTime; }
|
|
|
|
/**
|
|
* <p>The date and time specifiying the end of the requested time series data. The
|
|
* value specified is <i>exclusive</i> - data points less than (but not equal to)
|
|
* <code>EndTime</code> will be returned.</p> <p>The value for <code>EndTime</code>
|
|
* must be later than the value for <code>StartTime</code>.</p>
|
|
*/
|
|
inline bool EndTimeHasBeenSet() const { return m_endTimeHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The date and time specifiying the end of the requested time series data. The
|
|
* value specified is <i>exclusive</i> - data points less than (but not equal to)
|
|
* <code>EndTime</code> will be returned.</p> <p>The value for <code>EndTime</code>
|
|
* must be later than the value for <code>StartTime</code>.</p>
|
|
*/
|
|
inline void SetEndTime(const Aws::Utils::DateTime& value) { m_endTimeHasBeenSet = true; m_endTime = value; }
|
|
|
|
/**
|
|
* <p>The date and time specifiying the end of the requested time series data. The
|
|
* value specified is <i>exclusive</i> - data points less than (but not equal to)
|
|
* <code>EndTime</code> will be returned.</p> <p>The value for <code>EndTime</code>
|
|
* must be later than the value for <code>StartTime</code>.</p>
|
|
*/
|
|
inline void SetEndTime(Aws::Utils::DateTime&& value) { m_endTimeHasBeenSet = true; m_endTime = std::move(value); }
|
|
|
|
/**
|
|
* <p>The date and time specifiying the end of the requested time series data. The
|
|
* value specified is <i>exclusive</i> - data points less than (but not equal to)
|
|
* <code>EndTime</code> will be returned.</p> <p>The value for <code>EndTime</code>
|
|
* must be later than the value for <code>StartTime</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithEndTime(const Aws::Utils::DateTime& value) { SetEndTime(value); return *this;}
|
|
|
|
/**
|
|
* <p>The date and time specifiying the end of the requested time series data. The
|
|
* value specified is <i>exclusive</i> - data points less than (but not equal to)
|
|
* <code>EndTime</code> will be returned.</p> <p>The value for <code>EndTime</code>
|
|
* must be later than the value for <code>StartTime</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithEndTime(Aws::Utils::DateTime&& value) { SetEndTime(std::move(value)); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The granularity, in seconds, of the data points returned from Performance
|
|
* Insights. A period can be as short as one second, or as long as one day (86400
|
|
* seconds). Valid values are:</p> <ul> <li> <p> <code>1</code> (one second)</p>
|
|
* </li> <li> <p> <code>60</code> (one minute)</p> </li> <li> <p> <code>300</code>
|
|
* (five minutes)</p> </li> <li> <p> <code>3600</code> (one hour)</p> </li> <li>
|
|
* <p> <code>86400</code> (twenty-four hours)</p> </li> </ul> <p>If you don't
|
|
* specify <code>PeriodInSeconds</code>, then Performance Insights will choose a
|
|
* value for you, with a goal of returning roughly 100-200 data points in the
|
|
* response.</p>
|
|
*/
|
|
inline int GetPeriodInSeconds() const{ return m_periodInSeconds; }
|
|
|
|
/**
|
|
* <p>The granularity, in seconds, of the data points returned from Performance
|
|
* Insights. A period can be as short as one second, or as long as one day (86400
|
|
* seconds). Valid values are:</p> <ul> <li> <p> <code>1</code> (one second)</p>
|
|
* </li> <li> <p> <code>60</code> (one minute)</p> </li> <li> <p> <code>300</code>
|
|
* (five minutes)</p> </li> <li> <p> <code>3600</code> (one hour)</p> </li> <li>
|
|
* <p> <code>86400</code> (twenty-four hours)</p> </li> </ul> <p>If you don't
|
|
* specify <code>PeriodInSeconds</code>, then Performance Insights will choose a
|
|
* value for you, with a goal of returning roughly 100-200 data points in the
|
|
* response.</p>
|
|
*/
|
|
inline bool PeriodInSecondsHasBeenSet() const { return m_periodInSecondsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The granularity, in seconds, of the data points returned from Performance
|
|
* Insights. A period can be as short as one second, or as long as one day (86400
|
|
* seconds). Valid values are:</p> <ul> <li> <p> <code>1</code> (one second)</p>
|
|
* </li> <li> <p> <code>60</code> (one minute)</p> </li> <li> <p> <code>300</code>
|
|
* (five minutes)</p> </li> <li> <p> <code>3600</code> (one hour)</p> </li> <li>
|
|
* <p> <code>86400</code> (twenty-four hours)</p> </li> </ul> <p>If you don't
|
|
* specify <code>PeriodInSeconds</code>, then Performance Insights will choose a
|
|
* value for you, with a goal of returning roughly 100-200 data points in the
|
|
* response.</p>
|
|
*/
|
|
inline void SetPeriodInSeconds(int value) { m_periodInSecondsHasBeenSet = true; m_periodInSeconds = value; }
|
|
|
|
/**
|
|
* <p>The granularity, in seconds, of the data points returned from Performance
|
|
* Insights. A period can be as short as one second, or as long as one day (86400
|
|
* seconds). Valid values are:</p> <ul> <li> <p> <code>1</code> (one second)</p>
|
|
* </li> <li> <p> <code>60</code> (one minute)</p> </li> <li> <p> <code>300</code>
|
|
* (five minutes)</p> </li> <li> <p> <code>3600</code> (one hour)</p> </li> <li>
|
|
* <p> <code>86400</code> (twenty-four hours)</p> </li> </ul> <p>If you don't
|
|
* specify <code>PeriodInSeconds</code>, then Performance Insights will choose a
|
|
* value for you, with a goal of returning roughly 100-200 data points in the
|
|
* response.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithPeriodInSeconds(int value) { SetPeriodInSeconds(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>The maximum number of items to return in the response. If more items exist
|
|
* than the specified <code>MaxRecords</code> value, a pagination token is included
|
|
* in the response so that the remaining results can be retrieved. </p>
|
|
*/
|
|
inline int GetMaxResults() const{ return m_maxResults; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to return in the response. If more items exist
|
|
* than the specified <code>MaxRecords</code> value, a pagination token is included
|
|
* in the response so that the remaining results can be retrieved. </p>
|
|
*/
|
|
inline bool MaxResultsHasBeenSet() const { return m_maxResultsHasBeenSet; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to return in the response. If more items exist
|
|
* than the specified <code>MaxRecords</code> value, a pagination token is included
|
|
* in the response so that the remaining results can be retrieved. </p>
|
|
*/
|
|
inline void SetMaxResults(int value) { m_maxResultsHasBeenSet = true; m_maxResults = value; }
|
|
|
|
/**
|
|
* <p>The maximum number of items to return in the response. If more items exist
|
|
* than the specified <code>MaxRecords</code> value, a pagination token is included
|
|
* in the response so that the remaining results can be retrieved. </p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithMaxResults(int value) { SetMaxResults(value); return *this;}
|
|
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline const Aws::String& GetNextToken() const{ return m_nextToken; }
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline bool NextTokenHasBeenSet() const { return m_nextTokenHasBeenSet; }
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline void SetNextToken(const Aws::String& value) { m_nextTokenHasBeenSet = true; m_nextToken = value; }
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline void SetNextToken(Aws::String&& value) { m_nextTokenHasBeenSet = true; m_nextToken = std::move(value); }
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline void SetNextToken(const char* value) { m_nextTokenHasBeenSet = true; m_nextToken.assign(value); }
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;}
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;}
|
|
|
|
/**
|
|
* <p>An optional pagination token provided by a previous request. If this
|
|
* parameter is specified, the response includes only records beyond the token, up
|
|
* to the value specified by <code>MaxRecords</code>.</p>
|
|
*/
|
|
inline GetResourceMetricsRequest& WithNextToken(const char* value) { SetNextToken(value); return *this;}
|
|
|
|
private:
|
|
|
|
ServiceType m_serviceType;
|
|
bool m_serviceTypeHasBeenSet;
|
|
|
|
Aws::String m_identifier;
|
|
bool m_identifierHasBeenSet;
|
|
|
|
Aws::Vector<MetricQuery> m_metricQueries;
|
|
bool m_metricQueriesHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_startTime;
|
|
bool m_startTimeHasBeenSet;
|
|
|
|
Aws::Utils::DateTime m_endTime;
|
|
bool m_endTimeHasBeenSet;
|
|
|
|
int m_periodInSeconds;
|
|
bool m_periodInSecondsHasBeenSet;
|
|
|
|
int m_maxResults;
|
|
bool m_maxResultsHasBeenSet;
|
|
|
|
Aws::String m_nextToken;
|
|
bool m_nextTokenHasBeenSet;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace PI
|
|
} // namespace Aws
|