Interface ListComplianceSummariesResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListComplianceSummariesResponse.Builder,ListComplianceSummariesResponse>,SdkBuilder<ListComplianceSummariesResponse.Builder,ListComplianceSummariesResponse>,SdkPojo,SdkResponse.Builder,SsmResponse.Builder
- Enclosing class:
- ListComplianceSummariesResponse
public static interface ListComplianceSummariesResponse.Builder extends SsmResponse.Builder, SdkPojo, CopyableBuilder<ListComplianceSummariesResponse.Builder,ListComplianceSummariesResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListComplianceSummariesResponse.BuildercomplianceSummaryItems(Collection<ComplianceSummaryItem> complianceSummaryItems)A list of compliant and non-compliant summary counts based on compliance types.ListComplianceSummariesResponse.BuildercomplianceSummaryItems(Consumer<ComplianceSummaryItem.Builder>... complianceSummaryItems)A list of compliant and non-compliant summary counts based on compliance types.ListComplianceSummariesResponse.BuildercomplianceSummaryItems(ComplianceSummaryItem... complianceSummaryItems)A list of compliant and non-compliant summary counts based on compliance types.ListComplianceSummariesResponse.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
-
complianceSummaryItems
ListComplianceSummariesResponse.Builder complianceSummaryItems(Collection<ComplianceSummaryItem> complianceSummaryItems)
A list of compliant and non-compliant summary counts based on compliance types. For example, this call returns State Manager associations, patches, or custom compliance types according to the filter criteria that you specified.
- Parameters:
complianceSummaryItems- A list of compliant and non-compliant summary counts based on compliance types. For example, this call returns State Manager associations, patches, or custom compliance types according to the filter criteria that you specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
complianceSummaryItems
ListComplianceSummariesResponse.Builder complianceSummaryItems(ComplianceSummaryItem... complianceSummaryItems)
A list of compliant and non-compliant summary counts based on compliance types. For example, this call returns State Manager associations, patches, or custom compliance types according to the filter criteria that you specified.
- Parameters:
complianceSummaryItems- A list of compliant and non-compliant summary counts based on compliance types. For example, this call returns State Manager associations, patches, or custom compliance types according to the filter criteria that you specified.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
complianceSummaryItems
ListComplianceSummariesResponse.Builder complianceSummaryItems(Consumer<ComplianceSummaryItem.Builder>... complianceSummaryItems)
A list of compliant and non-compliant summary counts based on compliance types. For example, this call returns State Manager associations, patches, or custom compliance types according to the filter criteria that you specified.
This is a convenience method that creates an instance of theComplianceSummaryItem.Builderavoiding the need to create one manually viaComplianceSummaryItem.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#complianceSummaryItems(List.) - Parameters:
complianceSummaryItems- a consumer that will call methods onComplianceSummaryItem.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#complianceSummaryItems(java.util.Collection)
-
nextToken
ListComplianceSummariesResponse.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.
-
-