Interface AssetOptions.Builder

  • Method Details

    • timezone

      AssetOptions.Builder timezone(String timezone)

      Determines the timezone for the analysis.

      Parameters:
      timezone - Determines the timezone for the analysis.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • weekStart

      AssetOptions.Builder weekStart(String weekStart)

      Determines the week start day for an analysis.

      Parameters:
      weekStart - Determines the week start day for an analysis.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • weekStart

      AssetOptions.Builder weekStart(DayOfTheWeek weekStart)

      Determines the week start day for an analysis.

      Parameters:
      weekStart - Determines the week start day for an analysis.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • qBusinessInsightsStatus

      AssetOptions.Builder qBusinessInsightsStatus(String qBusinessInsightsStatus)

      Determines whether insight summaries from Amazon Q Business are allowed in Dashboard Q&A.

      Parameters:
      qBusinessInsightsStatus - Determines whether insight summaries from Amazon Q Business are allowed in Dashboard Q&A.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • qBusinessInsightsStatus

      AssetOptions.Builder qBusinessInsightsStatus(QBusinessInsightsStatus qBusinessInsightsStatus)

      Determines whether insight summaries from Amazon Q Business are allowed in Dashboard Q&A.

      Parameters:
      qBusinessInsightsStatus - Determines whether insight summaries from Amazon Q Business are allowed in Dashboard Q&A.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • excludedDataSetArns

      AssetOptions.Builder excludedDataSetArns(Collection<String> excludedDataSetArns)

      A list of dataset ARNS to exclude from Dashboard Q&A.

      Parameters:
      excludedDataSetArns - A list of dataset ARNS to exclude from Dashboard Q&A.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • excludedDataSetArns

      AssetOptions.Builder excludedDataSetArns(String... excludedDataSetArns)

      A list of dataset ARNS to exclude from Dashboard Q&A.

      Parameters:
      excludedDataSetArns - A list of dataset ARNS to exclude from Dashboard Q&A.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • customActionDefaults

      AssetOptions.Builder customActionDefaults(VisualCustomActionDefaults customActionDefaults)

      A list of visual custom actions for the analysis.

      Parameters:
      customActionDefaults - A list of visual custom actions for the analysis.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • customActionDefaults

      default AssetOptions.Builder customActionDefaults(Consumer<VisualCustomActionDefaults.Builder> customActionDefaults)

      A list of visual custom actions for the analysis.

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

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

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