Interface FargateProfileHealth.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<FargateProfileHealth.Builder,FargateProfileHealth>,SdkBuilder<FargateProfileHealth.Builder,FargateProfileHealth>,SdkPojo
- Enclosing class:
- FargateProfileHealth
public static interface FargateProfileHealth.Builder extends SdkPojo, CopyableBuilder<FargateProfileHealth.Builder,FargateProfileHealth>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FargateProfileHealth.Builderissues(Collection<FargateProfileIssue> issues)Any issues that are associated with the Fargate profile.FargateProfileHealth.Builderissues(Consumer<FargateProfileIssue.Builder>... issues)Any issues that are associated with the Fargate profile.FargateProfileHealth.Builderissues(FargateProfileIssue... issues)Any issues that are associated with the Fargate profile.-
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
-
issues
FargateProfileHealth.Builder issues(Collection<FargateProfileIssue> issues)
Any issues that are associated with the Fargate profile.
- Parameters:
issues- Any issues that are associated with the Fargate profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issues
FargateProfileHealth.Builder issues(FargateProfileIssue... issues)
Any issues that are associated with the Fargate profile.
- Parameters:
issues- Any issues that are associated with the Fargate profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
issues
FargateProfileHealth.Builder issues(Consumer<FargateProfileIssue.Builder>... issues)
Any issues that are associated with the Fargate profile.
This is a convenience method that creates an instance of theFargateProfileIssue.Builderavoiding the need to create one manually viaFargateProfileIssue.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#issues(List.) - Parameters:
issues- a consumer that will call methods onFargateProfileIssue.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#issues(java.util.Collection)
-
-