Interface GetOpsSummaryResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<GetOpsSummaryResponse.Builder,GetOpsSummaryResponse>,SdkBuilder<GetOpsSummaryResponse.Builder,GetOpsSummaryResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- GetOpsSummaryResponse
public static interface GetOpsSummaryResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<GetOpsSummaryResponse.Builder,GetOpsSummaryResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GetOpsSummaryResponse.Builderentities(Collection<OpsEntity> entities)The list of aggregated details and filtered OpsData.GetOpsSummaryResponse.Builderentities(Consumer<OpsEntity.Builder>... entities)The list of aggregated details and filtered OpsData.GetOpsSummaryResponse.Builderentities(OpsEntity... entities)The list of aggregated details and filtered OpsData.GetOpsSummaryResponse.BuildernextToken(String nextToken)The token for the next set of items to return.-
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
-
Methods inherited from interface software.amazon.awssdk.services.ssm.model.SsmResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
entities
GetOpsSummaryResponse.Builder entities(Collection<OpsEntity> entities)
The list of aggregated details and filtered OpsData.
- Parameters:
entities- The list of aggregated details and filtered OpsData.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
GetOpsSummaryResponse.Builder entities(OpsEntity... entities)
The list of aggregated details and filtered OpsData.
- Parameters:
entities- The list of aggregated details and filtered OpsData.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
entities
GetOpsSummaryResponse.Builder entities(Consumer<OpsEntity.Builder>... entities)
The list of aggregated details and filtered OpsData.
This is a convenience method that creates an instance of theOpsEntity.Builderavoiding the need to create one manually viaOpsEntity.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#entities(List.) - Parameters:
entities- a consumer that will call methods onOpsEntity.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#entities(java.util.Collection)
-
nextToken
GetOpsSummaryResponse.Builder nextToken(String nextToken)
The token for the next set of items to return. Use this token to get the next set of results.
- Parameters:
nextToken- The token for the next set of items to return. Use this token to get the next set of results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-