Class Expression
- java.lang.Object
-
- software.amazon.awssdk.services.costexplorer.model.Expression
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<Expression.Builder,Expression>
@Generated("software.amazon.awssdk:codegen") public final class Expression extends Object implements SdkPojo, Serializable, ToCopyableBuilder<Expression.Builder,Expression>
Use
Expressionto filter in various Cost Explorer APIs.Not all
Expressiontypes are supported in each API. Refer to the documentation for each specific API to see what is supported.There are two patterns:
-
Simple dimension values.
-
There are three types of simple dimension values:
CostCategories,Tags, andDimensions.-
Specify the
CostCategoriesfield to define a filter that acts on Cost Categories. -
Specify the
Tagsfield to define a filter that acts on Cost Allocation Tags. -
Specify the
Dimensionsfield to define a filter that acts on theDimensionValues.
-
-
For each filter type, you can set the dimension name and values for the filters that you plan to use.
-
For example, you can filter for
REGION==us-east-1 OR REGION==us-west-1. ForGetRightsizingRecommendation, the Region is a full name (for example,REGION==US East (N. Virginia). -
The corresponding
Expressionfor this example is as follows:{ "Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] } } -
As shown in the previous example, lists of dimension values are combined with
ORwhen applying the filter.
-
-
You can also set different match options to further control how the filter behaves. Not all APIs support match options. Refer to the documentation for each specific API to see what is supported.
-
For example, you can filter for linked account names that start with "a".
-
The corresponding
Expressionfor this example is as follows:{ "Dimensions": { "Key": "LINKED_ACCOUNT_NAME", "MatchOptions": [ "STARTS_WITH" ], "Values": [ "a" ] } }
-
-
-
Compound
Expressiontypes with logical operations.-
You can use multiple
Expressiontypes and the logical operatorsAND/OR/NOTto create a list of one or moreExpressionobjects. By doing this, you can filter by more advanced options. -
For example, you can filter by
((REGION == us-east-1 OR REGION == us-west-1) OR (TAG.Type == Type1)) AND (USAGE_TYPE != DataTransfer). -
The corresponding
Expressionfor this example is as follows:{ "And": [ {"Or": [ {"Dimensions": { "Key": "REGION", "Values": [ "us-east-1", "us-west-1" ] }}, {"Tags": { "Key": "TagName", "Values": ["Value1"] } } ]}, {"Not": {"Dimensions": { "Key": "USAGE_TYPE", "Values": ["DataTransfer"] }}} ] }
Because each
Expressioncan have only one operator, the service returns an error if more than one is specified. The following example shows anExpressionobject that creates an error:{ "And": [ ... ], "Dimensions": { "Key": "USAGE_TYPE", "Values": [ "DataTransfer" ] } }The following is an example of the corresponding error message:
"Expression has more than one roots. Only one root operator is allowed for each expression: And, Or, Not, Dimensions, Tags, CostCategories" -
For the
GetRightsizingRecommendationaction, a combination of OR and NOT isn't supported. OR isn't supported between different dimensions, or dimensions and tags. NOT operators aren't supported. Dimensions are also limited toLINKED_ACCOUNT,REGION, orRIGHTSIZING_TYPE.For the
GetReservationPurchaseRecommendationaction, only NOT is supported. AND and OR aren't supported. Dimensions are limited toLINKED_ACCOUNT.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceExpression.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<Expression>and()Return results that match bothDimensionobjects.static Expression.Builderbuilder()CostCategoryValuescostCategories()The filter that's based onCostCategoryvalues.DimensionValuesdimensions()The specificDimensionto use forExpression.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasAnd()For responses, this returns true if the service returned a value for the And property.inthashCode()booleanhasOr()For responses, this returns true if the service returned a value for the Or property.Expressionnot()Return results that don't match aDimensionobject.List<Expression>or()Return results that match eitherDimensionobject.List<SdkField<?>>sdkFields()static Class<? extends Expression.Builder>serializableBuilderClass()TagValuestags()The specificTagto use forExpression.Expression.BuildertoBuilder()StringtoString()Returns a string representation of this object.-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface software.amazon.awssdk.utils.builder.ToCopyableBuilder
copy
-
-
-
-
Method Detail
-
hasOr
public final boolean hasOr()
For responses, this returns true if the service returned a value for the Or property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
or
public final List<Expression> or()
Return results that match either
Dimensionobject.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasOr()method.- Returns:
- Return results that match either
Dimensionobject.
-
hasAnd
public final boolean hasAnd()
For responses, this returns true if the service returned a value for the And property. This DOES NOT check that the value is non-empty (for which, you should check theisEmpty()method on the property). This is useful because the SDK will never return a null collection or map, but you may need to differentiate between the service returning nothing (or null) and the service returning an empty collection or map. For requests, this returns true if a value for the property was specified in the request builder, and false if a value was not specified.
-
and
public final List<Expression> and()
Return results that match both
Dimensionobjects.Attempts to modify the collection returned by this method will result in an UnsupportedOperationException.
This method will never return null. If you would like to know whether the service returned this field (so that you can differentiate between null and empty), you can use the
hasAnd()method.- Returns:
- Return results that match both
Dimensionobjects.
-
not
public final Expression not()
Return results that don't match a
Dimensionobject.- Returns:
- Return results that don't match a
Dimensionobject.
-
dimensions
public final DimensionValues dimensions()
The specific
Dimensionto use forExpression.- Returns:
- The specific
Dimensionto use forExpression.
-
tags
public final TagValues tags()
The specific
Tagto use forExpression.- Returns:
- The specific
Tagto use forExpression.
-
costCategories
public final CostCategoryValues costCategories()
The filter that's based on
CostCategoryvalues.- Returns:
- The filter that's based on
CostCategoryvalues.
-
toBuilder
public Expression.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<Expression.Builder,Expression>
-
builder
public static Expression.Builder builder()
-
serializableBuilderClass
public static Class<? extends Expression.Builder> serializableBuilderClass()
-
equalsBySdkFields
public final boolean equalsBySdkFields(Object obj)
- Specified by:
equalsBySdkFieldsin interfaceSdkPojo
-
toString
public final String toString()
Returns a string representation of this object. This is useful for testing and debugging. Sensitive data will be redacted from this string using a placeholder value.
-
-