/* * Copyright 2018-2023 Amazon.com, Inc. or its affiliates. All Rights Reserved. * * Licensed under the Apache License, Version 2.0 (the "License"). You may not use this file except in compliance with * the License. A copy of the License is located at * * http://aws.amazon.com/apache2.0 * * or in the "license" file accompanying this file. This file is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR * CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions * and limitations under the License. */ package com.amazonaws.services.devopsguru.model; import java.io.Serializable; import javax.annotation.Generated; import com.amazonaws.protocol.StructuredPojo; import com.amazonaws.protocol.ProtocolMarshaller; /** *

* A logical grouping of Performance Insights metrics for a related subject area. For example, the db.sql * dimension group consists of the following dimensions: db.sql.id, db.sql.db_id, * db.sql.statement, and db.sql.tokenized_id. *

* *

* Each response element returns a maximum of 500 bytes. For larger elements, such as SQL statements, only the first 500 * bytes are returned. *

*
*

* Amazon RDS Performance Insights enables you to monitor and explore different dimensions of database load based on * data captured from a running DB instance. DB load is measured as average active sessions. Performance Insights * provides the data to API consumers as a two-dimensional time-series dataset. The time dimension provides DB load data * for each time point in the queried time range. Each time point decomposes overall load in relation to the requested * dimensions, measured at that time point. Examples include SQL, Wait event, User, and Host. *

* * * @see AWS API Documentation */ @Generated("com.amazonaws:aws-java-sdk-code-generator") public class PerformanceInsightsMetricDimensionGroup implements Serializable, Cloneable, StructuredPojo { /** *

* The name of the dimension group. Its valid values are: *

* */ private String group; /** *

* A list of specific dimensions from a dimension group. If this parameter is not present, then it signifies that * all of the dimensions in the group were requested or are present in the response. *

*

* Valid values for elements in the Dimensions array are: *

* */ private java.util.List dimensions; /** *

* The maximum number of items to fetch for this dimension group. *

*/ private Integer limit; /** *

* The name of the dimension group. Its valid values are: *

* * * @param group * The name of the dimension group. Its valid values are:

*