Interface DescribeChimeWebhookConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,ChatbotResponse.Builder,CopyableBuilder<DescribeChimeWebhookConfigurationsResponse.Builder,DescribeChimeWebhookConfigurationsResponse>,SdkBuilder<DescribeChimeWebhookConfigurationsResponse.Builder,DescribeChimeWebhookConfigurationsResponse>,SdkPojo,SdkResponse.Builder
- Enclosing class:
- DescribeChimeWebhookConfigurationsResponse
public static interface DescribeChimeWebhookConfigurationsResponse.Builder extends ChatbotResponse.Builder, SdkPojo, CopyableBuilder<DescribeChimeWebhookConfigurationsResponse.Builder,DescribeChimeWebhookConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DescribeChimeWebhookConfigurationsResponse.BuildernextToken(String nextToken)An optional token returned from a prior request.DescribeChimeWebhookConfigurationsResponse.BuilderwebhookConfigurations(Collection<ChimeWebhookConfiguration> webhookConfigurations)A list of Amazon Chime webhooks associated with the account.DescribeChimeWebhookConfigurationsResponse.BuilderwebhookConfigurations(Consumer<ChimeWebhookConfiguration.Builder>... webhookConfigurations)A list of Amazon Chime webhooks associated with the account.DescribeChimeWebhookConfigurationsResponse.BuilderwebhookConfigurations(ChimeWebhookConfiguration... webhookConfigurations)A list of Amazon Chime webhooks associated with the account.-
Methods inherited from interface software.amazon.awssdk.services.chatbot.model.ChatbotResponse.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, sdkFieldNameToField, sdkFields
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
-
-
-
Method Detail
-
nextToken
DescribeChimeWebhookConfigurationsResponse.Builder nextToken(String nextToken)
An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.
- Parameters:
nextToken- An optional token returned from a prior request. Use this token for pagination of results from this action. If this parameter is specified, the response includes only results beyond the token, up to the value specified by MaxResults.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webhookConfigurations
DescribeChimeWebhookConfigurationsResponse.Builder webhookConfigurations(Collection<ChimeWebhookConfiguration> webhookConfigurations)
A list of Amazon Chime webhooks associated with the account.
- Parameters:
webhookConfigurations- A list of Amazon Chime webhooks associated with the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webhookConfigurations
DescribeChimeWebhookConfigurationsResponse.Builder webhookConfigurations(ChimeWebhookConfiguration... webhookConfigurations)
A list of Amazon Chime webhooks associated with the account.
- Parameters:
webhookConfigurations- A list of Amazon Chime webhooks associated with the account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
webhookConfigurations
DescribeChimeWebhookConfigurationsResponse.Builder webhookConfigurations(Consumer<ChimeWebhookConfiguration.Builder>... webhookConfigurations)
A list of Amazon Chime webhooks associated with the account.
This is a convenience method that creates an instance of theChimeWebhookConfiguration.Builderavoiding the need to create one manually viaChimeWebhookConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#webhookConfigurations(List.) - Parameters:
webhookConfigurations- a consumer that will call methods onChimeWebhookConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#webhookConfigurations(java.util.Collection)
-
-