Interface BatchGetCustomDataIdentifiersResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetCustomDataIdentifiersResponse.Builder,BatchGetCustomDataIdentifiersResponse>,Macie2Response.Builder,SdkBuilder<BatchGetCustomDataIdentifiersResponse.Builder,BatchGetCustomDataIdentifiersResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetCustomDataIdentifiersResponse
public static interface BatchGetCustomDataIdentifiersResponse.Builder extends Macie2Response.Builder, SdkPojo, CopyableBuilder<BatchGetCustomDataIdentifiersResponse.Builder,BatchGetCustomDataIdentifiersResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetCustomDataIdentifiersResponse.BuildercustomDataIdentifiers(Collection<BatchGetCustomDataIdentifierSummary> customDataIdentifiers)An array of objects, one for each custom data identifier that matches the criteria specified in the request.BatchGetCustomDataIdentifiersResponse.BuildercustomDataIdentifiers(Consumer<BatchGetCustomDataIdentifierSummary.Builder>... customDataIdentifiers)An array of objects, one for each custom data identifier that matches the criteria specified in the request.BatchGetCustomDataIdentifiersResponse.BuildercustomDataIdentifiers(BatchGetCustomDataIdentifierSummary... customDataIdentifiers)An array of objects, one for each custom data identifier that matches the criteria specified in the request.BatchGetCustomDataIdentifiersResponse.BuildernotFoundIdentifierIds(String... notFoundIdentifierIds)An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.BatchGetCustomDataIdentifiersResponse.BuildernotFoundIdentifierIds(Collection<String> notFoundIdentifierIds)An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.macie2.model.Macie2Response.Builder
build, responseMetadata, responseMetadata
-
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
-
customDataIdentifiers
BatchGetCustomDataIdentifiersResponse.Builder customDataIdentifiers(Collection<BatchGetCustomDataIdentifierSummary> customDataIdentifiers)
An array of objects, one for each custom data identifier that matches the criteria specified in the request.
- Parameters:
customDataIdentifiers- An array of objects, one for each custom data identifier that matches the criteria specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customDataIdentifiers
BatchGetCustomDataIdentifiersResponse.Builder customDataIdentifiers(BatchGetCustomDataIdentifierSummary... customDataIdentifiers)
An array of objects, one for each custom data identifier that matches the criteria specified in the request.
- Parameters:
customDataIdentifiers- An array of objects, one for each custom data identifier that matches the criteria specified in the request.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
customDataIdentifiers
BatchGetCustomDataIdentifiersResponse.Builder customDataIdentifiers(Consumer<BatchGetCustomDataIdentifierSummary.Builder>... customDataIdentifiers)
An array of objects, one for each custom data identifier that matches the criteria specified in the request.
This is a convenience method that creates an instance of theBatchGetCustomDataIdentifierSummary.Builderavoiding the need to create one manually viaBatchGetCustomDataIdentifierSummary.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#customDataIdentifiers(List.) - Parameters:
customDataIdentifiers- a consumer that will call methods onBatchGetCustomDataIdentifierSummary.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#customDataIdentifiers(java.util.Collection)
-
notFoundIdentifierIds
BatchGetCustomDataIdentifiersResponse.Builder notFoundIdentifierIds(Collection<String> notFoundIdentifierIds)
An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.
- Parameters:
notFoundIdentifierIds- An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
notFoundIdentifierIds
BatchGetCustomDataIdentifiersResponse.Builder notFoundIdentifierIds(String... notFoundIdentifierIds)
An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.
- Parameters:
notFoundIdentifierIds- An array of custom data identifier IDs, one for each custom data identifier that was specified in the request but doesn't correlate to an existing custom data identifier.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-