Interface CreateConfiguredTableRequest.Builder

  • Method Details

    • name

      The name of the configured table.

      Parameters:
      name - The name of the configured table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      CreateConfiguredTableRequest.Builder description(String description)

      A description for the configured table.

      Parameters:
      description - A description for the configured table.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • tableReference

      CreateConfiguredTableRequest.Builder tableReference(TableReference tableReference)

      A reference to the table being configured.

      Parameters:
      tableReference - A reference to the table being configured.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • tableReference

      default CreateConfiguredTableRequest.Builder tableReference(Consumer<TableReference.Builder> tableReference)

      A reference to the table being configured.

      This is a convenience method that creates an instance of the TableReference.Builder avoiding the need to create one manually via TableReference.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to tableReference(TableReference).

      Parameters:
      tableReference - a consumer that will call methods on TableReference.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • allowedColumns

      CreateConfiguredTableRequest.Builder allowedColumns(Collection<String> allowedColumns)

      The columns of the underlying table that can be used by collaborations or analysis rules.

      Parameters:
      allowedColumns - The columns of the underlying table that can be used by collaborations or analysis rules.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • allowedColumns

      CreateConfiguredTableRequest.Builder allowedColumns(String... allowedColumns)

      The columns of the underlying table that can be used by collaborations or analysis rules.

      Parameters:
      allowedColumns - The columns of the underlying table that can be used by collaborations or analysis rules.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • analysisMethod

      CreateConfiguredTableRequest.Builder analysisMethod(String analysisMethod)

      The analysis method allowed for the configured tables.

      DIRECT_QUERY allows SQL queries to be run directly on this table.

      DIRECT_JOB allows PySpark jobs to be run directly on this table.

      MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

      Parameters:
      analysisMethod - The analysis method allowed for the configured tables.

      DIRECT_QUERY allows SQL queries to be run directly on this table.

      DIRECT_JOB allows PySpark jobs to be run directly on this table.

      MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • analysisMethod

      CreateConfiguredTableRequest.Builder analysisMethod(AnalysisMethod analysisMethod)

      The analysis method allowed for the configured tables.

      DIRECT_QUERY allows SQL queries to be run directly on this table.

      DIRECT_JOB allows PySpark jobs to be run directly on this table.

      MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

      Parameters:
      analysisMethod - The analysis method allowed for the configured tables.

      DIRECT_QUERY allows SQL queries to be run directly on this table.

      DIRECT_JOB allows PySpark jobs to be run directly on this table.

      MULTIPLE allows both SQL queries and PySpark jobs to be run directly on this table.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • selectedAnalysisMethodsWithStrings

      CreateConfiguredTableRequest.Builder selectedAnalysisMethodsWithStrings(Collection<String> selectedAnalysisMethods)

      The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.

      Parameters:
      selectedAnalysisMethods - The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • selectedAnalysisMethodsWithStrings

      CreateConfiguredTableRequest.Builder selectedAnalysisMethodsWithStrings(String... selectedAnalysisMethods)

      The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.

      Parameters:
      selectedAnalysisMethods - The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • selectedAnalysisMethods

      CreateConfiguredTableRequest.Builder selectedAnalysisMethods(Collection<SelectedAnalysisMethod> selectedAnalysisMethods)

      The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.

      Parameters:
      selectedAnalysisMethods - The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • selectedAnalysisMethods

      CreateConfiguredTableRequest.Builder selectedAnalysisMethods(SelectedAnalysisMethod... selectedAnalysisMethods)

      The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.

      Parameters:
      selectedAnalysisMethods - The analysis methods to enable for the configured table. When configured, you must specify at least two analysis methods.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • tags

      An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.

      Parameters:
      tags - An optional label that you can assign to a resource when you create it. Each tag consists of a key and an optional value, both of which you define. When you use tagging, you can also use tag-based access control in IAM policies to control access to this resource.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • overrideConfiguration

      CreateConfiguredTableRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.