Interface StartDataCollectionByAgentIdsResponse.Builder
-
- All Superinterfaces:
ApplicationDiscoveryResponse.Builder,AwsResponse.Builder,Buildable,CopyableBuilder<StartDataCollectionByAgentIdsResponse.Builder,StartDataCollectionByAgentIdsResponse>,SdkBuilder<StartDataCollectionByAgentIdsResponse.Builder,StartDataCollectionByAgentIdsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- StartDataCollectionByAgentIdsResponse
public static interface StartDataCollectionByAgentIdsResponse.Builder extends ApplicationDiscoveryResponse.Builder, SdkPojo, CopyableBuilder<StartDataCollectionByAgentIdsResponse.Builder,StartDataCollectionByAgentIdsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StartDataCollectionByAgentIdsResponse.BuilderagentsConfigurationStatus(Collection<AgentConfigurationStatus> agentsConfigurationStatus)Information about agents that were instructed to start collecting data.StartDataCollectionByAgentIdsResponse.BuilderagentsConfigurationStatus(Consumer<AgentConfigurationStatus.Builder>... agentsConfigurationStatus)Information about agents that were instructed to start collecting data.StartDataCollectionByAgentIdsResponse.BuilderagentsConfigurationStatus(AgentConfigurationStatus... agentsConfigurationStatus)Information about agents that were instructed to start collecting data.-
Methods inherited from interface software.amazon.awssdk.services.applicationdiscovery.model.ApplicationDiscoveryResponse.Builder
build, responseMetadata, responseMetadata
-
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, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
agentsConfigurationStatus
StartDataCollectionByAgentIdsResponse.Builder agentsConfigurationStatus(Collection<AgentConfigurationStatus> agentsConfigurationStatus)
Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.
- Parameters:
agentsConfigurationStatus- Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentsConfigurationStatus
StartDataCollectionByAgentIdsResponse.Builder agentsConfigurationStatus(AgentConfigurationStatus... agentsConfigurationStatus)
Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.
- Parameters:
agentsConfigurationStatus- Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
agentsConfigurationStatus
StartDataCollectionByAgentIdsResponse.Builder agentsConfigurationStatus(Consumer<AgentConfigurationStatus.Builder>... agentsConfigurationStatus)
Information about agents that were instructed to start collecting data. Information includes the agent ID, a description of the operation performed, and whether the agent configuration was updated.
This is a convenience method that creates an instance of theAgentConfigurationStatus.Builderavoiding the need to create one manually viaAgentConfigurationStatus.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#agentsConfigurationStatus(List.) - Parameters:
agentsConfigurationStatus- a consumer that will call methods onAgentConfigurationStatus.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#agentsConfigurationStatus(java.util.Collection)
-
-