Interface Scope.Builder

All Superinterfaces:
Buildable, CopyableBuilder<Scope.Builder,Scope>, SdkBuilder<Scope.Builder,Scope>, SdkPojo
Enclosing class:
Scope

@Mutable @NotThreadSafe public static interface Scope.Builder extends SdkPojo, CopyableBuilder<Scope.Builder,Scope>
  • Method Details

    • pillarsWithStrings

      Scope.Builder pillarsWithStrings(Collection<String> pillars)

      The Well-Architected Tool Framework pillars to include in the generation scope.

      Parameters:
      pillars - The Well-Architected Tool Framework pillars to include in the generation scope.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • pillarsWithStrings

      Scope.Builder pillarsWithStrings(String... pillars)

      The Well-Architected Tool Framework pillars to include in the generation scope.

      Parameters:
      pillars - The Well-Architected Tool Framework pillars to include in the generation scope.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • pillars

      Scope.Builder pillars(Collection<Pillar> pillars)

      The Well-Architected Tool Framework pillars to include in the generation scope.

      Parameters:
      pillars - The Well-Architected Tool Framework pillars to include in the generation scope.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • pillars

      Scope.Builder pillars(Pillar... pillars)

      The Well-Architected Tool Framework pillars to include in the generation scope.

      Parameters:
      pillars - The Well-Architected Tool Framework pillars to include in the generation scope.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • goalIds

      Scope.Builder goalIds(Collection<String> goalIds)

      Specific goal IDs to focus on during recommendation generation.

      Parameters:
      goalIds - Specific goal IDs to focus on during recommendation generation.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • goalIds

      Scope.Builder goalIds(String... goalIds)

      Specific goal IDs to focus on during recommendation generation.

      Parameters:
      goalIds - Specific goal IDs to focus on during recommendation generation.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • items

      Optional per-pillar item filtering configuration.

      Parameters:
      items - Optional per-pillar item filtering configuration.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • items

      Scope.Builder items(PillarItem... items)

      Optional per-pillar item filtering configuration.

      Parameters:
      items - Optional per-pillar item filtering configuration.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • items

      Optional per-pillar item filtering configuration.

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

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to items(List<PillarItem>).

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