Class AnalysisRuleList
- java.lang.Object
-
- software.amazon.awssdk.services.cleanrooms.model.AnalysisRuleList
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<AnalysisRuleList.Builder,AnalysisRuleList>
@Generated("software.amazon.awssdk:codegen") public final class AnalysisRuleList extends Object implements SdkPojo, Serializable, ToCopyableBuilder<AnalysisRuleList.Builder,AnalysisRuleList>
A type of analysis rule that enables row-level analysis.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceAnalysisRuleList.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description List<JoinOperator>allowedJoinOperators()The logical operators (if any) that are to be used in an INNER JOIN match condition.List<String>allowedJoinOperatorsAsStrings()The logical operators (if any) that are to be used in an INNER JOIN match condition.static AnalysisRuleList.Builderbuilder()booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)booleanhasAllowedJoinOperators()For responses, this returns true if the service returned a value for the AllowedJoinOperators property.inthashCode()booleanhasJoinColumns()For responses, this returns true if the service returned a value for the JoinColumns property.booleanhasListColumns()For responses, this returns true if the service returned a value for the ListColumns property.List<String>joinColumns()Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.List<String>listColumns()Columns that can be listed in the output.List<SdkField<?>>sdkFields()static Class<? extends AnalysisRuleList.Builder>serializableBuilderClass()AnalysisRuleList.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
-
hasJoinColumns
public final boolean hasJoinColumns()
For responses, this returns true if the service returned a value for the JoinColumns 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.
-
joinColumns
public final List<String> joinColumns()
Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.
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
hasJoinColumns()method.- Returns:
- Columns that can be used to join a configured table with the table of the member who can query and other members' configured tables.
-
allowedJoinOperators
public final List<JoinOperator> allowedJoinOperators()
The logical operators (if any) that are to be used in an INNER JOIN match condition. Default is
AND.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
hasAllowedJoinOperators()method.- Returns:
- The logical operators (if any) that are to be used in an INNER JOIN match condition. Default is
AND.
-
hasAllowedJoinOperators
public final boolean hasAllowedJoinOperators()
For responses, this returns true if the service returned a value for the AllowedJoinOperators 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.
-
allowedJoinOperatorsAsStrings
public final List<String> allowedJoinOperatorsAsStrings()
The logical operators (if any) that are to be used in an INNER JOIN match condition. Default is
AND.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
hasAllowedJoinOperators()method.- Returns:
- The logical operators (if any) that are to be used in an INNER JOIN match condition. Default is
AND.
-
hasListColumns
public final boolean hasListColumns()
For responses, this returns true if the service returned a value for the ListColumns 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.
-
listColumns
public final List<String> listColumns()
Columns that can be listed in the output.
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
hasListColumns()method.- Returns:
- Columns that can be listed in the output.
-
toBuilder
public AnalysisRuleList.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<AnalysisRuleList.Builder,AnalysisRuleList>
-
builder
public static AnalysisRuleList.Builder builder()
-
serializableBuilderClass
public static Class<? extends AnalysisRuleList.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.
-
-