Class RelationalTable
- java.lang.Object
-
- software.amazon.awssdk.services.quicksight.model.RelationalTable
-
- All Implemented Interfaces:
Serializable,SdkPojo,ToCopyableBuilder<RelationalTable.Builder,RelationalTable>
@Generated("software.amazon.awssdk:codegen") public final class RelationalTable extends Object implements SdkPojo, Serializable, ToCopyableBuilder<RelationalTable.Builder,RelationalTable>
A physical table type for relational data sources.
- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static interfaceRelationalTable.Builder
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static RelationalTable.Builderbuilder()Stringcatalog()The catalog associated with a table.StringdataSourceArn()The Amazon Resource Name (ARN) for the data source.booleanequals(Object obj)booleanequalsBySdkFields(Object obj)<T> Optional<T>getValueForField(String fieldName, Class<T> clazz)inthashCode()booleanhasInputColumns()For responses, this returns true if the service returned a value for the InputColumns property.List<InputColumn>inputColumns()The column schema of the table.Stringname()The name of the relational table.Stringschema()The schema name.List<SdkField<?>>sdkFields()static Class<? extends RelationalTable.Builder>serializableBuilderClass()RelationalTable.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
-
dataSourceArn
public final String dataSourceArn()
The Amazon Resource Name (ARN) for the data source.
- Returns:
- The Amazon Resource Name (ARN) for the data source.
-
catalog
public final String catalog()
The catalog associated with a table.
- Returns:
- The catalog associated with a table.
-
schema
public final String schema()
The schema name. This name applies to certain relational database engines.
- Returns:
- The schema name. This name applies to certain relational database engines.
-
name
public final String name()
The name of the relational table.
- Returns:
- The name of the relational table.
-
hasInputColumns
public final boolean hasInputColumns()
For responses, this returns true if the service returned a value for the InputColumns 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.
-
inputColumns
public final List<InputColumn> inputColumns()
The column schema of the table.
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
hasInputColumns()method.- Returns:
- The column schema of the table.
-
toBuilder
public RelationalTable.Builder toBuilder()
- Specified by:
toBuilderin interfaceToCopyableBuilder<RelationalTable.Builder,RelationalTable>
-
builder
public static RelationalTable.Builder builder()
-
serializableBuilderClass
public static Class<? extends RelationalTable.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.
-
-