Interface LaunchPathSummary.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<LaunchPathSummary.Builder,LaunchPathSummary>,SdkBuilder<LaunchPathSummary.Builder,LaunchPathSummary>,SdkPojo
- Enclosing class:
- LaunchPathSummary
public static interface LaunchPathSummary.Builder extends SdkPojo, CopyableBuilder<LaunchPathSummary.Builder,LaunchPathSummary>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description LaunchPathSummary.BuilderconstraintSummaries(Collection<ConstraintSummary> constraintSummaries)The constraints on the portfolio-product relationship.LaunchPathSummary.BuilderconstraintSummaries(Consumer<ConstraintSummary.Builder>... constraintSummaries)The constraints on the portfolio-product relationship.LaunchPathSummary.BuilderconstraintSummaries(ConstraintSummary... constraintSummaries)The constraints on the portfolio-product relationship.LaunchPathSummary.Builderid(String id)The identifier of the product path.LaunchPathSummary.Buildername(String name)The name of the portfolio that contains the product.LaunchPathSummary.Buildertags(Collection<Tag> tags)The tags associated with this product path.LaunchPathSummary.Buildertags(Consumer<Tag.Builder>... tags)The tags associated with this product path.LaunchPathSummary.Buildertags(Tag... tags)The tags associated with this product path.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
id
LaunchPathSummary.Builder id(String id)
The identifier of the product path.
- Parameters:
id- The identifier of the product path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
constraintSummaries
LaunchPathSummary.Builder constraintSummaries(Collection<ConstraintSummary> constraintSummaries)
The constraints on the portfolio-product relationship.
- Parameters:
constraintSummaries- The constraints on the portfolio-product relationship.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
constraintSummaries
LaunchPathSummary.Builder constraintSummaries(ConstraintSummary... constraintSummaries)
The constraints on the portfolio-product relationship.
- Parameters:
constraintSummaries- The constraints on the portfolio-product relationship.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
constraintSummaries
LaunchPathSummary.Builder constraintSummaries(Consumer<ConstraintSummary.Builder>... constraintSummaries)
The constraints on the portfolio-product relationship.
This is a convenience method that creates an instance of theConstraintSummary.Builderavoiding the need to create one manually viaConstraintSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#constraintSummaries(List.) - Parameters:
constraintSummaries- a consumer that will call methods onConstraintSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#constraintSummaries(java.util.Collection)
-
tags
LaunchPathSummary.Builder tags(Collection<Tag> tags)
The tags associated with this product path.
- Parameters:
tags- The tags associated with this product path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
LaunchPathSummary.Builder tags(Tag... tags)
The tags associated with this product path.
- Parameters:
tags- The tags associated with this product path.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
tags
LaunchPathSummary.Builder tags(Consumer<Tag.Builder>... tags)
The tags associated with this product path.
This is a convenience method that creates an instance of theTag.Builderavoiding the need to create one manually viaTag.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#tags(List.) - Parameters:
tags- a consumer that will call methods onTag.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#tags(java.util.Collection)
-
name
LaunchPathSummary.Builder name(String name)
The name of the portfolio that contains the product.
- Parameters:
name- The name of the portfolio that contains the product.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-