Interface BatchGetInvoiceProfileResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<BatchGetInvoiceProfileResponse.Builder,BatchGetInvoiceProfileResponse>,InvoicingResponse.Builder,SdkBuilder<BatchGetInvoiceProfileResponse.Builder,BatchGetInvoiceProfileResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- BatchGetInvoiceProfileResponse
public static interface BatchGetInvoiceProfileResponse.Builder extends InvoicingResponse.Builder, SdkPojo, CopyableBuilder<BatchGetInvoiceProfileResponse.Builder,BatchGetInvoiceProfileResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BatchGetInvoiceProfileResponse.Builderprofiles(Collection<InvoiceProfile> profiles)A list of invoice profiles corresponding to the requested accounts.BatchGetInvoiceProfileResponse.Builderprofiles(Consumer<InvoiceProfile.Builder>... profiles)A list of invoice profiles corresponding to the requested accounts.BatchGetInvoiceProfileResponse.Builderprofiles(InvoiceProfile... profiles)A list of invoice profiles corresponding to the requested accounts.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.services.invoicing.model.InvoicingResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
profiles
BatchGetInvoiceProfileResponse.Builder profiles(Collection<InvoiceProfile> profiles)
A list of invoice profiles corresponding to the requested accounts.
- Parameters:
profiles- A list of invoice profiles corresponding to the requested accounts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
BatchGetInvoiceProfileResponse.Builder profiles(InvoiceProfile... profiles)
A list of invoice profiles corresponding to the requested accounts.
- Parameters:
profiles- A list of invoice profiles corresponding to the requested accounts.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
profiles
BatchGetInvoiceProfileResponse.Builder profiles(Consumer<InvoiceProfile.Builder>... profiles)
A list of invoice profiles corresponding to the requested accounts.
This is a convenience method that creates an instance of theInvoiceProfile.Builderavoiding the need to create one manually viaInvoiceProfile.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#profiles(List.) - Parameters:
profiles- a consumer that will call methods onInvoiceProfile.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#profiles(java.util.Collection)
-
-