/* * 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.pi.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: *

* * *

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

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

* The name of the dimension group. Valid values are as follows: *

* */ 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. Valid values are as follows: *

* * * @param group * The name of the dimension group. Valid values are as follows:

*