Record Class ScanTable
java.lang.Object
java.lang.Record
io.camunda.connector.aws.dynamodb.model.ScanTable
- All Implemented Interfaces:
AwsInput,TableInput
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.Returns the value of theexpressionAttributeNamesrecord component.Returns the value of theexpressionAttributeValuesrecord component.Returns the value of thefilterExpressionrecord component.final inthashCode()Returns a hash code value for this object.Returns the value of theprojectionExpressionrecord component.@NotBlank StringReturns the value of thetableNamerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
ScanTable
public ScanTable(@NotBlank @NotBlank String tableName, String filterExpression, String projectionExpression, Map<String, String> expressionAttributeNames, Map<String, Object> expressionAttributeValues) Creates an instance of aScanTablerecord class.- Parameters:
tableName- the value for thetableNamerecord componentfilterExpression- the value for thefilterExpressionrecord componentprojectionExpression- the value for theprojectionExpressionrecord componentexpressionAttributeNames- the value for theexpressionAttributeNamesrecord componentexpressionAttributeValues- the value for theexpressionAttributeValuesrecord component
-
-
Method Details
-
toString
Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components. -
hashCode
public final int hashCode()Returns a hash code value for this object. The value is derived from the hash code of each of the record components. -
equals
Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record class are compared withObjects::equals(Object,Object). -
tableName
Returns the value of thetableNamerecord component.- Returns:
- the value of the
tableNamerecord component
-
filterExpression
Returns the value of thefilterExpressionrecord component.- Returns:
- the value of the
filterExpressionrecord component
-
projectionExpression
Returns the value of theprojectionExpressionrecord component.- Returns:
- the value of the
projectionExpressionrecord component
-
expressionAttributeNames
Returns the value of theexpressionAttributeNamesrecord component.- Returns:
- the value of the
expressionAttributeNamesrecord component
-
expressionAttributeValues
Returns the value of theexpressionAttributeValuesrecord component.- Returns:
- the value of the
expressionAttributeValuesrecord component
-