Interface ListSlackChannelConfigurationsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListSlackChannelConfigurationsResponse.Builder,ListSlackChannelConfigurationsResponse>,SdkBuilder<ListSlackChannelConfigurationsResponse.Builder,ListSlackChannelConfigurationsResponse>,SdkPojo,SdkResponse.Builder,SupportAppResponse.Builder
- Enclosing class:
- ListSlackChannelConfigurationsResponse
public static interface ListSlackChannelConfigurationsResponse.Builder extends SupportAppResponse.Builder, SdkPojo, CopyableBuilder<ListSlackChannelConfigurationsResponse.Builder,ListSlackChannelConfigurationsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListSlackChannelConfigurationsResponse.BuildernextToken(String nextToken)The point where pagination should resume when the response returns only partial results.ListSlackChannelConfigurationsResponse.BuilderslackChannelConfigurations(Collection<SlackChannelConfiguration> slackChannelConfigurations)The configurations for a Slack channel.ListSlackChannelConfigurationsResponse.BuilderslackChannelConfigurations(Consumer<SlackChannelConfiguration.Builder>... slackChannelConfigurations)The configurations for a Slack channel.ListSlackChannelConfigurationsResponse.BuilderslackChannelConfigurations(SlackChannelConfiguration... slackChannelConfigurations)The configurations for a Slack channel.-
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.supportapp.model.SupportAppResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
nextToken
ListSlackChannelConfigurationsResponse.Builder nextToken(String nextToken)
The point where pagination should resume when the response returns only partial results.
- Parameters:
nextToken- The point where pagination should resume when the response returns only partial results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slackChannelConfigurations
ListSlackChannelConfigurationsResponse.Builder slackChannelConfigurations(Collection<SlackChannelConfiguration> slackChannelConfigurations)
The configurations for a Slack channel.
- Parameters:
slackChannelConfigurations- The configurations for a Slack channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slackChannelConfigurations
ListSlackChannelConfigurationsResponse.Builder slackChannelConfigurations(SlackChannelConfiguration... slackChannelConfigurations)
The configurations for a Slack channel.
- Parameters:
slackChannelConfigurations- The configurations for a Slack channel.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
slackChannelConfigurations
ListSlackChannelConfigurationsResponse.Builder slackChannelConfigurations(Consumer<SlackChannelConfiguration.Builder>... slackChannelConfigurations)
The configurations for a Slack channel.
This is a convenience method that creates an instance of theSlackChannelConfiguration.Builderavoiding the need to create one manually viaSlackChannelConfiguration.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#slackChannelConfigurations(List.) - Parameters:
slackChannelConfigurations- a consumer that will call methods onSlackChannelConfiguration.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#slackChannelConfigurations(java.util.Collection)
-
-