Interface SystemAttributes.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<SystemAttributes.Builder,
,SystemAttributes> SdkBuilder<SystemAttributes.Builder,
,SystemAttributes> SdkPojo
- Enclosing class:
SystemAttributes
@Mutable
@NotThreadSafe
public static interface SystemAttributes.Builder
extends SdkPojo, CopyableBuilder<SystemAttributes.Builder,SystemAttributes>
-
Method Summary
Modifier and TypeMethodDescriptiondefault SystemAttributes.Builder
customerEndpoint
(Consumer<SystemEndpointAttributes.Builder> customerEndpoint) The CustomerEndpoint attribute.customerEndpoint
(SystemEndpointAttributes customerEndpoint) The CustomerEndpoint attribute.The name of the task.default SystemAttributes.Builder
systemEndpoint
(Consumer<SystemEndpointAttributes.Builder> systemEndpoint) The SystemEndpoint attribute.systemEndpoint
(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 Details
-
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.
-
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.Builder
avoiding the need to create one manually viaSystemEndpointAttributes.builder()
.When the
Consumer
completes,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:
-
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.Builder
avoiding the need to create one manually viaSystemEndpointAttributes.builder()
.When the
Consumer
completes,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:
-