Interface SystemAttributes.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<SystemAttributes.Builder,SystemAttributes>,SdkBuilder<SystemAttributes.Builder,SystemAttributes>,SdkPojo
- Enclosing class:
- SystemAttributes
public static interface SystemAttributes.Builder extends SdkPojo, CopyableBuilder<SystemAttributes.Builder,SystemAttributes>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default SystemAttributes.BuildercustomerEndpoint(Consumer<SystemEndpointAttributes.Builder> customerEndpoint)The CustomerEndpoint attribute.SystemAttributes.BuildercustomerEndpoint(SystemEndpointAttributes customerEndpoint)The CustomerEndpoint attribute.SystemAttributes.Buildername(String name)The name of the task.default SystemAttributes.BuildersystemEndpoint(Consumer<SystemEndpointAttributes.Builder> systemEndpoint)The SystemEndpoint attribute.SystemAttributes.BuildersystemEndpoint(SystemEndpointAttributes systemEndpoint)The SystemEndpoint attribute.-
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
-
customerEndpoint
SystemAttributes.Builder customerEndpoint(SystemEndpointAttributes customerEndpoint)
The CustomerEndpoint attribute.
- Parameters:
customerEndpoint- The CustomerEndpoint attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customerEndpoint
default SystemAttributes.Builder customerEndpoint(Consumer<SystemEndpointAttributes.Builder> customerEndpoint)
The CustomerEndpoint attribute.
This is a convenience method that creates an instance of theSystemEndpointAttributes.Builderavoiding the need to create one manually viaSystemEndpointAttributes.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tocustomerEndpoint(SystemEndpointAttributes).- Parameters:
customerEndpoint- a consumer that will call methods onSystemEndpointAttributes.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
customerEndpoint(SystemEndpointAttributes)
-
name
SystemAttributes.Builder name(String name)
The name of the task.
- Parameters:
name- The name of the task.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
systemEndpoint
SystemAttributes.Builder systemEndpoint(SystemEndpointAttributes systemEndpoint)
The SystemEndpoint attribute.
- Parameters:
systemEndpoint- The SystemEndpoint attribute.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
systemEndpoint
default SystemAttributes.Builder systemEndpoint(Consumer<SystemEndpointAttributes.Builder> systemEndpoint)
The SystemEndpoint attribute.
This is a convenience method that creates an instance of theSystemEndpointAttributes.Builderavoiding the need to create one manually viaSystemEndpointAttributes.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosystemEndpoint(SystemEndpointAttributes).- Parameters:
systemEndpoint- a consumer that will call methods onSystemEndpointAttributes.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
systemEndpoint(SystemEndpointAttributes)
-
-