Interface RegisterAgentRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<RegisterAgentRequest.Builder,RegisterAgentRequest>,GroundStationRequest.Builder,SdkBuilder<RegisterAgentRequest.Builder,RegisterAgentRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- RegisterAgentRequest
public static interface RegisterAgentRequest.Builder extends GroundStationRequest.Builder, SdkPojo, CopyableBuilder<RegisterAgentRequest.Builder,RegisterAgentRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default RegisterAgentRequest.BuilderagentDetails(Consumer<AgentDetails.Builder> agentDetails)Detailed information about the agent being registered.RegisterAgentRequest.BuilderagentDetails(AgentDetails agentDetails)Detailed information about the agent being registered.default RegisterAgentRequest.BuilderdiscoveryData(Consumer<DiscoveryData.Builder> discoveryData)Data for associating an agent with the capabilities it is managing.RegisterAgentRequest.BuilderdiscoveryData(DiscoveryData discoveryData)Data for associating an agent with the capabilities it is managing.RegisterAgentRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)RegisterAgentRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.groundstation.model.GroundStationRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
agentDetails
RegisterAgentRequest.Builder agentDetails(AgentDetails agentDetails)
Detailed information about the agent being registered.
- Parameters:
agentDetails- Detailed information about the agent being registered.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentDetails
default RegisterAgentRequest.Builder agentDetails(Consumer<AgentDetails.Builder> agentDetails)
Detailed information about the agent being registered.
This is a convenience method that creates an instance of theAgentDetails.Builderavoiding the need to create one manually viaAgentDetails.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toagentDetails(AgentDetails).- Parameters:
agentDetails- a consumer that will call methods onAgentDetails.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
agentDetails(AgentDetails)
-
discoveryData
RegisterAgentRequest.Builder discoveryData(DiscoveryData discoveryData)
Data for associating an agent with the capabilities it is managing.
- Parameters:
discoveryData- Data for associating an agent with the capabilities it is managing.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
discoveryData
default RegisterAgentRequest.Builder discoveryData(Consumer<DiscoveryData.Builder> discoveryData)
Data for associating an agent with the capabilities it is managing.
This is a convenience method that creates an instance of theDiscoveryData.Builderavoiding the need to create one manually viaDiscoveryData.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed todiscoveryData(DiscoveryData).- Parameters:
discoveryData- a consumer that will call methods onDiscoveryData.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
discoveryData(DiscoveryData)
-
overrideConfiguration
RegisterAgentRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
RegisterAgentRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-